:root {
  --bg: #f3f7fc;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --surface-dark: #0f172a;
  --surface-dark-soft: #14213b;
  --ink: #0f172a;
  --muted: #5f6f86;
  --line: #d9e4ef;
  --line-strong: #c6d5e4;
  --primary: #235dff;
  --primary-dark: #173ea9;
  --primary-soft: #e9f0ff;
  --success: #0f9f73;
  --success-soft: #e2fbf2;
  --warning: #f59e0b;
  --warning-soft: #fff4d8;
  --danger: #ef4444;
  --shadow-sm: 0 12px 28px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 32px 80px rgba(15, 23, 42, 0.18);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(
      circle at top left,
      rgba(35, 93, 255, 0.08),
      transparent 24%
    ),
    linear-gradient(180deg, #f9fbff 0%, #f3f7fc 52%, #edf3f9 100%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(248, 251, 255, 0.94) 100%
  );
  border-top: 1px solid rgba(15, 23, 42, 0.04);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(35, 93, 255, 0.12);
  background: rgba(35, 93, 255, 0.06);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow.light {
  border-color: rgba(35, 93, 255, 0.12);
  background: rgba(35, 93, 255, 0.06);
  color: var(--primary-dark);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6ee7b7;
  box-shadow: 0 0 0 6px rgba(110, 231, 183, 0.18);
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 5.3rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3.25rem);
}

h3 {
  font-size: 1.12rem;
}

p.lead,
p.section-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 800;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
  white-space: nowrap;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%);
  box-shadow: 0 16px 36px rgba(35, 93, 255, 0.28);
}

@media (hover: hover) {
  .btn-primary:hover {
  box-shadow: 0 22px 46px rgba(35, 93, 255, 0.32);
}
}

.btn-secondary {
  color: var(--ink);
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.1);
}

@media (hover: hover) {
  .btn-secondary:hover {
  background: rgba(15, 23, 42, 0.08);
}
}

.btn-outline {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

@media (hover: hover) {
  .btn-outline:hover {
  border-color: rgba(35, 93, 255, 0.28);
  box-shadow: var(--shadow-sm);
}
}

.btn-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(35, 93, 255, 0.06);
  border: 1px solid rgba(35, 93, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.brand-mark img {
  width: 26px;
  height: 26px;
}

.brand-text {
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
  color: var(--ink);
}

.brand-text span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--ink);
}

.nav-links a.is-active::after,
@media (hover: hover) {
  .nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.04);
  color: var(--ink);
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu {
  display: none;
  padding: 0 0 18px;
}

.mobile-menu-panel {
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
}

.mobile-menu-links {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.mobile-menu-links a {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 700;
}

.mobile-menu-links a.is-active,
@media (hover: hover) {
  .mobile-menu-links a:hover {
  background: rgba(35, 93, 255, 0.06);
  color: var(--ink);
}
}

.hero-home,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(
      circle at top left,
      rgba(35, 93, 255, 0.08),
      transparent 40%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(15, 159, 115, 0.06),
      transparent 40%
    ),
    linear-gradient(180deg, #f3f7fc 0%, #ffffff 100%);
}

.hero-home {
  padding: 86px 0 72px;
}

.page-hero {
  padding: 74px 0 64px;
}

.hero-grid,
.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 40px;
  align-items: center;
}

.page-hero-grid {
  grid-template-columns: 1fr;
  max-width: 820px;
}

.hero-copy,
.page-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-copy p,
.page-copy p {
  color: var(--muted);
  font-size: 1.07rem;
  max-width: 660px;
}

.hero-copy strong,
.page-copy strong {
  color: var(--primary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-microcopy {
  color: var(--muted);
  font-size: 0.9rem;
}

.proof-row,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(35, 93, 255, 0.06);
  border: 1px solid rgba(35, 93, 255, 0.1);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.proof-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
}

.visual-frame {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow-lg);
}

.visual-frame.light {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border-color: rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-md);
}

.visual-frame-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 8px 18px;
}

.visual-frame-top span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
}

.visual-frame-top.dark span {
  color: var(--muted);
}

.visual-frame-top.light span {
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #059669;
}

.status-pill::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.14);
}

.visual-frame img {
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.floating-note {
  position: absolute;
  min-width: 180px;
  max-width: 240px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
}

.floating-note strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.floating-note span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.floating-note .note-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.floating-note .note-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.visuals-wrapper {
  position: relative;
}

.floating-note.top-left {
  top: 26px;
  left: -12px;
}

.floating-note.bottom-right {
  right: -8px;
  bottom: 24px;
}

.channel-bar {
  margin-top: -20px;
  position: relative;
  z-index: 2;
}

.channel-shell {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.channel-card {
  min-height: 108px;
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid #e6eef7;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.channel-card strong {
  font-size: 0.96rem;
}

.channel-card span {
  color: var(--muted);
  font-size: 0.84rem;
}

.channel-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 0.84rem;
  font-weight: 800;
}

.tone-whats {
  background: #dcfce7;
  color: #15803d;
}
.tone-insta {
  background: #fce7f3;
  color: #be185d;
}
.tone-face {
  background: #dbeafe;
  color: #1d4ed8;
}
.tone-mail {
  background: #fff4d8;
  color: #a16207;
}
.tone-web {
  background: #ede9fe;
  color: #6d28d9;
}
.tone-api {
  background: #dff8ef;
  color: #047857;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.feature-card,
.segment-card,
.info-card,
.pricing-card,
.faq-panel,
.step-card,
.metric-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.card,
.feature-card,
.segment-card,
.info-card,
.step-card,
.metric-card {
  padding: 26px;
}

.metric-card {
  min-height: 100%;
}

.metric-card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.metric-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.card-icon,
.feature-icon,
.segment-icon,
.metric-icon,
.info-icon,
.step-number {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary);
  background: linear-gradient(
    135deg,
    rgba(35, 93, 255, 0.12) 0%,
    rgba(35, 93, 255, 0.04) 100%
  );
}

.step-number {
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--surface-dark) 0%,
    var(--surface-dark-soft) 100%
  );
}

.card h3,
.feature-card h3,
.segment-card h3,
.info-card h3,
.step-card h3 {
  margin: 18px 0 10px;
}

.card p,
.feature-card p,
.segment-card p,
.info-card p,
.step-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.card-list,
.feature-list,
.segment-list,
.info-list,
.plain-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.card-list li,
.feature-list li,
.segment-list li,
.info-list li,
.plain-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.card-list li::before,
.feature-list li::before,
.segment-list li::before,
.info-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 34px;
  align-items: center;
}

.surface-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--shadow-sm);
}

.surface-panel.dark {
  background: linear-gradient(180deg, #0f172a 0%, #17233d 100%);
  border-color: rgba(141, 179, 255, 0.14);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.surface-panel.dark p,
.surface-panel.dark li,
.surface-panel.dark span {
  color: rgba(255, 255, 255, 0.76);
}

.surface-panel.dark .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.surface-panel .section-copy,
.surface-panel .lead {
  margin-top: 16px;
}

.stack-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.stack-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stack-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stack-bullet {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(141, 179, 255, 0.14);
  color: #8db3ff;
  font-size: 0.88rem;
  font-weight: 800;
}

.stack-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.96rem;
}

.stack-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}

.tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.showcase {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.showcase-main {
  grid-column: span 7;
  display: flex;
  flex-direction: column;
}

.showcase-main .visual-frame {
  flex: 1;
}

.showcase-side {
  grid-column: span 5;
  display: grid;
  gap: 16px;
}

.showcase-side > div {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.showcase-side .visual-frame {
  flex: 1;
  overflow: hidden;
}

.showcase-side .visual-frame img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.showcase-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
  flex-shrink: 0;
}

.showcase-caption strong {
  font-size: 0.95rem;
}

.showcase-caption span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

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

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

.comparison-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-sm);
}

.comparison-card.bad {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border-color: rgba(15, 23, 42, 0.08);
}

.comparison-card.good {
  background: linear-gradient(180deg, #f5fffb 0%, #eefcf6 100%);
  border-color: rgba(15, 159, 115, 0.18);
}

.comparison-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comparison-card.bad .comparison-kicker {
  background: #f7f9fd;
  color: #7a879d;
}

.comparison-card.good .comparison-kicker {
  background: #dff8ef;
  color: #0b7d5b;
}

.comparison-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.comparison-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.comparison-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.comparison-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.comparison-card.bad .comparison-list li::before {
  background: #f59e0b;
}

.comparison-card.good .comparison-list li::before {
  background: var(--success);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.step-card {
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-card h3 {
  font-size: 1.05rem;
  line-height: 1.2;
}

.step-card p {
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--primary-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.text-link::after {
  content: "→";
  font-size: 1rem;
}

.feature-group {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-sm);
}

.feature-group h3 {
  margin-bottom: 10px;
}

.feature-group p {
  color: var(--muted);
  font-size: 0.94rem;
}

.feature-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.mini-card {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e8eef6;
}

.mini-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.96rem;
}

.mini-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.segment-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.segment-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.segment-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.segment-card h3 {
  margin: 2px 0 0;
}

.segment-outcome {
  margin-top: auto;
  padding-top: 14px;
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.integration-shell {
  display: grid;
  gap: 20px;
}

.integration-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  align-items: stretch;
}

.integration-label {
  padding: 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #10203b 0%, #162949 100%);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.integration-label h3 {
  margin-bottom: 10px;
}

.integration-label p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

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

.integration-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-sm);
}

.integration-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.96rem;
}

.integration-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.intg-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.tone-ai {
  background: linear-gradient(135deg, #ede9fe 0%, #f5f3ff 100%);
  color: #7c3aed;
}
.tone-auto {
  background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
  color: #b45309;
}
.tone-google {
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
  color: #1d4ed8;
}
.tone-woo {
  background: linear-gradient(135deg, #ede9fe 0%, #faf5ff 100%);
  color: #9333ea;
}

.intg-brand {
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  object-fit: contain;
  flex-shrink: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pricing-grid.pricing-grid-6 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 32px 28px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--primary), #60a5fa);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card.featured {
  border-color: rgba(35, 93, 255, 0.22);
  box-shadow: 0 26px 60px rgba(35, 93, 255, 0.14);
  background: linear-gradient(
    180deg,
    rgba(35, 93, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.96) 40%
  );
}

.pricing-card.featured::before {
  opacity: 1;
}

.pricing-card.featured:hover {
  box-shadow: 0 30px 70px rgba(35, 93, 255, 0.18);
}

.pricing-card.featured {
  padding-top: 56px;
}

.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(35, 93, 255, 0.08);
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  margin-bottom: 6px;
  font-size: 1.3rem;
}

.pricing-card p {
  color: var(--muted);
  font-size: 0.88rem;
  min-height: 40px;
  line-height: 1.5;
}

.price {
  margin: 20px 0 24px;
  font-family: "Sora", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}

.pricing-grid-6 .price {
  font-size: 2.1rem;
}

.pricing-metrics {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.pricing-metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 8px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(35, 93, 255, 0.06) 0%,
    rgba(35, 93, 255, 0.02) 100%
  );
}

.pricing-metric strong {
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.pricing-metric span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-card-enterprise .pricing-metrics {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-card-enterprise .pricing-metric {
  background: rgba(96, 165, 250, 0.1);
}

.pricing-card-enterprise .pricing-metric strong {
  color: #60a5fa;
}

.pricing-card-enterprise .pricing-metric span {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-card-enterprise {
  background: linear-gradient(
    145deg,
    #0f172a 0%,
    #1a2744 50%,
    #0f172a 100%
  ) !important;
  border-color: rgba(96, 165, 250, 0.15) !important;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3);
}

.pricing-card-enterprise::before {
  background: linear-gradient(90deg, #60a5fa, #a78bfa) !important;
  opacity: 1 !important;
}

.pricing-card-enterprise:hover {
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.4);
}

.pricing-card-enterprise h3,
.pricing-card-enterprise .price {
  color: #fff;
}

.pricing-card-enterprise p,
.pricing-card-enterprise .pricing-list li {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-card-enterprise .pricing-list li::before {
  background: #60a5fa;
}

.pricing-card-enterprise .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.pricing-card-enterprise @media (hover: hover) {
  .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}
}

.price small {
  margin-left: 4px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: var(--muted);
}

.pricing-list {
  list-style: none;
  display: grid;
  gap: 12px;
  flex: 1;
  margin-bottom: 24px;
}

.pricing-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.pricing-note {
  margin-top: 26px;
  padding: 20px 22px;
  border-radius: 20px;
  background: #eef4ff;
  border: 1px solid #d3e0fb;
  color: var(--muted);
  font-size: 0.94rem;
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.comparison-table thead {
  background: #f3f7fc;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 700;
  min-width: 180px;
}

.comparison-table th {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}

.comparison-table td {
  color: var(--muted);
}

@media (hover: hover) {
  .comparison-table tbody tr:hover {
  background: rgba(35, 93, 255, 0.02);
}
}

.comparison-table .featured-col {
  background: rgba(35, 93, 255, 0.04);
  font-weight: 700;
  color: var(--ink);
}

.comparison-table thead .featured-col {
  background: rgba(35, 93, 255, 0.08);
  color: var(--primary);
}

.faq-shell {
  max-width: 920px;
  margin: 0 auto;
}

.faq-panel {
  padding: 8px 28px;
}

.faq-item {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
}

.faq-button span:first-child {
  max-width: 90%;
}

.faq-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--primary);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.faq-button[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: rgba(35, 93, 255, 0.06);
}

.faq-answer {
  display: none;
  padding-bottom: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-answer p + p {
  margin-top: 10px;
}

.faq-answer.is-open {
  display: block;
}

.cta-panel {
  padding: 56px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(141, 179, 255, 0.12);
  background:
    radial-gradient(
      circle at top right,
      rgba(141, 179, 255, 0.18),
      transparent 28%
    ),
    linear-gradient(180deg, #0d1729 0%, #111c31 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cta-panel .proof-pill {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.74);
  max-width: 760px;
  margin: 16px 0 28px;
}

.footer {
  padding: 40px 0 80px;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  padding-top: 26px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-copy {
  max-width: 440px;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 16px;
}

.footer-links {
  display: flex;
  gap: 42px;
  flex-wrap: wrap;
}

.footer-links strong {
  display: block;
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (hover: hover) {
  .footer-links a:hover {
  color: var(--primary);
}
}

.copyright {
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.84rem;
}

.float-wa {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.28);
  z-index: 90;
  transition: transform 0.2s ease;
}

@media (hover: hover) {
  .float-wa:hover {
  transform: scale(1.06);
}
}

.float-wa svg {
  width: 34px;
  height: 34px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1160px) {
  .grid-4,
  .pricing-grid,
  .pricing-grid.pricing-grid-6,
  .integration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .page-hero-grid,
  .split-section,
  .grid-2,
  .integration-row {
    grid-template-columns: 1fr;
  }

  .showcase {
    grid-template-columns: 1fr;
  }

  .showcase-main,
  .showcase-side {
    grid-column: auto;
  }

  .channel-shell {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .comparison-grid,
  .steps-grid,
  .faq-preview-grid {
    grid-template-columns: 1fr;
  }

  .floating-note.top-left,
  .floating-note.bottom-right {
    position: static;
    margin-top: 16px;
    max-width: none;
  }
}

@media (max-width: 1180px) {
  .nav-links,
  .nav .btn-primary {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .mobile-menu.is-open {
    display: block;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 48px 0;
  }
  .container {
    padding: 0 16px;
  }
  h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    word-break: break-word;
  }
  h2 {
    font-size: clamp(1.6rem, 6vw, 2rem);
    word-break: break-word;
  }
  .comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .comparison-table th, .comparison-table td {
    scroll-snap-align: start;
  }
  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
  }
  .footer-links a {
    padding: 8px 0;
    display: block;
  }


  .hero-home,
  .page-hero {
    padding-top: 52px;
  }

  .channel-shell,
  .grid-3,
  .grid-4,
  .pricing-grid,
  .pricing-grid.pricing-grid-6,
  .integration-grid,
  .list-columns,
  .feature-group-grid,
  .comparison-grid,
  .steps-grid,
  .faq-preview-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .cta-panel {
    padding: 36px 24px;
  }

  .footer-shell {
    flex-direction: column;
  }

  .pricing-card p {
    min-height: 0;
  }
}

/* Animations - Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-100 {
  transition-delay: 100ms;
}
.reveal.delay-200 {
  transition-delay: 200ms;
}
.reveal.delay-300 {
  transition-delay: 300ms;
}
