/* =========================================================
   PRACTA LANDING PAGE
   Main CSS
   Concept: Clean Green Health-Tech + Smooth Parallax
========================================================= */

:root {
  --practa-green: #22a35a;
  --practa-green-dark: #14783f;
  --practa-green-deep: #0f5f32;
  --practa-green-soft: #eaf8f0;
  --practa-mint: #f4fbf7;
  --practa-mint-2: #eef8f2;

  --practa-yellow: #f8c65a;
  --practa-orange: #f59e0b;
  --practa-red: #ef4444;
  --practa-blue: #3b82f6;

  --dark: #111827;
  --dark-soft: #1f2937;
  --muted: #6b7280;
  --muted-2: #9ca3af;

  --white: #ffffff;
  --off-white: #f8fafc;
  --line: #e5e7eb;

  --shadow-xs: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-sm: 0 14px 35px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 24px 70px rgba(15, 23, 42, 0.1);
  --shadow-green: 0 18px 42px rgba(34, 163, 90, 0.26);

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;

  --container: 1180px;
  --header-height: 74px;

  --transition: 260ms ease;
}

/* =========================================================
   Reset
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  color: var(--dark);
  background: var(--off-white);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

::selection {
  color: var(--white);
  background: var(--practa-green);
}

/* =========================================================
   Global Utilities
========================================================= */

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 104px 0;
  overflow: hidden;
}

.section-sm {
  padding: 76px 0;
}

.section-white {
  background: var(--white);
}

.section-soft {
  background: #f5f8f6;
}

.section-mint {
  background:
    radial-gradient(circle at top left, rgba(34, 163, 90, 0.08), transparent 34%),
    var(--practa-mint);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(34, 163, 90, 0.22), transparent 32%),
    linear-gradient(135deg, #10251a 0%, #07150f 100%);
}

.text-green {
  color: var(--practa-green);
}

.text-muted {
  color: var(--muted);
}

.center {
  text-align: center;
}

.hide-desktop {
  display: none !important;
}

/* =========================================================
   Buttons
========================================================= */

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #32c875 0%, var(--practa-green) 55%, var(--practa-green-dark) 100%);
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  box-shadow: 0 22px 52px rgba(34, 163, 90, 0.34);
}

.btn-light {
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}

.btn-light:hover {
  border-color: rgba(34, 163, 90, 0.24);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  color: var(--practa-green-dark);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(34, 163, 90, 0.26);
}

.btn-outline:hover {
  color: var(--white);
  background: var(--practa-green);
}

.btn-sm {
  min-height: 40px;
  padding: 11px 17px;
  font-size: 13px;
}

/* =========================================================
   Header / Navbar
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(229, 231, 235, 0.78);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(1240px, calc(100% - 36px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: #374151;
  font-size: 14px;
  font-weight: 650;
}

.nav-menu a {
  position: relative;
  padding: 8px 0;
  transition: color var(--transition);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--practa-green);
  transition: width var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--practa-green-dark);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--dark);
  background: transparent;
  border-radius: 999px;
  transition:
    background var(--transition),
    color var(--transition);
}

.icon-btn:hover {
  color: var(--practa-green-dark);
  background: var(--practa-green-soft);
}

.menu-toggle {
  display: none;
}

/* =========================================================
   Parallax Base
========================================================= */

.parallax-root {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.parallax-layer,
.parallax-shape,
.parallax-card {
  will-change: transform;
}

.parallax-shape {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(0.2px);
}

.shape-mint-large {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(34, 163, 90, 0.12), transparent 68%);
}

.shape-green-small {
  width: 160px;
  height: 160px;
  background: rgba(34, 163, 90, 0.09);
  border: 1px solid rgba(34, 163, 90, 0.14);
}

.shape-yellow-small {
  width: 120px;
  height: 120px;
  background: rgba(248, 198, 90, 0.18);
  border: 1px solid rgba(248, 198, 90, 0.18);
}

/* =========================================================
   Hero / Home
========================================================= */

.hero {
  min-height: calc(100vh - var(--header-height));
  padding: 38px 0 110px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top center, rgba(34, 163, 90, 0.1), transparent 34%),
    linear-gradient(180deg, #f9fbfa 0%, #eef4f0 100%);
}

.hero .shape-1 {
  top: 6%;
  left: -150px;
}

.hero .shape-2 {
  top: 18%;
  right: 8%;
}

.hero .shape-3 {
  bottom: 18%;
  left: 14%;
}

.hero-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.hero-content {
  width: min(810px, 100%);
  position: relative;
  z-index: 2;
}

.badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  padding: 8px 15px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--practa-green-dark), var(--practa-green));
  box-shadow: 0 12px 28px rgba(34, 163, 90, 0.22);
  font-size: 12px;
  font-weight: 850;
}

.hero-title {
  margin: 0;
  color: var(--dark);
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.hero-title span {
  display: block;
  color: var(--practa-green);
}

.hero-description {
  width: min(660px, 100%);
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  width: min(820px, 100%);
  margin-top: 68px;
  z-index: 1;
}

/* =========================================================
   POS Dashboard Mockup
========================================================= */

.dashboard-shell {
  position: relative;
  padding: 16px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.88);
}

.dashboard-shell::before {
  content: "";
  position: absolute;
  inset: -18px 56px auto;
  height: 36px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(34, 163, 90, 0.16);
  filter: blur(28px);
}

.dashboard-window-bar {
  height: 38px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.window-dot.green {
  background: #22c55e;
}

.window-dot.yellow {
  background: #facc15;
}

.window-dot.red {
  background: #ef4444;
}

.window-title {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.pos-preview {
  min-height: 360px;
  display: grid;
  grid-template-columns: 88px 1fr;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 84% 12%, rgba(34, 163, 90, 0.24), transparent 34%),
    linear-gradient(135deg, #10251a 0%, #07150f 100%);
}

.pos-sidebar {
  padding: 22px 18px;
  display: grid;
  align-content: start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.pos-sidebar-logo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--practa-green), var(--practa-green-dark));
  font-weight: 950;
}

.pos-sidebar-line {
  height: 32px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.pos-content {
  padding: 28px;
  color: var(--white);
}

.pos-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.pos-kicker {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.pos-income {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -0.04em;
}

.pos-status {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(34, 163, 90, 0.94);
  font-size: 12px;
  font-weight: 850;
}

.pos-stats {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pos-stat-card {
  padding: 18px;
  border-radius: 18px;
  text-align: left;
  background: rgba(255, 255, 255, 0.1);
}

.pos-stat-card span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.pos-stat-card strong {
  display: block;
  margin-top: 8px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.transaction-list {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.transaction-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.transaction-item:last-child {
  border-bottom: 0;
}

.transaction-item span {
  color: rgba(255, 255, 255, 0.78);
}

.transaction-item strong {
  white-space: nowrap;
}

/* floating cards */

.float-card {
  position: absolute;
  z-index: 3;
  padding: 16px 18px;
  border-radius: 20px;
  text-align: left;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.float-card strong {
  display: block;
  color: var(--practa-green-dark);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.float-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.float-left {
  left: -36px;
  bottom: 48px;
}

.float-right {
  top: 82px;
  right: -28px;
}

/* =========================================================
   Page Header for Inner Pages
========================================================= */

.page-hero {
  position: relative;
  padding: 92px 0 78px;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(34, 163, 90, 0.12), transparent 34%),
    linear-gradient(180deg, #f9fbfa 0%, #eef5f0 100%);
  overflow: hidden;
}

.page-hero-content {
  width: min(760px, 100%);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.page-eyebrow {
  width: fit-content;
  margin: 0 auto 16px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--practa-green-dark);
  background: var(--practa-green-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-title {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.page-description {
  width: min(620px, 100%);
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

/* =========================================================
   Section Heading
========================================================= */

.section-heading {
  width: min(720px, 100%);
  margin-bottom: 42px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--practa-green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-desc {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

/* =========================================================
   Problem Cards
========================================================= */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.problem-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid #eef2f7;
  box-shadow: var(--shadow-xs);
}

.problem-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  font-weight: 900;
}

.problem-icon.red {
  color: #dc2626;
  background: #fee2e2;
}

.problem-icon.orange {
  color: #ea580c;
  background: #ffedd5;
}

.problem-icon.yellow {
  color: #a16207;
  background: #fef3c7;
}

.problem-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.problem-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

/* =========================================================
   Feature Cards
========================================================= */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-md);
  background: #f9fafb;
  border: 1px solid #eef2f7;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 163, 90, 0.22);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 15px;
  color: var(--practa-green-dark);
  background: var(--practa-green-soft);
  font-weight: 900;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.74;
}

/* =========================================================
   Solution Block
========================================================= */

.solution-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 68px;
}

.solution-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.check-list {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--practa-green);
  font-size: 13px;
  font-weight: 950;
}

.check-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.check-item strong {
  color: var(--dark);
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.solution-card {
  min-height: 148px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid #edf2f7;
  box-shadow: var(--shadow-sm);
}

.solution-card-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 13px;
  color: var(--practa-green-dark);
  background: var(--practa-green-soft);
}

.solution-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.solution-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

/* =========================================================
   Pricing
========================================================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.pricing-card.popular {
  border-color: rgba(34, 163, 90, 0.38);
  box-shadow: var(--shadow-md);
  transform: translateY(-14px);
}

.popular-badge {
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--practa-green), var(--practa-green-dark));
  font-size: 12px;
  font-weight: 900;
}

.pricing-card h3 {
  margin: 0 0 8px;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.pricing-card > p {
  margin: 0;
  min-height: 50px;
  color: var(--muted);
  line-height: 1.7;
}

.price {
  margin: 26px 0 24px;
  color: var(--dark);
  font-size: 40px;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.pricing-list {
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
  display: grid;
  gap: 12px;
}

.pricing-list li {
  color: #374151;
  line-height: 1.5;
}

.pricing-list li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--practa-green);
  font-weight: 950;
}

.pricing-card .btn {
  margin-top: auto;
}

/* =========================================================
   FAQ
========================================================= */

.faq-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.035);
}

.faq-question {
  width: 100%;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  color: var(--dark);
  background: transparent;
  font-size: 16px;
  font-weight: 850;
}

.faq-question span {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--practa-green-dark);
  background: var(--practa-green-soft);
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.8;
  transition: max-height 280ms ease;
}

.faq-answer-inner {
  padding: 0 22px 22px;
}

.faq-item.active .faq-question span {
  color: var(--white);
  background: var(--practa-green);
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 240px;
}

/* =========================================================
   CTA / Demo
========================================================= */

.demo-cta {
  padding: 78px 0;
  background: var(--white);
}

.demo-box {
  position: relative;
  overflow: hidden;
  padding: 78px 36px;
  border-radius: var(--radius-xl);
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at top center, rgba(34, 163, 90, 0.34), transparent 36%),
    linear-gradient(135deg, #10251a 0%, #07150f 100%);
  box-shadow: var(--shadow-md);
}

.demo-box::before,
.demo-box::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.demo-box::before {
  width: 260px;
  height: 260px;
  top: -90px;
  left: -80px;
  background: rgba(34, 163, 90, 0.18);
}

.demo-box::after {
  width: 190px;
  height: 190px;
  right: -60px;
  bottom: -70px;
  background: rgba(248, 198, 90, 0.12);
}

.demo-box-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  margin-inline: auto;
}

.demo-box h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.demo-box p {
  width: min(640px, 100%);
  margin: 18px auto 28px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
}

/* =========================================================
   Footer
========================================================= */

.footer {
  padding: 30px 0;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-weight: 800;
}

.footer-brand img {
  height: 28px;
  width: auto;
}

/* =========================================================
   Animation Helpers
========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 170ms;
}

.reveal-delay-3 {
  transition-delay: 250ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .parallax-layer,
  .parallax-shape,
  .parallax-card {
    transform: none !important;
  }
}

/* =========================================================
   Hero Image Visual
========================================================= */

.hero-image-visual {
  width: min(860px, 100%);
}

.hero-image-wrap {
  position: relative;
  will-change: transform;
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border-radius: 28px;
  background: var(--white);
  border: 10px solid rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
}

.hero-image-card::before {
  content: "";
  position: absolute;
  inset: -24px 70px auto;
  height: 44px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(34, 163, 90, 0.18);
  filter: blur(28px);
}

.hero-image-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 21, 15, 0.08) 0%, rgba(7, 21, 15, 0.48) 100%),
    radial-gradient(circle at center, transparent 0%, rgba(7, 21, 15, 0.32) 100%);
  pointer-events: none;
}

.hero-image-badge {
  position: absolute;
  z-index: 3;
  padding: 15px 17px;
  border-radius: 18px;
  text-align: left;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.hero-image-badge strong {
  display: block;
  color: var(--practa-green-dark);
  font-size: 15px;
}

.hero-image-badge span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.hero-image-badge.top {
  top: 24px;
  right: 24px;
}

.hero-image-badge.bottom {
  left: 24px;
  bottom: 24px;
}

/* =========================================================
   Pricing Page Detail
========================================================= */

.pricing-hero-mini {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pricing-mini-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(34, 163, 90, 0.16);
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(16px);
}

.pricing-mini-card strong {
  display: block;
  color: var(--practa-green-dark);
  font-size: 22px;
  letter-spacing: -0.035em;
}

.pricing-mini-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.pricing-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.pricing-page-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.045);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.pricing-page-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 163, 90, 0.28);
  box-shadow: var(--shadow-sm);
}

.pricing-page-card.featured {
  border-color: rgba(34, 163, 90, 0.42);
  box-shadow: var(--shadow-md);
  transform: translateY(-16px);
}

.pricing-page-card.featured:hover {
  transform: translateY(-20px);
}

.package-label {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--practa-green-dark);
  background: var(--practa-green-soft);
  font-size: 12px;
  font-weight: 900;
}

.package-label.featured {
  color: var(--white);
  background: linear-gradient(135deg, var(--practa-green), var(--practa-green-dark));
}

.pricing-page-card h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.package-desc {
  min-height: 76px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.package-price {
  margin: 28px 0;
  color: var(--dark);
  font-size: 42px;
  font-weight: 950;
  letter-spacing: -0.065em;
}

.package-price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0;
}

.package-price.custom {
  font-size: 38px;
}

.package-features {
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
  display: grid;
  gap: 13px;
}

.package-features li {
  display: flex;
  gap: 10px;
  color: #374151;
  line-height: 1.55;
}

.package-features li::before {
  content: "✓";
  color: var(--practa-green);
  font-weight: 950;
  flex: 0 0 auto;
}

.pricing-page-card .btn {
  margin-top: auto;
}

.pricing-note {
  margin-top: 34px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #374151;
  background: var(--practa-green-soft);
  border: 1px solid rgba(34, 163, 90, 0.16);
}

.pricing-note-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--practa-green);
  font-weight: 950;
}

.pricing-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.pricing-note strong {
  color: var(--dark);
}

/* comparison */

.comparison-wrap {
  overflow-x: auto;
  border-radius: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 14px;
}

.comparison-table th {
  color: var(--dark);
  background: #f9fafb;
  font-weight: 900;
}

.comparison-table td {
  color: #374151;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table .check {
  color: var(--practa-green);
  font-weight: 950;
}

.comparison-table .dash {
  color: var(--muted-2);
}

/* add-ons */

.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.addon-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid #edf2f7;
  box-shadow: var(--shadow-xs);
}

.addon-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  color: var(--practa-green-dark);
  background: var(--practa-green-soft);
  font-weight: 950;
}

.addon-card h3 {
  margin: 0 0 9px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.addon-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

/* payment section */

.payment-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.payment-card {
  padding: 30px;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.payment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.payment-row:last-child {
  border-bottom: 0;
}

.payment-row span {
  color: var(--muted);
  font-size: 14px;
}

.payment-row strong {
  color: var(--dark);
  text-align: right;
}

/* =========================================================
   Feature Page Detail
========================================================= */

.feature-showcase-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.feature-showcase-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.feature-showcase-panel {
  position: relative;
  padding: 18px;
  border-radius: 32px;
  background: var(--white);
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: var(--shadow-md);
}

.feature-showcase-panel::before {
  content: "";
  position: absolute;
  inset: -22px 70px auto;
  height: 44px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(34, 163, 90, 0.18);
  filter: blur(30px);
}

.feature-app-preview {
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(34, 163, 90, 0.26), transparent 34%),
    linear-gradient(135deg, #10251a 0%, #07150f 100%);
  color: var(--white);
}

.feature-app-top {
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-app-top strong {
  font-size: 16px;
}

.feature-app-pill {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(34, 163, 90, 0.95);
  font-size: 12px;
  font-weight: 850;
}

.feature-app-body {
  padding: 0 22px 22px;
  display: grid;
  gap: 16px;
}

.feature-app-row {
  padding: 18px;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.1);
}

.feature-app-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: rgba(34, 163, 90, 0.9);
}

.feature-app-row h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.feature-app-row span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.feature-app-value {
  font-weight: 900;
  white-space: nowrap;
}

/* Feature Category */

.feature-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-category-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 30px;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid #edf2f7;
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.feature-category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 163, 90, 0.24);
  box-shadow: var(--shadow-sm);
}

.feature-category-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -76px;
  bottom: -80px;
  border-radius: 999px;
  background: rgba(34, 163, 90, 0.08);
}

.feature-category-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--practa-green-dark);
  background: var(--practa-green-soft);
  font-size: 20px;
  font-weight: 950;
}

.feature-category-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.feature-category-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

/* Feature Workflow */

.feature-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: feature-flow;
}

.feature-flow-card {
  position: relative;
  padding: 28px;
  border-radius: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}

.feature-flow-card::before {
  counter-increment: feature-flow;
  content: "0" counter(feature-flow);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--practa-green), var(--practa-green-dark));
  font-size: 13px;
  font-weight: 950;
}

.feature-flow-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.feature-flow-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

/* Feature List Detail */

.feature-detail-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 52px;
  align-items: start;
}

.feature-detail-list {
  display: grid;
  gap: 14px;
}

.feature-detail-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 22px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid #edf2f7;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.035);
}

.feature-detail-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--practa-green-dark);
  background: var(--practa-green-soft);
  font-weight: 950;
}

.feature-detail-item h3 {
  margin: 0 0 7px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.feature-detail-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

/* =========================================================
   Solution Page Detail
========================================================= */

.solution-hero-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.solution-stat-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(34, 163, 90, 0.16);
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(16px);
}

.solution-stat-card strong {
  display: block;
  color: var(--practa-green-dark);
  font-size: 22px;
  letter-spacing: -0.035em;
}

.solution-stat-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* solution intro */

.solution-intro-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.solution-intro-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.solution-visual-card {
  position: relative;
  padding: 18px;
  border-radius: 32px;
  background: var(--white);
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: var(--shadow-md);
}

.solution-visual-card::before {
  content: "";
  position: absolute;
  inset: -22px 70px auto;
  height: 44px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(34, 163, 90, 0.18);
  filter: blur(30px);
}

.solution-board {
  min-height: 420px;
  padding: 24px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(34, 163, 90, 0.25), transparent 34%),
    linear-gradient(135deg, #10251a 0%, #07150f 100%);
  color: var(--white);
}

.solution-board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.solution-board-header strong {
  font-size: 17px;
}

.solution-board-header span {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(34, 163, 90, 0.94);
  font-size: 12px;
  font-weight: 850;
}

.solution-board-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.solution-board-box {
  min-height: 126px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.solution-board-box small {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.solution-board-box strong {
  display: block;
  margin-top: 10px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.solution-board-box p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.6;
}

.solution-board-list {
  margin-top: 14px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.solution-board-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-board-item:last-child {
  border-bottom: 0;
}

.solution-board-item span {
  color: rgba(255, 255, 255, 0.76);
}

.solution-board-item strong {
  white-space: nowrap;
}

/* before after */

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.before-after-card {
  padding: 34px;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}

.before-after-card.before {
  background:
    radial-gradient(circle at top left, rgba(239, 68, 68, 0.08), transparent 38%),
    var(--white);
}

.before-after-card.after {
  background:
    radial-gradient(circle at top left, rgba(34, 163, 90, 0.1), transparent 38%),
    var(--white);
  border-color: rgba(34, 163, 90, 0.22);
}

.before-after-label {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.before-after-card.before .before-after-label {
  color: #b91c1c;
  background: #fee2e2;
}

.before-after-card.after .before-after-label {
  color: var(--practa-green-dark);
  background: var(--practa-green-soft);
}

.before-after-card h3 {
  margin: 0 0 16px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.before-after-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.before-after-list li {
  display: flex;
  gap: 10px;
  color: #374151;
  line-height: 1.6;
}

.before-after-list li::before {
  flex: 0 0 auto;
  font-weight: 950;
}

.before-after-card.before .before-after-list li::before {
  content: "×";
  color: #dc2626;
}

.before-after-card.after .before-after-list li::before {
  content: "✓";
  color: var(--practa-green);
}

/* use case */

.solution-usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.solution-usecase-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 28px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid #edf2f7;
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.solution-usecase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 163, 90, 0.24);
  box-shadow: var(--shadow-sm);
}

.solution-usecase-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -72px;
  bottom: -72px;
  border-radius: 999px;
  background: rgba(34, 163, 90, 0.08);
}

.solution-usecase-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--practa-green-dark);
  background: var(--practa-green-soft);
  font-weight: 950;
}

.solution-usecase-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.solution-usecase-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

/* implementation steps */

.solution-step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: solution-step;
}

.solution-step-card {
  padding: 28px;
  border-radius: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}

.solution-step-card::before {
  counter-increment: solution-step;
  content: "0" counter(solution-step);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--practa-green), var(--practa-green-dark));
  font-size: 13px;
  font-weight: 950;
}

.solution-step-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.solution-step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

/* impact */

.solution-impact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: start;
}

.solution-impact-list {
  display: grid;
  gap: 14px;
}

.solution-impact-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid #edf2f7;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.035);
}

.solution-impact-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--practa-green-dark);
  background: var(--practa-green-soft);
  font-weight: 950;
}

.solution-impact-item h3 {
  margin: 0 0 7px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.solution-impact-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

/* =========================================================
   FAQ Page Detail
========================================================= */

.faq-page-section {
  background:
    radial-gradient(circle at top left, rgba(34, 163, 90, 0.08), transparent 34%),
    var(--white);
}

.faq-page-wrap {
  width: min(860px, 100%);
  margin-inline: auto;
}

.faq-page-list {
  display: grid;
  gap: 14px;
}

.faq-page-note {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  color: var(--muted);
  background: var(--practa-green-soft);
  border: 1px solid rgba(34, 163, 90, 0.16);
  line-height: 1.75;
}

.faq-page-note strong {
  color: var(--dark);
}

/* =========================================================
   FAQ Hero Image
========================================================= */

.faq-hero-image {
  position: relative;
  padding: 34px 0 26px;
  background:
    radial-gradient(circle at top center, rgba(34, 163, 90, 0.08), transparent 34%),
    linear-gradient(180deg, #f9fbfa 0%, #eef5f0 100%);
  overflow: hidden;
}

.faq-hero-banner {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 34px;
  background: var(--white);
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: var(--shadow-md);
}

.faq-hero-banner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.faq-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 21, 15, 0.04) 0%, rgba(7, 21, 15, 0.14) 100%);
  pointer-events: none;
}