:root {
  --bg: #060c18;
  --surface: #0c1729;
  --surface-2: #121f35;
  --ink: #e9f1ff;
  --muted: #9badcd;
  --line: #243656;
  --green: #1dd75e;
  --green-dark: #14b84e;
  --blue: #245fdd;
  --dark: #0a1220;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Tajawal", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(29, 215, 94, 0.16), transparent 28%),
    radial-gradient(circle at 0% 12%, rgba(36, 95, 221, 0.22), transparent 30%),
    linear-gradient(180deg, #050b18, #081224 52%, #0a1426);
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.22;
  pointer-events: none;
  animation: blobMove 15s ease-in-out infinite;
}

body::before {
  width: 260px;
  height: 260px;
  background: rgba(29, 215, 94, 0.75);
  top: -80px;
  left: -70px;
}

body::after {
  width: 230px;
  height: 230px;
  background: rgba(36, 95, 221, 0.68);
  bottom: -85px;
  right: -65px;
  animation-delay: -6s;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 100;
  padding-block: 10px;
}

.header-shell {
  background: rgba(10, 19, 35, 0.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(18, 36, 78, 0.12);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.header-shell:hover {
  border-color: #bdd0f2;
  box-shadow: 0 18px 40px rgba(18, 36, 78, 0.15);
}

.header-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0 1.1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-mark {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 0.72rem;
  display: grid;
  place-items: center;
  background: url("../assets/easify-icon.svg") center / cover no-repeat;
  color: transparent;
  font-size: 0;
  box-shadow: 0 10px 24px rgba(7, 15, 30, 0.36);
}

.brand-title {
  margin: 0;
  font-size: 1.22rem;
  font-weight: 900;
}

.brand-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.45rem;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), #49e789);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--green-dark);
}

.nav-links a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.lang-pill {
  border: 1px solid var(--line);
  border-radius: 10px;
  min-height: 2.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0.72rem;
  background: #101d33;
  color: #d0dcf5;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.lang-pill:hover {
  border-color: #2d4f87;
  transform: translateY(-1px);
}

.btn {
  border: 0;
  border-radius: 10px;
  min-height: 2.9rem;
  padding: 0 1rem;
  font-family: inherit;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s ease;
  will-change: transform;
}

.btn-main {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #21d865, #16bf54);
  color: #fff;
  box-shadow: 0 12px 26px rgba(20, 184, 78, 0.32);
}

.btn-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.42), transparent 82%);
  transform: translateX(-140%);
  transition: transform 0.6s ease;
}

.btn-main:hover {
  transform: translateY(-3px) scale(1.015);
  filter: brightness(1.03);
}

.btn-main:hover::after {
  transform: translateX(140%);
}

.btn-ghost {
  background: #101b2f;
  border: 1px solid var(--line);
  color: #d6e3ff;
}

.btn-ghost:hover {
  border-color: #a9bddf;
  box-shadow: 0 10px 20px rgba(36, 95, 221, 0.12);
  transform: translateY(-1px);
}

.hero {
  margin-top: 16px;
}

.hero .container {
  width: min(1240px, 95vw);
}

.hero-box {
  border-radius: var(--radius-lg);
  border: 1px solid #28456d;
  background:
    linear-gradient(rgba(15, 34, 60, 0.86), rgba(15, 34, 60, 0.86)),
    linear-gradient(90deg, rgba(76, 128, 197, 0.17) 1px, transparent 1px),
    linear-gradient(rgba(76, 128, 197, 0.17) 1px, transparent 1px);
  background-size: auto, 52px 52px, 52px 52px;
  background-position: 0 0, 0 0, 0 0;
  padding: 1.6rem 1.2rem;
  position: relative;
  overflow: hidden;
  min-height: 460px;
  animation: gridShift 16s linear infinite;
}

.hero-box::before {
  content: "";
  position: absolute;
  inset: -40% -25% auto;
  height: 160px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: rotate(-8deg);
  animation: sheen 6s linear infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  min-height: 100%;
  place-items: center;
}

.hero-content {
  text-align: center;
  padding: 0.6rem 0.2rem;
  max-width: 920px;
  margin-inline: auto;
  margin-top: 80px;
  position: relative;
  z-index: 2;
  animation: heroRise 0.9s ease both;
}

.hero-title {
  margin: 0;
  font-size: clamp(1.8rem, 4.9vw, 3.4rem);
  font-weight: 900;
  line-height: 1.2;
}

.hero-title .accent {
  color: var(--green);
}

.hero-sub {
  margin: 0.85rem auto 0;
  max-width: 58ch;
  color: #a6b7d8;
  font-size: 1.04rem;
}

.hero-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroRise 1.05s ease both;
}

.float-note {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid #2f4a74;
  border-radius: 999px;
  background: rgba(13, 28, 49, 0.86);
  color: #bed0ef;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.32rem 0.62rem;
  position: absolute;
  animation: floatY 4.2s ease-in-out infinite;
}

.float-note.left-1 { top: 14%; left: 5%; }
.float-note.left-2 { top: 40%; left: 4.4%; }
.float-note.left-3 { bottom: 13%; left: 7%; }
.float-note.right-1 { top: 14%; right: 5.2%; }
.float-note.right-2 { top: 37%; right: 4.7%; }
.float-note.right-3 { bottom: 14%; right: 6%; }

.float-note.left-2,
.float-note.right-2 {
  animation-delay: -1.2s;
}

.float-note.left-3,
.float-note.right-3 {
  animation-delay: -2.2s;
}

.feature-strip {
  padding: 1rem 0 0.5rem;
}

.feature-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #aec0df;
  font-weight: 700;
}

.feature-inline span {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0.2rem 0.46rem;
  border-radius: 999px;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.feature-inline span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.42), transparent 90%);
  transform: translateX(-130%);
  transition: transform 0.55s ease;
}

.feature-inline span:hover {
  transform: translateY(-2px);
  background: rgba(29, 215, 94, 0.16);
}

.feature-inline span:hover::after {
  transform: translateX(120%);
}

.pill-kicker {
  margin-inline: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #101d33;
  color: #bad0f0;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.34rem 0.72rem;
}

.section {
  padding: 2rem 0;
  position: relative;
  isolation: isolate;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 15%, rgba(29, 215, 94, 0.18), transparent 55%);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.is-live::before {
  opacity: 1;
  transform: scale(1);
}

.section-head {
  text-align: center;
  margin-bottom: 1.15rem;
}

.section-title {
  margin: 0.4rem 0 0;
  font-size: clamp(1.8rem, 4.4vw, 3rem);
  line-height: 1.28;
  font-weight: 900;
}

.section-title .accent {
  color: var(--green);
}

.section-desc {
  margin: 0.65rem auto 0;
  color: var(--muted);
  max-width: 66ch;
  line-height: 1.8;
  font-size: 1.03rem;
}

.soft-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.builder-showcase {
  padding: 1.1rem;
}

.builder-image {
  border-radius: 14px;
  border: 1px solid #2f3952;
  background: #12151d;
  width: min(700px, 100%);
  margin-inline: auto;
}

.chips-center {
  margin-top: 0.95rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mini-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #101d33;
  color: #bad0f0;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.45rem 0.78rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mini-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(16, 39, 83, 0.12);
}

.card-grid-2,
.card-grid-3 {
  display: grid;
  gap: 0.9rem;
}

.card-grid-2 {
  grid-template-columns: 1fr;
}

.card-grid-3 {
  grid-template-columns: 1fr;
}

.info-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  opacity: 0;
  transition: opacity 0.24s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: #b8cae8;
  box-shadow: 0 18px 34px rgba(16, 39, 83, 0.15);
}

.info-card:hover::before {
  opacity: 1;
}

.info-illus {
  border: 1px solid #294166;
  border-radius: 14px;
  background: var(--surface-2);
  padding: 0.7rem;
  margin-bottom: 0.8rem;
}

.info-illus img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.info-card:hover .info-illus img {
  transform: scale(1.035);
}

.info-card h3 {
  margin: 0;
  font-size: 1.95rem;
  line-height: 1.2;
}

.info-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.dark-block {
  border: 1px solid #272b35;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #171a22, #13161e);
  color: #fff;
}

.dark-inner {
  padding: 1.3rem;
}

.dark-title {
  text-align: center;
  margin: 0.5rem 0 0;
  font-size: clamp(1.6rem, 4.1vw, 2.7rem);
  font-weight: 900;
}

.dark-sub {
  text-align: center;
  margin: 0.8rem auto 1.1rem;
  max-width: 60ch;
  color: #c0c7d8;
}

.ai-orbit {
  position: relative;
  padding: 1rem 0.3rem 0.4rem;
}

.ai-graph {
  position: relative;
}

.ai-core-wrap {
  display: grid;
  place-items: center;
}

.ai-core {
  margin-inline: auto;
  width: 128px;
  height: 128px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #49ff91, #0fb74d);
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  line-height: 1.1;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(22, 198, 90, 0.34);
  animation: pulse 3s ease-in-out infinite;
}

.ai-line-svg {
  position: absolute;
  top: 116px;
  left: 0;
  width: 100%;
  height: 190px;
  pointer-events: none;
}

.ai-line-svg .line-base {
  fill: none;
  stroke: #6f7e9a;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 7 8;
  opacity: 0.8;
}

.ai-line-svg .line-flow {
  fill: none;
  stroke: #29df72;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 10 16;
  opacity: 0.95;
  animation: aiFlow 3s linear infinite;
}

.ai-line-svg .line-flow:nth-of-type(6) { animation-delay: 0s; }
.ai-line-svg .line-flow:nth-of-type(7) { animation-delay: 0.22s; }
.ai-line-svg .line-flow:nth-of-type(8) { animation-delay: 0.45s; }
.ai-line-svg .line-flow:nth-of-type(9) { animation-delay: 0.68s; }
.ai-line-svg .line-flow:nth-of-type(10) { animation-delay: 0.92s; }

.ai-branches {
  margin-top: 7.9rem;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

.ai-node {
  border: 1px solid #2f3441;
  background: #1b2333;
  border-radius: 14px;
  padding: 0.8rem;
  text-align: center;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.ai-node:hover {
  transform: translateY(-5px);
  border-color: #3c8a67;
  box-shadow: 0 14px 30px rgba(24, 150, 83, 0.16);
}

.ai-node-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.7rem;
  border-radius: 999px;
  border: 1px solid #36445f;
  background: radial-gradient(circle at 30% 30%, #222f45, #141c2b);
  color: #e6efff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
}

.ai-node h4 {
  margin: 0;
  font-size: 1.1rem;
}

.ai-node p {
  margin: 0.4rem 0 0;
  color: #b8c2d8;
  font-size: 0.93rem;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.price-card {
  border: 1px solid #2a4063;
  border-radius: var(--radius-md);
  background: #0f1b30;
  padding: 1.1rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.price-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: #bad0f0;
  box-shadow: 0 22px 38px rgba(16, 39, 83, 0.16);
}

.price-card.featured {
  background: linear-gradient(180deg, #16c65a, #12b751);
  border-color: #12b751;
  color: #fff;
}

.price-card h3 {
  margin: 0;
  font-size: 2.1rem;
}

.price-badge {
  border-radius: 999px;
  background: #091224;
  color: #c9daf8;
  padding: 0.22rem 0.7rem;
  font-size: 0.73rem;
  font-weight: 800;
}

.price-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.price-copy {
  margin: 0.45rem 0;
  color: inherit;
  opacity: 0.96;
}

.price-amount {
  margin: 0.4rem 0;
  font-size: 3rem;
  font-weight: 900;
}

.price-card ul {
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  color: inherit;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1.02rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.price-card li:hover {
  transform: translateX(-4px);
  opacity: 0.96;
}

.templates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.template-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #0f1b30;
  padding: 0.9rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.template-card:hover {
  transform: translateY(-6px);
  border-color: #b8cae8;
  box-shadow: 0 20px 34px rgba(16, 39, 83, 0.15);
}

.template-card h4 {
  margin: 0 0 0.35rem;
  font-size: 1.56rem;
}

.template-card p {
  margin: 0;
  color: var(--muted);
}

.template-shot {
  margin-top: 0.75rem;
  border: 1px solid #294166;
  border-radius: 12px;
  background: #12213a;
  padding: 0.45rem;
}

.template-shot img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 9px;
  transition: transform 0.4s ease;
}

.template-card:hover .template-shot img {
  transform: scale(1.04);
}

.download-block {
  border-radius: var(--radius-lg);
  border: 1px solid #272c37;
  background: linear-gradient(180deg, #171a22, #12161e);
  color: #fff;
  padding: 1.35rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.download-points {
  margin: 0.9rem 0 0;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.48rem;
  color: #d4dbeb;
}

.store-row {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.store-btn {
  border: 1px solid #49506a;
  border-radius: 12px;
  min-height: 48px;
  padding: 0 0.95rem;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 800;
}

.download-image {
  border: 1px solid #2d3442;
  border-radius: 14px;
  padding: 0.5rem;
  background: #121824;
}

.download-image img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 10px;
}

.platform-block {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #0f1b30;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.platform-list {
  display: grid;
  gap: 0.7rem;
}

.platform-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #101f36;
  padding: 0.8rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.platform-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(16, 39, 83, 0.13);
}

.stats-block {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #0e1a30;
  padding: 1rem;
}

.stats-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

.stat-large,
.stat-mini {
  border-radius: 14px;
  border: 1px solid #2a4063;
  background: #112038;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.stat-large:hover,
.stat-mini:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(20, 31, 52, 0.1);
}

.hero-box,
.info-card,
.price-card,
.template-card,
.platform-item,
.stat-large,
.stat-mini,
.download-block,
.soft-card,
.dark-block {
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.hero-box:hover,
.download-block:hover,
.soft-card:hover,
.dark-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(13, 31, 65, 0.18);
}

.btn,
.lang-pill,
.store-btn,
.nav-links a,
.mini-chip {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease, background-color 0.22s ease;
}

.btn:focus-visible,
.lang-pill:focus-visible,
.store-btn:focus-visible,
.nav-links a:focus-visible,
.mini-chip:focus-visible {
  outline: 2px solid rgba(29, 215, 94, 0.6);
  outline-offset: 2px;
}

.btn:hover,
.lang-pill:hover,
.store-btn:hover,
.nav-links a:hover,
.mini-chip:hover {
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .hero-box,
  .info-card,
  .price-card,
  .template-card,
  .platform-item,
  .stat-large,
  .stat-mini,
  .download-block,
  .soft-card,
  .dark-block,
  .btn,
  .lang-pill,
  .store-btn,
  .nav-links a,
  .mini-chip {
    transition: none;
  }
}

.stat-large {
  padding: 0.8rem;
}

.stat-large-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.stat-large img {
  border: 1px solid #2a4063;
  border-radius: 10px;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.stat-number {
  margin: 0;
  font-size: 3rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.stat-mini {
  padding: 0.85rem;
}

.stat-mini strong {
  font-size: 2.1rem;
  color: var(--green);
}

.list-clean {
  margin: 0.8rem 0 0;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.58rem;
  color: #a8bbdc;
}

.list-clean li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.faq-wrap {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #101e35;
  overflow: hidden;
  transition: box-shadow 0.24s ease;
}

.faq-item:hover {
  border-color: #c0d0ea;
  box-shadow: 0 12px 24px rgba(16, 39, 83, 0.13);
}

.faq-btn {
  width: 100%;
  text-align: right;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 800;
  color: #d9e7ff;
  padding: 0.82rem 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: color 0.22s ease, background-color 0.22s ease;
}

.faq-btn:hover {
  color: #ffffff;
  background: rgba(36, 95, 221, 0.15);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  padding: 0 0.95rem 0.85rem;
}

.cta-support {
  margin-top: 1rem;
  border: 1px solid #bcdcc8;
  border-radius: var(--radius-md);
  background: #c8efd7;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  height: 3px;
  width: 0;
  z-index: 140;
  background: linear-gradient(90deg, #0ea84a, #2be676);
  box-shadow: 0 0 14px rgba(22, 198, 90, 0.6);
  transition: width 0.08s linear;
}

.footer {
  margin-top: 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid #2b303d;
  background:
    radial-gradient(circle at 12% 10%, rgba(29, 215, 94, 0.18), transparent 35%),
    linear-gradient(180deg, #0e1627, #0a1220);
  color: #fff;
  padding: 1.35rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.footer h4 {
  margin: 0 0 0.55rem;
}

.footer ul {
  margin: 0;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.42rem;
  color: #c9d0df;
}

.footer-divider {
  margin-top: 1rem;
  border-top: 1px solid #2a2f3b;
  padding-top: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: #c3cade;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(4px);
  transition: opacity 0.78s ease, transform 0.78s ease, filter 0.78s ease;
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tilt-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.24), transparent 45%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.tilt-card:hover::after {
  opacity: 1;
}

.magnetic {
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.cursor-glow {
  position: fixed;
  width: 240px;
  height: 240px;
  pointer-events: none;
  border-radius: 999px;
  z-index: 50;
  opacity: 0;
  mix-blend-mode: multiply;
  background: radial-gradient(circle, rgba(22, 198, 90, 0.22) 0%, rgba(22, 198, 90, 0.08) 42%, transparent 72%);
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
}

.chip-live {
  animation: chipBreath 2.8s ease-in-out infinite;
}

@keyframes floatY {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes pulse {
  0%,
  100% { box-shadow: 0 12px 30px rgba(22, 198, 90, 0.34); }
  50% { box-shadow: 0 18px 38px rgba(22, 198, 90, 0.52); }
}

@keyframes sheen {
  from { transform: translateX(-110%) rotate(-8deg); }
  to { transform: translateX(110%) rotate(-8deg); }
}

@keyframes blobMove {
  0%,
  100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(16px) translateX(10px); }
}

@keyframes gridShift {
  from { background-position: 0 0, 0 0, 0 0; }
  to { background-position: 0 0, 120px 0, 0 120px; }
}

@keyframes aiFlow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -240; }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes chipBreath {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@media (min-width: 760px) {
  .hero-grid,
  .card-grid-2,
  .price-grid,
  .templates-grid,
  .platform-block,
  .download-block,
  .stats-grid,
  .stat-large-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-branches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1020px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .card-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid-3,
  .templates-grid,
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ai-branches {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .price-grid {
    grid-template-columns: 1fr 1fr;
  }

  .platform-block,
  .download-block {
    grid-template-columns: 1.12fr 0.88fr;
  }

  .stats-grid {
    grid-template-columns: 2fr 0.9fr;
  }

  .stat-large-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .float-note {
    display: none;
  }
}

@media (max-width: 620px) {
  .header-actions .btn-ghost,
  .lang-pill {
    display: none;
  }


/* Global hover layer for landing pages */
@media (hover: hover) and (pointer: fine) {
  a,
  button,
  .btn,
  .lang-pill,
  .store-btn,
  .nav-links a,
  .mini-chip,
  .info-card,
  .price-card,
  .template-card,
  .platform-item,
  .stat-large,
  .stat-mini,
  .soft-card,
  .dark-block,
  .faq-item {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease;
  }

  a:hover,
  button:hover,
  .btn:hover,
  .lang-pill:hover,
  .store-btn:hover,
  .nav-links a:hover,
  .mini-chip:hover {
    transform: translateY(-2px);
  }

  .info-card:hover,
  .price-card:hover,
  .template-card:hover,
  .platform-item:hover,
  .stat-large:hover,
  .stat-mini:hover,
  .soft-card:hover,
  .dark-block:hover,
  .faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(16, 39, 83, 0.18);
  }
}
  .hero-box,
  .dark-inner,
  .footer {
    padding: 0.95rem;
  }

  .hero-box {
    min-height: 380px;
  }

  .float-note {
    font-size: 0.7rem;
    padding: 0.28rem 0.54rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
