/* ==========================================================================
   اوجاسافت — قرعه‌کشی اینستاگرام · Landing
   Font: Estedad (aminabedi68/Estedad, SIL OFL 1.1)
   Colors & design tokens match ojasoft main theme (css/style.css)
   ========================================================================== */

/* ============================ Fonts ============================ */
@font-face {
  font-family: 'Estedad';
  src: url('../fonts/Estedad-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Estedad';
  src: url('../fonts/Estedad-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Estedad';
  src: url('../fonts/Estedad-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Estedad';
  src: url('../fonts/Estedad-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Estedad';
  src: url('../fonts/Estedad-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Estedad';
  src: url('../fonts/Estedad-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ============================ Tokens ============================ */
:root {
  --bg: #F7F8F6;
  --bg-soft: #EFF2EF;
  --surface: #FFFFFF;
  --ink: #17181A;
  --ink-soft: #3A3D40;
  --muted: #6D7470;
  --line: rgba(23, 24, 26, 0.09);
  --line-soft: rgba(23, 24, 26, 0.055);

  --green: #1E5B48;
  --green-2: #5E9C80;
  --green-3: #143B2F;
  --green-tint: #E2EDE7;
  --green-line: rgba(30, 91, 72, 0.2);

  --grad-brand: linear-gradient(120deg, #1E5B48, #2F7A5F 55%, #3E8F6D);
  --grad-luxe: linear-gradient(115deg, #143B2F 0%, #1E5B48 45%, #3E8F6D 100%);
  --grad-luxe-dark: linear-gradient(115deg, #8FC0A8 0%, #A8CDB6 50%, #D9E9DF 100%);

  --dark: #0F1411;
  --dark-2: #161C18;
  --dark-line: rgba(240, 246, 242, 0.1);

  --instagram: linear-gradient(45deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%);

  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 34px;

  --shadow-sm: 0 2px 10px rgba(17, 24, 20, 0.05);
  --shadow-md: 0 18px 45px -18px rgba(17, 24, 20, 0.16);
  --shadow-lg: 0 40px 90px -40px rgba(17, 24, 20, 0.32);

  --container: 1200px;
  --font: 'Estedad', 'Segoe UI', Tahoma, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================ Reset ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  font-feature-settings: "ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font: inherit; color: inherit; }
::selection { background: rgba(94, 156, 128, 0.3); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 28px; }

/* ============================ Utilities ============================ */
.grad {
  background: var(--grad-luxe);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.grad-dark {
  background: var(--grad-luxe-dark);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-lead, .testi blockquote, .cta-banner > p, .form-hint, .footer-about, .pioneer-lead {
  text-align: justify;
  text-justify: inter-word;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--green);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green));
}
.eyebrow::after {
  content: "";
  width: 7px;
  height: 7px;
  border: 1.5px solid var(--green);
  transform: rotate(45deg);
  background: var(--bg);
}
.eyebrow-dark { color: var(--green-2); }
.eyebrow-dark::before { background: linear-gradient(90deg, transparent, var(--green-2)); }
.eyebrow-dark::after { border-color: var(--green-2); background: var(--dark); }

.section-title {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.5px;
}
.section-lead {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 2;
  margin-top: 18px;
  max-width: 56ch;
}

/* ============================ Buttons ============================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease);
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(0.98); }
.btn svg { transition: transform 0.3s var(--ease); }

.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(30, 91, 72, 0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(30, 91, 72, 0.6); }
.btn-primary:hover svg { transform: translateX(-4px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

.btn-ghost-dark {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.btn-ghost-dark:hover { border-color: var(--green-2); color: var(--green-2); transform: translateY(-2px); }

.btn-light {
  background: #fff;
  color: var(--dark);
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.5);
}
.btn-light:hover { transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover { background: var(--green); border-color: var(--green); color: var(--bg); transform: translateY(-2px); }
.btn-outline:hover svg { transform: translateX(-4px); }

.btn-lg { padding: 17px 34px; font-size: 15.5px; }
.btn-block { width: 100%; }
.btn[aria-busy="true"] .btn-label { opacity: 0; }
.btn[aria-busy="true"] .btn-loading { opacity: 1; }
.btn-loading {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.btn-loading svg { animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.skip-link {
  position: fixed; top: -60px; right: 16px; z-index: 2000;
  padding: 12px 20px; background: var(--ink); color: var(--bg);
  border-radius: 10px; font-weight: 600; transition: top 0.3s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ============================ Topbar ============================ */
.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-block: 9px;
}
.topbar-note { display: flex; align-items: center; gap: 10px; }
.topbar-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 0 4px rgba(94, 156, 128, 0.18);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(94, 156, 128, 0.2); }
  50% { box-shadow: 0 0 0 7px rgba(94, 156, 128, 0.05); }
}
.topbar-contact { display: flex; align-items: center; gap: 12px; }
.topbar-contact a:hover { color: var(--green-2); }
.topbar-sep { opacity: 0.35; }

/* ============================ Header ============================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 248, 246, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.header.scrolled {
  background: rgba(247, 248, 246, 0.94);
  border-color: var(--line);
  box-shadow: 0 10px 30px -18px rgba(17, 24, 20, 0.22);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding-block: 14px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 44px; height: 44px; flex: none; color: var(--green); }
.brand-mark img {
  width: 100%; height: 100%; object-fit: contain;
  border-radius: 12px; display: block;
}
.tel { direction: ltr; unicode-bidi: isolate; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 19px; font-weight: 800; letter-spacing: -0.3px; }
.brand-text small { font-size: 11px; color: var(--muted); font-weight: 400; letter-spacing: 0.6px; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav ul { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute; right: 14px; left: 14px; bottom: 6px;
  height: 1.5px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { font-weight: 700; }

.nav-cta { display: none; }
.header-cta { padding: 12px 22px; font-size: 14px; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 200; }
.burger span {
  width: 24px; height: 2px; border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================ Hero ============================ */
.hero {
  position: relative;
  padding: clamp(70px, 9vw, 120px) 0 0;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); }
.hero-glow-1 {
  width: 520px; height: 520px; top: -180px; left: -140px;
  background: radial-gradient(circle, rgba(94, 156, 128, 0.28), transparent 65%);
}
.hero-glow-2 {
  width: 640px; height: 640px; bottom: -260px; right: -160px;
  background: radial-gradient(circle, rgba(30, 91, 72, 0.16), transparent 65%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(23, 24, 26, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 24, 26, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 75%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
}

.hero-title {
  font-size: clamp(40px, 6.2vw, 72px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -1.5px;
}
.hero-sub {
  margin-top: 26px;
  color: var(--muted);
  font-size: 17.5px;
  line-height: 2.1;
  max-width: 46ch;
}
.hero-actions { display: flex; align-items: center; gap: 16px; margin-top: 40px; flex-wrap: wrap; }

.hero-trust {
  display: flex; align-items: center; gap: 16px;
  margin-top: 44px; padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.trust-avatars { display: flex; }
.trust-avatars span {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700;
  color: #fff; border: 2px solid var(--bg);
}
.trust-avatars span:nth-child(1) { background: #3d3a33; }
.trust-avatars span:nth-child(2) { background: #a08c68; margin-right: -10px; }
.trust-avatars span:nth-child(3) { background: #cfb98c; margin-right: -10px; color: #2c2a22; }
.trust-avatars span:nth-child(4) { background: var(--green); margin-right: -10px; }
.hero-trust p { font-size: 14px; color: var(--muted); }
.hero-trust strong { color: var(--ink); font-weight: 700; }

/* Hero visual — phone mockup */
.hero-visual { position: relative; display: grid; place-items: center; padding: 30px 0; }
.visual-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(30, 91, 72, 0.25);
  animation: ringFloat 8s ease-in-out infinite;
}
.visual-ring-1 { width: 470px; height: 470px; }
.visual-ring-2 { width: 390px; height: 390px; border-style: dashed; animation-delay: -2.5s; }
.visual-ring-3 { width: 310px; height: 310px; border-color: rgba(30, 91, 72, 0.15); animation-delay: -5s; }
@keyframes ringFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}

.phone {
  position: relative;
  width: min(300px, 78%);
  border-radius: 42px;
  background: #101412;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: transform 0.5s var(--ease);
}
.hero-visual:hover .phone { transform: rotate(0deg); }
.phone-notch {
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 22px;
  border-radius: 20px;
  background: #101412;
  z-index: 3;
}
.ig-post {
  border-radius: 32px;
  background: #fff;
  overflow: hidden;
}
.ig-head {
  display: flex; align-items: center; gap: 10px;
  padding: 40px 16px 12px;
}
.ig-avatar {
  width: 36px; height: 36px; flex: none;
  border-radius: 50%;
  padding: 2px;
  background: var(--instagram);
  display: grid; place-items: center;
}
.ig-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 2px solid #fff; }
.ig-head div { display: flex; flex-direction: column; line-height: 1.25; }
.ig-head strong { font-size: 12px; font-weight: 800; }
.ig-head small { font-size: 10px; color: var(--muted); }
.ig-head i { font-style: normal; font-weight: 800; letter-spacing: 1px; color: var(--ink); margin-inline-start: auto; }
.ig-media {
  position: relative;
  height: 170px;
  background:
    radial-gradient(120% 120% at 20% 10%, rgba(94, 156, 128, 0.5), transparent 50%),
    linear-gradient(140deg, #203B30, #0F1F18);
  display: grid; place-items: center;
}
.ig-media::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(94, 156, 128, 0.28) 1px, transparent 1px);
  background-size: 16px 16px;
  mask-image: radial-gradient(circle at 50% 55%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 55%, #000, transparent 78%);
}
.ig-badge {
  position: relative; z-index: 1;
  font-size: 15px; font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 10px 22px;
  border-radius: 30px;
}
.ig-actions {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px 4px;
  color: var(--ink);
}
.ig-caption { padding: 4px 16px 16px; }
.ig-caption strong { display: block; font-size: 13px; font-weight: 800; }
.ig-caption p { font-size: 11px; color: var(--muted); line-height: 1.7; margin-top: 4px; }

.winner-card {
  position: absolute;
  bottom: -20px; right: -34px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  z-index: 2;
  overflow: hidden;
}
.winner-glow {
  position: absolute; inset: -40%;
  background: radial-gradient(circle at 85% 15%, rgba(94, 156, 128, 0.35), transparent 55%);
  pointer-events: none;
}
.winner-avatar {
  width: 44px; height: 44px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-brand);
  color: #fff;
  font-size: 16px; font-weight: 800;
  position: relative;
}
.winner-info { position: relative; line-height: 1.4; }
.winner-info small { display: block; font-size: 10.5px; color: var(--green); font-weight: 700; }
.winner-info strong { display: block; font-size: 14.5px; font-weight: 800; direction: ltr; text-align: left; }
.winner-info span { font-size: 11px; color: var(--muted); }
.winner-check {
  position: relative;
  width: 28px; height: 28px; flex: none;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  display: grid; place-items: center;
}

.float-chip {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 12px 18px 12px 16px;
  box-shadow: var(--shadow-md);
  animation: chipFloat 5s ease-in-out infinite;
}
.chip-1 { top: 4%; left: 0; }
.chip-2 { bottom: 12%; right: 0; animation-delay: -2.5s; }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.chip-ic {
  width: 38px; height: 38px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--bg-soft); color: var(--green);
}
.chip-ic.brand { background: var(--grad-brand); color: #fff; }
.float-chip strong { display: block; font-size: 13.5px; font-weight: 700; line-height: 1.3; }
.float-chip small { font-size: 11.5px; color: var(--muted); }

/* Marquee */
.hero-marquee {
  position: relative;
  margin-top: clamp(60px, 8vw, 100px);
  border-block: 1px solid var(--line-soft);
  padding-block: 22px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex; align-items: center; gap: 44px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.hero-marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-size: 17px; font-weight: 600; color: var(--ink-soft); white-space: nowrap; }
.marquee-track i { font-style: normal; color: var(--green); font-size: 9px; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================ Stats ============================ */
.stats { position: relative; z-index: 2; margin-top: -1px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-block: 60px;
  overflow: hidden;
}
.stat {
  padding: 42px 30px;
  text-align: center;
  border-inline-start: 1px solid var(--line-soft);
}
.stat:first-child { border-inline-start: none; }
.stat-num {
  display: block;
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}
.stat-label {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
}

/* ============================ Sections base ============================ */
section { position: relative; }
.features, .how, .themes, .faq, .contact, .pricing {
  padding-block: clamp(70px, 9vw, 120px);
}

/* ============================ Clients ============================ */
.clients {
  padding-block: 14px 6px;
  text-align: center;
}
.clients-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 30px;
  letter-spacing: 0.3px;
}
.clients-label::before, .clients-label::after {
  content: "◆";
  color: var(--green);
  font-size: 7px;
  margin-inline: 14px;
  vertical-align: middle;
}
.clients-marquee {
  position: relative;
  overflow: hidden;
  padding-block: 8px;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.clients-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.clients-marquee:hover .clients-track { animation-play-state: paused; }
.clients-group {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-inline: 30px;
}
.clients-group span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  cursor: default;
  opacity: 0.72;
}
.clients-group img {
  max-height: 56px;
  max-width: 170px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter 0.35s var(--ease), transform 0.35s var(--ease);
}
.clients-group span:hover {
  opacity: 1;
  transform: translateY(-3px);
}
.clients-group span:hover img { filter: grayscale(0); }

/* ============================ Features ============================ */
.features { background: var(--bg-soft); }
.features::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(30, 91, 72, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
  pointer-events: none;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 56px;
}
.section-head-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.section-head-center .section-title { max-width: 24ch; }
.section-note {
  max-width: 40ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}
.section-head-center .section-note { margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  position: relative;
  display: block;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 91, 72, 0.35);
}
.card:hover::before { transform: scaleX(1); }
.card-ic {
  width: 58px; height: 58px;
  border-radius: 18px;
  display: grid; place-items: center;
  background: var(--green-tint);
  color: var(--green);
  border: 1px solid rgba(30, 91, 72, 0.25);
  margin-bottom: 24px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
}
.card:hover .card-ic {
  background: var(--grad-brand);
  color: #fff;
  transform: translateY(-3px);
}
.card h3 { font-size: 19px; font-weight: 800; margin-bottom: 12px; }
.card p { font-size: 14.5px; color: var(--muted); line-height: 1.9; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--green);
  transition: gap 0.3s var(--ease);
}
.card:hover .card-link { gap: 12px; }

/* ============================ Pioneer (dark) ============================ */
.pioneer {
  background: var(--dark);
  color: #fff;
  padding-block: clamp(80px, 10vw, 130px);
  overflow: hidden;
}
.pioneer-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(600px 400px at 90% 0%, rgba(94, 156, 128, 0.12), transparent 60%),
    radial-gradient(500px 380px at 5% 100%, rgba(30, 91, 72, 0.1), transparent 60%);
}
.pioneer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.pioneer-copy .section-title { color: #fff; }
.pioneer-lead {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16.5px;
  line-height: 2;
  margin-top: 18px;
  max-width: 56ch;
}
.pioneer-list { margin-top: 34px; display: grid; gap: 22px; }
.pioneer-list li { display: flex; align-items: flex-start; gap: 18px; }
.pioneer-check {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(94, 156, 128, 0.14);
  color: var(--green-2);
  border: 1px solid rgba(94, 156, 128, 0.3);
}
.pioneer-list strong { display: block; font-size: 16px; font-weight: 700; color: #fff; }
.pioneer-list small { font-size: 14px; color: rgba(255, 255, 255, 0.5); line-height: 1.8; display: block; margin-top: 3px; }
.pioneer-actions { margin-top: 38px; }

.pioneer-media { display: grid; place-items: center; }
.pioneer-frame {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 4 / 4.6;
  border-radius: var(--radius-lg);
  border: 1px solid var(--dark-line);
  background:
    radial-gradient(120% 100% at 85% 0%, rgba(94, 156, 128, 0.2), transparent 55%),
    #121713;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.pioneer-frame-glow {
  position: absolute; inset: -30%;
  background: conic-gradient(from 90deg, transparent, rgba(94, 156, 128, 0.12), transparent 30%);
  animation: rotateGlow 14s linear infinite;
}
@keyframes rotateGlow { to { transform: rotate(360deg); } }
.pioneer-monogram {
  width: 200px; height: 200px;
  position: relative;
  z-index: 1;
  animation: monogramFloat 7s ease-in-out infinite;
}
.pioneer-monogram img { width: 100%; height: 100%; object-fit: contain; border-radius: 24px; }
@keyframes monogramFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.pioneer-badge {
  position: absolute;
  top: 26px; inset-inline-start: 26px;
  background: var(--grad-brand);
  color: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.pioneer-badge strong {
  font-size: 30px; font-weight: 800;
  background: var(--grad-luxe-dark);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pioneer-badge small { font-size: 12px; line-height: 1.5; color: rgba(255,255,255,0.85); font-weight: 400; }
.pioneer-chip {
  position: absolute;
  bottom: 26px; inset-inline-end: 26px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--dark-line);
  border-radius: 16px;
  padding: 12px 16px;
  z-index: 2;
  animation: chipFloat 5s ease-in-out infinite;
}
.pioneer-chip strong { display: block; font-size: 13.5px; font-weight: 700; }
.pioneer-chip small { font-size: 11.5px; color: rgba(255, 255, 255, 0.55); }

/* ============================ How it works ============================ */
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 7px;
  inset-inline: 0;
  height: 1.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(94, 156, 128, 0.5) 10%, rgba(30, 91, 72, 0.45) 90%, transparent);
}
.step {
  position: relative;
  padding-top: 40px;
}
.step-num {
  position: absolute;
  top: -15px;
  left: 50%;
  margin-inline-start: -22px;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--green-line);
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  direction: ltr;
  unicode-bidi: isolate;
  z-index: 2;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.step:hover .step-num {
  background: var(--grad-brand);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 22px -10px rgba(30, 91, 72, 0.55);
}
.step h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  transition: color 0.3s var(--ease);
}
.step p { font-size: 14.5px; color: var(--muted); line-height: 1.9; }
.step:hover h3 { color: var(--green); }

.track-glow {
  position: absolute;
  top: 2.5px;
  right: 0;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 14px 3px rgba(94, 156, 128, 0.5);
  animation: trackMove 7s ease-in-out infinite;
}
@keyframes trackMove {
  0% { right: 0; opacity: 0; }
  12% { opacity: 1; }
  50% { right: calc(100% - 9px); opacity: 1; }
  88% { opacity: 1; }
  100% { right: calc(100% - 9px); opacity: 0; }
}

/* ============================ Pricing ============================ */
.pricing { background: var(--bg-soft); }
.pricing::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(30, 91, 72, 0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, transparent, #000 25%, #000 75%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 25%, #000 75%, transparent);
  pointer-events: none;
}
.pricing-card {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow-md);
}
.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--green-tint);
  border: 1px solid rgba(30, 91, 72, 0.2);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 28px;
}
.pricing-note-ic {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--grad-brand);
  color: #fff;
}
.pricing-note p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.9; }
.pricing-note strong { color: var(--green); }

.price-table {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 13px 22px;
  font-size: 14.5px;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.25s var(--ease);
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--bg-soft); }
.price-row > span:last-child { font-weight: 700; color: var(--ink); direction: ltr; unicode-bidi: isolate; }
.price-head {
  background: var(--dark);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.price-head:hover { background: var(--dark); }
.price-head > span:last-child { color: #fff; }
.price-free {
  background: var(--green-tint);
  border-color: rgba(30, 91, 72, 0.2);
}
.price-free:hover { background: #D7E7DE; }
.price-free-tag {
  background: var(--grad-brand);
  color: #fff !important;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
}
.price-cta {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.price-cta:hover { color: var(--green-3); }
.pricing-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

/* ============================ Themes ============================ */
.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.theme {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.theme:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 91, 72, 0.35);
}
.theme-emoji {
  display: inline-grid;
  place-items: center;
  width: 62px; height: 62px;
  border-radius: 20px;
  background: var(--green-tint);
  border: 1px solid rgba(30, 91, 72, 0.25);
  font-size: 28px;
  margin-bottom: 20px;
  transition: transform 0.4s var(--ease);
}
.theme:hover .theme-emoji { transform: translateY(-3px) scale(1.05); }
.theme h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.theme p { font-size: 14px; color: var(--muted); line-height: 1.9; }

/* ============================ Testimonials ============================ */
.testimonials { background: var(--bg-soft); padding-block: clamp(70px, 9vw, 120px); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 40px 32px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.testi:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote-mark {
  position: absolute;
  top: 18px; inset-inline-end: 28px;
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 1;
  color: rgba(30, 91, 72, 0.22);
}
.testi blockquote {
  font-size: 15.5px;
  line-height: 2.05;
  color: var(--ink-soft);
  flex: 1;
}
.testi figcaption {
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px; padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-brand);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.testi figcaption strong { display: block; font-size: 14.5px; font-weight: 700; }
.testi figcaption small { font-size: 12.5px; color: var(--muted); }

/* ============================ FAQ ============================ */
.faq-list { max-width: 780px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.faq-item.open { border-color: rgba(30, 91, 72, 0.35); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 15.5px;
  font-weight: 700;
  text-align: right;
  transition: color 0.25s var(--ease);
}
.faq-q:hover { color: var(--green); }
.faq-ic {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--green-tint);
  color: var(--green);
  transition: transform 0.4s var(--ease-spring), background 0.3s var(--ease);
}
.faq-item.open .faq-ic {
  background: var(--grad-brand);
  color: #fff;
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-a p {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 2;
}

/* ============================ CTA banner ============================ */
.cta { padding: 0 0 clamp(70px, 9vw, 110px); }
.cta-banner {
  position: relative;
  background: linear-gradient(120deg, #121713, #1C2620 50%, #121713);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(94, 156, 128, 0.25);
  padding: clamp(50px, 7vw, 80px);
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.cta-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(500px 300px at 50% -20%, rgba(94, 156, 128, 0.25), transparent 60%),
    radial-gradient(400px 260px at 12% 110%, rgba(94, 156, 128, 0.12), transparent 60%);
}
.cta-banner .eyebrow { justify-content: center; position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 800;
  line-height: 1.4;
  position: relative; z-index: 1;
}
.cta-banner > p {
  margin: 18px auto 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 2;
  position: relative; z-index: 1;
}
.cta-actions {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ============================ Contact ============================ */
.contact { background: var(--bg-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-list { margin-top: 38px; display: grid; gap: 22px; }
.contact-list li { display: flex; gap: 18px; align-items: flex-start; }
.contact-ic {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  color: var(--green);
  box-shadow: var(--shadow-sm);
}
.contact-list small { display: block; font-size: 12.5px; color: var(--muted); margin-bottom: 4px; font-weight: 500; }
.contact-list a, .contact-list p { font-size: 15px; font-weight: 600; line-height: 1.8; display: block; }
.contact-list a:hover { color: var(--green); }

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 42px 38px;
  box-shadow: var(--shadow-md);
}
.contact-card h3 { font-size: 21px; font-weight: 800; }
.form-hint { font-size: 13.5px; color: var(--muted); margin-block: 10px 26px; line-height: 1.8; }

.field { margin-bottom: 20px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 9px; }
.req { color: var(--green); }
.field input, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14.5px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #AAB1AD; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(30, 91, 72, 0.14);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-error { min-height: 0; font-size: 12.5px; color: #C0503F; margin-top: 7px; display: none; }
.field.error input, .field.error textarea { border-color: #C0503F; background: #FBF3F1; }
.field.error .field-error { display: block; }

.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 16px; }

/* ============================ Footer ============================ */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
  padding-top: clamp(60px, 8vw, 90px);
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 240px;
  background: radial-gradient(60% 100% at 50% 0%, rgba(94, 156, 128, 0.1), transparent 70%);
  pointer-events: none;
}
.footer::after {
  content: "Ojasoft";
  position: absolute;
  inset-inline-end: -16px;
  bottom: -10px;
  font-size: clamp(84px, 13vw, 180px);
  font-weight: 900;
  letter-spacing: -5px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.025);
  direction: ltr;
  pointer-events: none;
  user-select: none;
}
.footer > .container { position: relative; z-index: 1; }
.brand-dark .brand-text strong { color: #fff; }
.brand-dark .brand-text small { color: rgba(255, 255, 255, 0.5); }
.brand-dark .brand-mark { color: var(--green-2); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--dark-line);
}
.footer-about {
  margin-top: 20px;
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.55);
  max-width: 40ch;
}
.socials { display: flex; gap: 12px; margin-top: 24px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-line);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s var(--ease);
}
.socials a:hover {
  background: var(--grad-brand);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 26px; height: 1.5px;
  background: linear-gradient(90deg, var(--green-2), transparent);
}
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.25s var(--ease), padding-inline-start 0.25s var(--ease);
}
.footer-col a:hover { color: var(--green-2); padding-inline-start: 6px; }
.footer-contact p { font-size: 14px; line-height: 1.9; color: rgba(255, 255, 255, 0.6); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 26px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
}
.footer-made .grad { font-weight: 700; }

/* ============================ eNamad ============================ */
.enamad {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 14px 16px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.enamad::before {
  content: "";
  position: absolute; inset: 0 0 auto 0;
  height: 2px;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.enamad::after {
  content: "";
  position: absolute; inset: -40px;
  background: radial-gradient(circle at 50% 0%, rgba(94, 156, 128, 0.14), transparent 60%);
  pointer-events: none;
}
.enamad:hover {
  transform: translateY(-4px);
  border-color: rgba(94, 156, 128, 0.42);
  box-shadow: 0 18px 36px -20px rgba(94, 156, 128, 0.4);
}
.enamad:hover::before { opacity: 1; }
.enamad-inner {
  display: grid;
  place-items: center;
  width: 78px; height: 78px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.35);
}
.enamad img { width: 74px; height: 74px; }
.enamad-label {
  position: relative;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s var(--ease);
}
.enamad:hover .enamad-label { color: var(--green-2); }

/* ============================ Toast ============================ */
.toast {
  position: fixed;
  bottom: 30px; right: 50%;
  transform: translate(50%, 140%);
  z-index: 1500;
  display: flex; align-items: center; gap: 14px;
  background: var(--dark);
  color: #fff;
  border: 1px solid rgba(94, 156, 128, 0.35);
  border-radius: 16px;
  padding: 16px 24px;
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s var(--ease-spring), opacity 0.4s var(--ease);
  opacity: 0;
  max-width: calc(100vw - 40px);
}
.toast.show { transform: translate(50%, 0); opacity: 1; }
.toast-ic {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-brand);
  color: #fff;
}

/* ============================ Back to top ============================ */
.back-top {
  position: fixed;
  bottom: 26px;
  right: auto;
  left: 26px;
  z-index: 100;
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--dark);
  color: var(--green-2);
  border: 1px solid rgba(94, 156, 128, 0.3);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.3s;
}
.back-top.show { opacity: 1; transform: none; pointer-events: auto; }
.back-top:hover { background: var(--green); color: #fff; }

/* ============================ WhatsApp float ============================ */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  left: auto;
  z-index: 100;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  line-height: 0;
  text-decoration: none;
  box-sizing: border-box;
  box-shadow: 0 10px 24px rgba(18, 140, 126, 0.34);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease);
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 20px 38px -12px rgba(18, 140, 126, 0.75); }
.whatsapp-float:focus-visible { outline: 3px solid rgba(37, 211, 102, 0.35); outline-offset: 4px; }
.whatsapp-float svg { display: block; width: 26px; height: 26px; flex: none; }

/* ============================ Reveal animations ============================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* ============================ Responsive ============================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-sub { margin-inline: auto; }
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 520px; margin-inline: auto; width: 100%; }
  .pioneer-grid { grid-template-columns: 1fr; gap: 50px; }
  .pioneer-copy { text-align: center; }
  .pioneer-list { text-align: right; max-width: 520px; margin-inline: auto; }
  .pioneer-actions { display: flex; justify-content: center; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .features-grid, .testi-grid, .themes-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .process-grid::before, .track-glow { display: none; }
  .step { padding-top: 24px; border-top: 1px solid var(--line-soft); }
  .step-num {
    position: static;
    display: inline-block;
    width: auto; height: auto;
    margin: 0 0 12px;
    border: none;
    background: none;
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 0;
  }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-inline-start: none; }
  .stat:nth-child(1), .stat:nth-child(3) { border-bottom: 1px solid var(--line-soft); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar-inner { flex-direction: column; gap: 4px; text-align: center; }
  .header-cta { display: none; }
  .burger { display: flex; }
  .nav {
    position: fixed;
    inset: 0;
    background: rgba(247, 248, 246, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 34px;
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
  }
  .nav.open { opacity: 1; visibility: visible; }
  .nav ul { flex-direction: column; gap: 8px; text-align: center; }
  .nav-link { font-size: 20px; padding: 10px 20px; }
  .nav-cta { display: inline-flex; margin-top: 10px; }
  .nav-link::after { display: none; }

  .hero-title { font-size: clamp(34px, 9vw, 48px); }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { padding: 20px 0 40px; }
  .visual-ring-1 { width: 320px; height: 320px; }
  .visual-ring-2 { width: 260px; height: 260px; }
  .visual-ring-3 { width: 200px; height: 200px; }
  .float-chip { padding: 10px 14px; }
  .chip-1 { top: 0; left: -6px; }
  .chip-2 { bottom: 6%; right: -6px; }
  .winner-card { right: 0; bottom: -16px; }

  .features-grid, .testi-grid, .themes-grid, .process-grid { grid-template-columns: 1fr; }
  .process-grid { gap: 36px; }
  .process-grid::before, .track-glow { display: none; }
  .step { padding-top: 22px; border-top: 1px solid var(--line-soft); }
  .step-num {
    position: static;
    display: inline-block;
    width: auto; height: auto;
    margin: 0 0 12px;
    border: none;
    background: none;
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 0;
  }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 30px 18px; }
  .stat:nth-child(2) { border-inline-start: none; }
  .contact-card { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .cta-banner { padding: 46px 24px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; }
  .pioneer-frame { max-width: 340px; }
  .pricing-actions { flex-direction: column; width: 100%; }
  .pricing-actions .btn { width: 100%; }
  .price-row { padding: 12px 16px; font-size: 13.5px; }
  .pioneer-chip { inset-inline-end: 12px; bottom: 16px; }
}

@media (max-width: 420px) {
  .container { padding-inline: 20px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-inline-start: none !important; border-bottom: 1px solid var(--line-soft); }
  .stat:last-child { border-bottom: none; }
  .topbar-contact { flex-wrap: wrap; justify-content: center; }
}

/* ============================ Reduced motion ============================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

