/* Floxas — floxas.com.tr */
:root {
  --orange: #FF6B00;
  --orange-deep: #E55F00;
  --orange-soft: #FFF3EB;
  --ink: #141414;
  --ink-soft: #3A3A3A;
  --muted: #6B6B6B;
  --line: #EDE6E0;
  --paper: #FFFCF9;
  --white: #FFFFFF;
  --sidebar: #16181D;
  --radius: 14px;
  --shadow: 0 24px 60px rgba(20, 20, 20, 0.12);
  --font: "Figtree", system-ui, sans-serif;
  --display: "Syne", "Figtree", sans-serif;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(255, 107, 0, 0.18), transparent 60%),
    radial-gradient(700px 420px at -5% 30%, rgba(255, 107, 0, 0.08), transparent 55%),
    linear-gradient(180deg, #FFF8F2 0%, var(--paper) 35%, #FFFFFF 100%);
}

.container {
  width: min(1140px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.container.narrow {
  width: min(720px, calc(100% - 2.5rem));
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  backdrop-filter: blur(14px);
  background: rgba(255, 252, 249, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 252, 249, 0.94);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}

.nav {
  display: flex;
  gap: 1.35rem;
  margin-left: auto;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(255, 107, 0, 0.28);
}

.btn-primary:hover {
  background: var(--orange-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
}

.btn-ghost:hover {
  color: var(--orange);
}

.btn-outline {
  background: var(--white);
  border-color: #F0D9C7;
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 0.95rem 1.45rem;
  font-size: 1.02rem;
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  padding: 2.5rem 0 0;
  overflow: clip;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 107, 0, 0.07) 0%, transparent 42%),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 22px,
      rgba(255, 107, 0, 0.025) 22px,
      rgba(255, 107, 0, 0.025) 23px
    );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  padding-bottom: 1.5rem;
}

.hero-copy {
  max-width: 640px;
  animation: rise 0.9s ease both;
}

.brand-mark {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--orange);
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.65rem, 3.4vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 18ch;
}

.hero-lead {
  margin: 0 0 1.6rem;
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 38ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  margin-top: 2rem;
  animation: rise 1s 0.15s ease both;
}

.hero-frame {
  width: min(1140px, calc(100% - 1rem));
  margin: 0 auto;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 107, 0, 0.15);
  border-bottom: 0;
  background: #0f1115;
  transform: perspective(1400px) rotateX(4deg);
  transform-origin: center bottom;
}

.hero-frame img {
  width: 100%;
  display: block;
}

/* Trust */
.trust {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  padding: 1.35rem 0;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.trust-item strong {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.trust-item span {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-head {
  max-width: 560px;
  margin-bottom: 2.75rem;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* Features — editorial, not card grid clutter */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem 1.75rem;
}

.feature {
  padding-top: 1.25rem;
  border-top: 2px solid var(--orange);
}

.feature-icon {
  width: 36px;
  height: 36px;
  color: var(--orange);
  margin-bottom: 0.85rem;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature h3 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* Interactive app shell */
.demo-section {
  background:
    linear-gradient(180deg, rgba(255, 107, 0, 0.04), transparent 30%),
    #FFF;
}

.app-shell {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: 520px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #E8E0D8;
  background: #F4F6F8;
}

.app-sidebar {
  background: var(--sidebar);
  color: #C9CDD4;
  padding: 1.1rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.app-brand {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  color: #fff;
  padding: 0.35rem 0.4rem;
}

.app-brand img {
  border-radius: 7px;
}

.app-brand strong {
  display: block;
  font-size: 0.95rem;
}

.app-brand small {
  display: block;
  font-size: 0.72rem;
  color: #8B909A;
}

.app-branch {
  background: #22252C;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font-size: 0.85rem;
  color: #fff;
}

.app-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.app-nav button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #B4B9C2;
  text-align: left;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}

.app-nav button:hover {
  background: #22252C;
  color: #fff;
}

.app-nav button.is-active {
  background: var(--orange);
  color: #fff;
}

.app-license {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  background: #22252C;
  border-radius: 10px;
  padding: 0.7rem;
  font-size: 0.8rem;
}

.app-license .dot {
  width: 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: 50%;
  background: #3DDC97;
  box-shadow: 0 0 0 3px rgba(61, 220, 151, 0.2);
}

.app-license strong {
  display: block;
  color: #fff;
}

.app-license small {
  color: #8B909A;
}

.app-main {
  padding: 1.35rem 1.5rem 1.5rem;
  overflow: auto;
}

.app-panel[hidden] {
  display: none !important;
}

.app-panel {
  animation: fadePanel 0.35s ease;
}

.app-title {
  margin-bottom: 1.15rem;
}

.app-title.row-between {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.app-title h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.app-title p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.stat {
  background: var(--white);
  border: 1px solid #E8ECF0;
  border-radius: 12px;
  padding: 0.9rem;
}

.stat span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.stat strong {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.stat.warn strong {
  color: #D9480F;
}

.panel-split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0.75rem;
}

.mini-chart,
.mini-list {
  background: var(--white);
  border: 1px solid #E8ECF0;
  border-radius: 12px;
  padding: 1rem;
}

.mini-chart-head {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  height: 120px;
}

.bars span {
  flex: 1;
  background: linear-gradient(180deg, var(--orange), #FF9A4D);
  border-radius: 6px 6px 2px 2px;
  min-height: 12px;
  opacity: 0.85;
  transition: height 0.6s ease;
}

.mini-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mini-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid #F0F2F4;
  font-size: 0.9rem;
}

.mini-list li:last-child {
  border-bottom: 0;
}

.mini-list b {
  color: #D9480F;
  font-weight: 600;
}

.app-btn {
  appearance: none;
  border: 0;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  padding: 0.55rem 0.95rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.app-btn:hover {
  background: var(--orange-deep);
}

.app-btn-block {
  width: 100%;
  padding: 0.85rem;
  margin-top: 0.75rem;
}

.table-wrap {
  background: var(--white);
  border: 1px solid #E8ECF0;
  border-radius: 12px;
  overflow: auto;
}

.app-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.app-table th,
.app-table td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid #F0F2F4;
}

.app-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: #FAFBFC;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.timeline li {
  background: var(--white);
  border: 1px solid #E8ECF0;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.92rem;
}

.timeline .tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-soft);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  text-align: center;
}

.cari-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.cari-card {
  background: var(--white);
  border: 1px solid #E8ECF0;
  border-radius: 12px;
  padding: 1rem;
}

.cari-card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.cari-card .bal {
  color: #D9480F;
  font-weight: 700;
  font-size: 1.15rem;
}

.badge {
  background: #E8F1FF;
  color: #1D4ED8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
}

.sale-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1rem;
}

.field {
  display: block;
  margin-bottom: 0.85rem;
}

.field > span {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.field select,
.field input,
.cta-form input {
  width: 100%;
  border: 1px solid #DDE2E8;
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.field select:focus,
.field input:focus,
.cta-form input:focus {
  border-color: var(--orange);
}

.search-row {
  display: flex;
  gap: 0.5rem;
}

.cart {
  background: var(--white);
  border: 1px solid #E8ECF0;
  border-radius: 12px;
  padding: 0.85rem;
  min-height: 140px;
}

.cart-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid #F0F2F4;
  font-size: 0.9rem;
}

.cart-item:last-child {
  border-bottom: 0;
}

.sale-summary {
  background: var(--white);
  border: 1px solid #E8ECF0;
  border-radius: 12px;
  padding: 1.1rem;
  align-self: start;
}

.sale-summary h4 {
  margin: 0 0 1rem;
  font-family: var(--display);
}

.sum-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.sum-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 1rem 0 0.25rem;
  padding-top: 0.85rem;
  border-top: 1px solid #F0F2F4;
}

.sum-total strong {
  color: var(--orange);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.sale-hint {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

.report-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.report {
  background: var(--white);
  border: 1px solid #E8ECF0;
  border-radius: 12px;
  padding: 1.1rem;
}

.report span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}

.report strong {
  display: block;
  font-size: 1.45rem;
  margin: 0.35rem 0;
  letter-spacing: -0.03em;
}

.report small {
  color: var(--ink-soft);
}

.report-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.demo-foot {
  text-align: center;
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
}

.demo-foot a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Screens */
.screen-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.screen-tabs button {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.2s;
}

.screen-tabs button.is-active,
.screen-tabs button:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.screen-stage {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #111;
}

.screen-zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.screen-zoom img {
  width: 100%;
}

/* Pricing */
.pricing {
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(255, 107, 0, 0.1), transparent 70%),
    var(--paper);
}

.billing-toggle {
  display: inline-flex;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem;
  margin-bottom: 2rem;
  gap: 0.2rem;
}

.billing-toggle button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  color: var(--muted);
}

.billing-toggle button.is-active {
  background: var(--ink);
  color: #fff;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}

.price-plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.price-plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.08);
}

.price-plan.is-featured {
  border-color: transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(160deg, var(--orange), #FFB070) border-box;
  border: 2px solid transparent;
  box-shadow: 0 20px 50px rgba(255, 107, 0, 0.18);
  transform: scale(1.03);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

.price-plan h3 {
  margin: 0.4rem 0 0.35rem;
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.plan-desc {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
  min-height: 2.6em;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.plan-price strong {
  font-family: var(--display);
  font-size: 2.6rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.plan-price span {
  color: var(--muted);
  font-weight: 600;
}

.price-plan ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
}

.price-plan li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.4rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-bottom: 1px solid #F5F0EB;
}

.price-plan li:last-child {
  border-bottom: 0;
}

.price-plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.price-note {
  margin: 1.5rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.price-note a {
  color: var(--orange);
  font-weight: 600;
}

/* Platforms */
.platform-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.platform {
  display: block;
  padding: 1.15rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 0.2s, transform 0.2s;
}

.platform:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.platform strong {
  display: block;
  font-family: var(--display);
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.platform span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* CTA */
.cta-section {
  padding-top: 2rem;
}

.cta-box {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2rem;
  background:
    linear-gradient(135deg, #FF6B00 0%, #FF8A2B 45%, #E24E00 100%);
  color: #fff;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 24px 60px rgba(255, 107, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -80px;
  bottom: -100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.cta-copy,
.cta-form {
  position: relative;
  z-index: 1;
}

.cta-copy h2 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.cta-copy p {
  margin: 0 0 1.5rem;
  opacity: 0.95;
  max-width: 40ch;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-form {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  padding: 1.35rem;
}

.cta-form h3 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: 1.2rem;
}

.cta-form label {
  display: block;
  margin-bottom: 0.75rem;
}

.cta-form label span {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  opacity: 0.9;
}

.cta-form input {
  border: 0;
}

.form-ok {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
}

/* FAQ */
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--display);
  letter-spacing: -0.02em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--orange);
  font-size: 1.3rem;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 2rem;
  background: #FFF;
}

.footer-inner {
  display: grid;
  gap: 0.75rem;
}

.footer-inner > p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--orange);
  font-weight: 600;
}

.copy {
  font-size: 0.85rem !important;
  margin-top: 0.5rem !important;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 10, 12, 0.88);
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox img {
  max-height: min(88vh, 900px);
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  background: var(--ink);
  color: #fff;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.toast[hidden] {
  display: none !important;
}

/* Animations */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadePanel {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 980px) {
  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(255, 252, 249, 0.98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.85rem;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions .btn-ghost {
    display: none;
  }

  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid,
  .price-grid,
  .platform-row {
    grid-template-columns: 1fr 1fr;
  }

  .price-plan.is-featured {
    transform: none;
  }

  .app-shell {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    gap: 0.65rem;
  }

  .app-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .app-nav button {
    font-size: 0.8rem;
    padding: 0.5rem 0.65rem;
  }

  .stat-row,
  .panel-split,
  .sale-layout,
  .report-cards,
  .cari-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .timeline li {
    grid-template-columns: 1fr;
  }

  .hero-frame {
    transform: none;
    border-radius: 14px 14px 0 0;
  }
}

@media (max-width: 640px) {
  .feature-grid,
  .price-grid,
  .platform-row,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.75rem 0;
  }

  .cta-box {
    padding: 1.5rem;
  }

  .brand-mark {
    font-size: 2.6rem;
  }

  .header-actions .btn-primary {
    padding: 0.55rem 0.9rem;
    font-size: 0.85rem;
  }
}
