:root {
  /* Core brand */
  --brand: #133080;
  --brand-dark: #133080;
  --brand-darker: #133080;
  --brand-light: #7f9cff;
  --brand-bg: #f0f7ff;
  --brand-muted: rgba(19, 48, 128, .1);

  /* Grays */
  --gray-950: #0a0a0a;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;

  /* Semantic */
  --text-primary: var(--gray-900);
  --text-secondary: var(--gray-600);
  --text-muted: var(--gray-400);
  --border: var(--gray-200);
  --surface: var(--white);
  --surface-muted: var(--gray-50);

  /* Sections */
  --section-blue: var(--brand);
  --section-soft: #fdf6ec;
  /* warm peach-ish like the reference's pink section */

  /* Typography */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .10), 0 2px 6px rgba(0, 0, 0, .06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .12), 0 4px 12px rgba(0, 0, 0, .06);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, .14), 0 8px 24px rgba(0, 0, 0, .08);
  --shadow-brand: 0 8px 32px rgba(19, 48, 128, .15);

  /* Transitions */
  --t-fast: .15s ease;
  --t-base: .25s ease;
  --t-slow: .4s ease;

  /* Layout */
  --header-h: 70px;
  --container: 1200px;
}

/* ─── Base ─────────────────────────────── */
html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
}

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

/* ─── Section backgrounds ───────────────── */
.section--white {
  background: var(--white);
}

.section--gray {
  background: var(--gray-50);
}

.section--blue {
  background: var(--brand);
}

.section--soft {
  background: var(--section-soft);
}

.section--brand-bg {
  background: var(--brand-bg);
}

body.no-scroll {
  overflow: hidden;
}

section {
  padding: 96px 0;
}

/* ─── Section tag ────────────────────────── */
.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-darker);
  background: transparent;
  border: 1px solid var(--brand-light);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section__tag--dark {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: #c99742;
  margin-bottom: 16px;
}

.section__title--center {
  text-align: center;
}

.section__title--dark {
  color: var(--white);
}

.section__title em {
  font-style: normal;
  color: var(--brand-darker);
}

.section__desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section__desc--dark {
  color: rgba(255, 255, 255, 0.8);
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 11px 24px;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  transition: background var(--t-base), color var(--t-base),
    border-color var(--t-base), box-shadow var(--t-base),
    transform var(--t-fast);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

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

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.btn--primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--gray-900);
  border-color: var(--gray-300);
}

.btn--outline:hover {
  border-color: var(--brand);
  color: var(--white);
  background: var(--brand);
}

.btn--dark {
  background: var(--gray-900);
  color: var(--white);
  border-color: var(--gray-900);
}

.btn--dark:hover {
  background: #000;
  border-color: #000;
}

.btn--dark-outline {
  background: transparent;
  color: var(--gray-900);
  border-color: var(--gray-900);
  border-width: 2px;
}

.btn--dark-outline:hover {
  background: var(--gray-900);
  color: var(--white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--gray-900);
  border-color: var(--gray-400);
}

.btn--outline-dark:hover {
  background: rgba(0, 0, 0, .06);
  border-color: var(--gray-700);
}

.btn--ghost {
  background: transparent;
  color: var(--gray-700);
  border-color: transparent;
}

.btn--ghost:hover {
  color: var(--gray-900);
  background: var(--gray-100);
}

.btn--lg {
  font-size: 16px;
  padding: 14px 32px;
}

.btn--full {
  width: 100%;
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--brand);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  transition: background var(--t-slow), box-shadow var(--t-slow);
}

.header.scrolled {
  background: rgba(19, 48, 128, 0.95);
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo__icon {
  font-size: 22px;
}

.logo__text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}

.logo__text strong {
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast);
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header .btn--dark-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.header .btn--dark-outline:hover {
  background: var(--white);
  color: var(--brand);
  border-color: var(--white);
}

.header .btn--dark {
  background: var(--white);
  color: var(--brand);
  border-color: var(--white);
}

.header .btn--dark:hover {
  background: var(--brand-light);
  color: var(--white);
  border-color: var(--brand-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  background: var(--brand);
  padding-top: var(--header-h);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}





@keyframes hero-float {

  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(20px, -30px);
  }

  66% {
    transform: translate(-15px, 20px);
  }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 40px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .4);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.tag__dot {
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__title em {
  font-style: normal;
  position: relative;
}

.hero__title em::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
}

.hero__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero .btn--dark-outline,
.section--blue .btn--dark-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn--dark-outline:hover,
.section--blue .btn--dark-outline:hover {
  background: var(--white);
  color: var(--brand);
  border-color: var(--white);
}

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

.trust__stars {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--white);
  font-weight: 600;
}

.trust__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* Hero Trust Bar */
.hero__trustbar {
  background: rgba(255, 255, 255, .05);
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 20px 0;
  margin-top: 40px;
}

.trustbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trustbar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.trustbar__num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.trustbar__lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.trustbar__sep {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, .2);
}

/* ─── Dashboard Mockup ─── */
.hero__visual {
  position: relative;
}

.mockup {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.mockup--main {
  animation: mockup-float 6s ease-in-out infinite;
}

@keyframes mockup-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.mockup__bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.mockup__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup__bar span:nth-child(1) {
  background: #ff5f57;
}

.mockup__bar span:nth-child(2) {
  background: #fec030;
}

.mockup__bar span:nth-child(3) {
  background: #28c840;
}

.mockup__body {
  display: flex;
  min-height: 320px;
}

.mockup__sidebar {
  width: 48px;
  background: var(--gray-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
}

.sb__logo {
  font-size: 20px;
  margin-bottom: 6px;
}

.sb__item {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--t-fast);
  opacity: .6;
}

.sb__item--active {
  background: var(--brand);
  opacity: 1;
}

.sb__item:hover {
  opacity: 1;
  background: rgba(255, 255, 255, .1);
}

.mockup__main {
  flex: 1;
  padding: 16px;
  overflow: hidden;
}

.mdb__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.mdb__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.mdb__date {
  font-size: 11px;
  color: var(--gray-400);
}

.mdb__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.mdb__metric {
  background: var(--gray-50);
  border-radius: var(--r-sm);
  padding: 10px;
  text-align: center;
}

.mdb__metric--accent {
  background: var(--brand-bg);
}

.mdb__metric-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}

.mdb__metric-lbl {
  font-size: 10px;
  color: var(--gray-400);
  margin-top: 2px;
}

.mdb__chart {
  margin-bottom: 14px;
}

.mdb__chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 56px;
}

.mdb__bar {
  flex: 1;
  height: var(--h);
  background: var(--gray-200);
  border-radius: 3px 3px 0 0;
  transition: height .3s;
}

.mdb__bar--active {
  background: var(--brand);
}

.mdb__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mdb__row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  background: var(--gray-50);
  border-radius: 6px;
}

.mdb__av {
  width: 24px;
  height: 24px;
  background: var(--brand-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--brand-darker);
  flex-shrink: 0;
}

.mdb__name {
  font-size: 11px;
  font-weight: 600;
  flex: 1;
}

.mdb__belt {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--white);
}

.mdb__belt--black {
  background: #111;
}

.mdb__belt--purple {
  background: #8b5cf6;
}

.mdb__belt--blue {
  background: #3b82f6;
}

.mdb__status {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.mdb__status--ok {
  background: var(--brand-bg);
  color: #0369a1;
}

.mdb__status--warn {
  background: #fef9c3;
  color: #854d0e;
}

/* Phone Mockup */
.mockup--phone {
  position: absolute;
  bottom: -20px;
  right: -30px;
  width: 140px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  animation: mockup-float 7s ease-in-out infinite 1s;
}

.phone__screen {
  background: var(--gray-900);
  padding: 12px;
}

.phone__top {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: var(--white);
  margin-bottom: 10px;
}

.phone__card {
  background: var(--brand);
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 8px;
}

.phone__greeting {
  font-size: 9px;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.phone__val {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
}

.phone__lbl {
  font-size: 8px;
  color: var(--gray-700);
}

.phone__row {
  margin-bottom: 8px;
}

.phone__pill {
  display: inline-flex;
  font-size: 8px;
  font-weight: 600;
  background: var(--brand-bg);
  color: var(--brand);
  padding: 2px 6px;
  border-radius: 4px;
}

.phone__pill--green {
  background: var(--brand-bg);
  color: var(--brand);
}

.phone__chart-mini {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 30px;
}

.pcm__bar {
  flex: 1;
  height: var(--h);
  background: rgba(255, 255, 255, .15);
  border-radius: 2px 2px 0 0;
}

.pcm__bar--active {
  background: var(--brand);
}

/* Notif cards */
.notif {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  border-radius: var(--r-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  min-width: 160px;
}

.notif--1 {
  top: 20px;
  right: -20px;
  animation: notif-float 5s ease-in-out infinite 2s;
}

.notif--2 {
  bottom: 60px;
  left: -20px;
  animation: notif-float 6s ease-in-out infinite 0.5s;
}

@keyframes notif-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.notif__icon {
  font-size: 24px;
}

.notif__title {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

.notif__sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════════════
   SIMPLE SECTION
   ═══════════════════════════════════════════ */
.simple__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Visual card */
.visual__card {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  position: relative;
}

.visual__card--big {
  animation: mockup-float 7s ease-in-out infinite 0.5s;
}

.vc__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.vc__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.vc__dot--accent {
  background: var(--brand);
}

.vc__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-700);
}

.vc__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

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

.vc__av {
  width: 36px;
  height: 36px;
  background: var(--brand-bg);
  color: var(--brand-darker);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.vc__info {
  flex: 1;
}

.vc__name {
  font-size: 13px;
  font-weight: 600;
}

.vc__meta {
  font-size: 11px;
  color: var(--gray-400);
}

.vc__tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}

.vc__tag--green {
  background: var(--brand-bg);
  color: #0369a1;
}

.vc__tag--yellow {
  background: #fef9c3;
  color: #854d0e;
}

.vc__footer {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.vc__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.vc__stat-val {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-darker);
}

.vc__stat-lbl {
  font-size: 11px;
  color: var(--gray-400);
}

.visual__badge--float {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--brand);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  animation: notif-float 4s ease-in-out infinite;
}

.visual__badge--float span {
  font-size: 22px;
}

.visual__badge--float strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

.visual__badge--float>div>span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

/* Simple steps */
.simple__steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0 36px;
}

.sstep {
  display: flex;
  gap: 16px;
}

.sstep__num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  padding-top: 2px;
}

.sstep__content h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.sstep__content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   FOR ALL
   ═══════════════════════════════════════════ */
.forall__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.forall__card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow var(--t-base), transform var(--t-base), border-color var(--t-base);
}

.forall__card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--brand-light);
}

.forall__avatar {
  margin-bottom: 20px;
}

.av__circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto;
}

.av__circle--1 {
  background: var(--brand-bg);
}

.av__circle--2 {
  background: var(--brand-bg);
}

.av__circle--3 {
  background: var(--brand-bg);
}

.forall__card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.forall__card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.forall__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-darker);
  transition: gap var(--t-fast);
}

.forall__link:hover {
  gap: 8px;
}

/* ═══════════════════════════════════════════
   FEATURES (GREEN BG)
   ═══════════════════════════════════════════ */
.features {
  padding: 0;
  overflow: hidden;
}

.features__header {
  text-align: center;
  margin-bottom: 72px;
  padding-top: 96px;
}

.feat__block {
  display: flex;
  align-items: center;
  height: 100vh;
  gap: 120px;
  padding: 0 48px;
  border-bottom: none;
  background: var(--brand);
  box-shadow: 0 0 0 100vmax var(--brand);
  clip-path: inset(0 -100vmax);
}

.feat__block>* {
  flex: 1;
}

.feat__block--right {
  direction: rtl;
}

.feat__block--right>* {
  direction: ltr;
}

/* Feature screen */
.feat__screen {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.fsc__bar {
  display: flex;
  gap: 5px;
  padding: 10px 14px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.fsc__bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.fsc__bar span:nth-child(1) {
  background: #ff5f57;
}

.fsc__bar span:nth-child(2) {
  background: #fec030;
}

.fsc__bar span:nth-child(3) {
  background: #28c840;
}

.fsc__body {
  padding: 20px;
}

.fsc__title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gray-700);
}

.fsc__metrics {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.fsc__metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fsc__val {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
}

.fsc__val--big {
  font-size: 20px;
  color: var(--brand-darker);
}

.fsc__lbl {
  font-size: 10px;
  color: var(--gray-400);
}

.fsc__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fsc__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  background: var(--gray-50);
  border-radius: 6px;
}

.fsc__av {
  width: 24px;
  height: 24px;
  background: var(--brand-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--brand-darker);
  flex-shrink: 0;
}

.fsc__iname {
  flex: 1;
  font-size: 11px;
  font-weight: 600;
}

.fsc__amount {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-700);
}

.fsc__paid {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

.fsc__paid--yes {
  background: var(--brand-bg);
  color: #0369a1;
}

.fsc__paid--no {
  background: #fee2e2;
  color: #991b1b;
}

/* Attendance */
.fsc__attendance {
  font-size: 11px;
}

.att__header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 4px;
  margin-bottom: 6px;
  font-weight: 700;
  color: var(--gray-500);
  font-size: 10px;
  padding: 0 4px;
}

.att__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 4px;
  align-items: center;
  padding: 5px 4px;
  border-radius: 5px;
  margin-bottom: 3px;
  background: var(--gray-50);
}

.att__name {
  font-weight: 600;
  font-size: 10px;
}

.att__check {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
}

.att__check--yes {
  background: var(--brand-bg);
  color: #0369a1;
}

.att__check--no {
  background: #fee2e2;
  color: #991b1b;
}

.att__pct {
  font-size: 10px;
  font-weight: 700;
}

/* Belt ladder */
.belt__ladder {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bl__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: var(--gray-50);
  border-radius: 8px;
  transition: background var(--t-fast);
}

.bl__item--active {
  background: var(--brand-bg);
}

.bl__strip {
  width: 28px;
  height: 8px;
  border-radius: 3px;
  flex-shrink: 0;
}

.bl__name {
  font-size: 11px;
  font-weight: 700;
  width: 50px;
}

.bl__count {
  font-size: 10px;
  color: var(--gray-400);
  width: 60px;
}

.bl__bar {
  flex: 1;
  height: 5px;
  background: var(--gray-200);
  border-radius: 3px;
  overflow: hidden;
}

.bl__fill {
  height: 100%;
  background: var(--gray-400);
  border-radius: 3px;
  transition: width .8s ease;
}

.bl__fill--accent {
  background: var(--brand);
}

/* Messages */
.fsc__msgs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fsc__msg {
  display: flex;
}

.fsc__msg--user {
  justify-content: flex-end;
}

.fsc__msg-bubble {
  background: var(--gray-100);
  border-radius: 12px 12px 12px 0;
  padding: 8px 12px;
  font-size: 11px;
  max-width: 85%;
  line-height: 1.5;
  color: var(--gray-700);
}

.fsc__msg-bubble--user {
  background: var(--brand);
  border-radius: 12px 12px 0 12px;
  color: var(--gray-900);
}

/* Tournament Brackets */
.fsc__bracket {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bracket__match {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
}

.match__header {
  background: var(--gray-100);
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
}

.match__players {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.match__player {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
}

.match__player--winner {
  background: var(--brand-bg);
  color: var(--brand-darker);
}

.match__score {
  font-weight: 700;
  font-size: 12px;
}

/* Feature text */
.feat__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: rgba(255, 255, 255, .15);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.feat__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.feat__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 32px;
}

.feat__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.feat__list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.feat__list li::first-letter {
  color: var(--white);
}

.feat__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.app__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, .08);
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-900);
  transition: background var(--t-fast);
}

.app__badge:hover {
  background: rgba(0, 0, 0, .14);
}

/* ═══════════════════════════════════════════
   INTEGRATIONS
   ═══════════════════════════════════════════ */
.int__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.int__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-lg);
  transition: box-shadow var(--t-base), transform var(--t-base), border-color var(--t-base);
}

.int__item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--brand-light);
}

.int__icon {
  font-size: 28px;
  flex-shrink: 0;
}

.int__name {
  font-size: 13px;
  font-weight: 700;
}

.int__desc {
  font-size: 12px;
  color: var(--gray-400);
}

/* ═══════════════════════════════════════════
   STATS / 97%
   ═══════════════════════════════════════════ */
.stats__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.stats__big-num {
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 16px;
}

.stats__big-num span {
  font-size: 60px;
  color: var(--brand-darker);
}

.stats__big-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.stats__stars {
  font-size: 18px;
  color: var(--brand-darker);
  margin-bottom: 20px;
}

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

.rev__av {
  width: 44px;
  height: 44px;
  background: var(--brand-bg);
  color: var(--brand-darker);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.rev__name {
  font-size: 14px;
  font-weight: 700;
}

.rev__role {
  font-size: 12px;
  color: var(--gray-400);
}

.stats__quotes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote__card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.quote__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.quote__card--featured {
  border-color: var(--brand-light);
  background: var(--brand-bg);
}

.quote__stars {
  font-size: 14px;
  color: var(--brand-darker);
  margin-bottom: 12px;
}

.quote__card>p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.quote__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote__av {
  width: 36px;
  height: 36px;
  background: var(--brand-bg);
  color: var(--brand-darker);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.quote__author strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.quote__author span {
  font-size: 11px;
  color: var(--gray-400);
}

.quote__small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ═══════════════════════════════════════════
   APP DOWNLOAD (soft bg)
   ═══════════════════════════════════════════ */
.appdownload__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tag__inline {
  display: inline-flex;
  background: var(--brand);
  color: var(--gray-900);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  vertical-align: middle;
  margin-left: 6px;
}

.appdownload__text p {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 16px 0 28px;
  line-height: 1.7;
}

.appdownload__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.adf__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
}

.adf__check {
  width: 20px;
  height: 20px;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-900);
  flex-shrink: 0;
}

.appdownload__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Phone mockup */
.phone__mockup {
  background: var(--gray-900);
  border-radius: 28px;
  padding: 12px;
  width: 240px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
  position: relative;
  animation: mockup-float 6s ease-in-out infinite;
}

.pm__notch {
  width: 60px;
  height: 6px;
  background: rgba(255, 255, 255, .1);
  border-radius: 3px;
  margin: 0 auto 12px;
}

.pm__screen {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
}

.pm__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 14px 10px;
  font-size: 13px;
  font-weight: 700;
  background: var(--brand);
  color: var(--gray-900);
}

.pm__welcome {
  font-size: 13px;
  font-weight: 600;
  padding: 12px 14px 8px;
}

.pm__card {
  margin: 0 14px 12px;
  border-radius: var(--r-md);
  padding: 14px;
}

.pm__card--accent {
  background: var(--brand);
}

.pm__card-label {
  font-size: 11px;
  color: var(--gray-700);
  margin-bottom: 4px;
}

.pm__card-val {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
}

.pm__card-sub {
  font-size: 10px;
  color: var(--gray-700);
  margin-top: 2px;
}

.pm__row-pills {
  display: flex;
  gap: 6px;
  padding: 0 14px 12px;
  flex-wrap: wrap;
}

.pm__pill {
  background: var(--brand-bg);
  color: var(--brand);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}

.pm__belt-progress {
  padding: 0 14px 14px;
}

.pm__bp-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.pm__bp-bar {
  background: var(--gray-200);
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 4px;
}

.pm__bp-fill {
  height: 100%;
  background: var(--brand);
  border-radius: 3px;
  transition: width 1.5s ease;
}

.pm__bp-pct {
  font-size: 10px;
  font-weight: 700;
  color: var(--brand-darker);
  text-align: right;
}

/* ═══════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════ */
.blog__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.blog__nav {
  display: flex;
  gap: 8px;
}

.blog__nav-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  background: transparent;
  cursor: pointer;
  transition: all var(--t-fast);
}

.blog__nav-btn--active,
.blog__nav-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--gray-900);
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog__card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.blog__card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog__thumb {
  height: 180px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.blog__thumb--1 {
  background: linear-gradient(135deg, var(--brand) 0%, #65a30d 100%);
}

.blog__thumb--2 {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.blog__thumb--3 {
  background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
}

.blog__category {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, .5);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}

.blog__body {
  padding: 22px;
}

.blog__meta {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.blog__body h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.blog__body p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-darker);
}

.blog__link:hover {
  gap: 8px;
}

.blog__cta {
  text-align: center;
  margin-top: 40px;
}

/* ═══════════════════════════════════════════
   PLANS
   ═══════════════════════════════════════════ */
.plans__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.plans__billing {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-400);
  cursor: pointer;
}

.plans__billing--active {
  color: var(--gray-900);
}

.plans__switch {
  position: relative;
  width: 46px;
  height: 24px;
}

.plans__switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.plans__slider {
  position: absolute;
  inset: 0;
  background: var(--gray-300);
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--t-base);
}

.plans__slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--t-base);
}

.plans__switch input:checked+.plans__slider {
  background: var(--brand);
}

.plans__switch input:checked+.plans__slider::before {
  transform: translateX(22px);
}

.plans__save {
  background: var(--brand);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 4px;
}

.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.stats {
  background: var(--white);
  padding-top: 200px;
  padding-bottom: 96px;
}

.plan {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.plan:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.plan--featured {
  border-color: var(--brand);
  position: relative;
  box-shadow: 0 0 0 4px var(--brand-muted);
}

.plan__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.plan__price {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 6px;
}

.plan__currency {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-600);
  padding-bottom: 8px;
}

.plan__value {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  color: var(--gray-900);
  transition: all .4s;
}

.plan__period {
  font-size: 14px;
  color: var(--gray-400);
  padding-bottom: 8px;
}

.plan__desc {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.5;
}

.plan .btn {
  margin-bottom: 28px;
}

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

.plan__feat {
  font-size: 13px;
  padding-left: 4px;
}

.plan__feat--yes {
  color: var(--gray-700);
}

.plan__feat--no {
  color: var(--gray-300);
  text-decoration: line-through;
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.faq__left {
  position: sticky;
  top: 100px;
}

.faq__left .section__title {
  margin-bottom: 12px;
}

.faq__left p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-base);
}

.faq__item.open {
  border-color: var(--brand);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  transition: background var(--t-fast);
}

.faq__question:hover {
  background: var(--gray-50);
}

.faq__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform var(--t-base);
}

.faq__item.open .faq__question {
  background: var(--brand-bg);
}

.faq__item.open .faq__icon {
  transform: rotate(180deg);
  color: var(--brand-darker);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq__item.open .faq__answer {
  max-height: 200px;
}

.faq__answer p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--brand);
  color: rgba(255, 255, 255, 0.8);
  padding: 72px 0 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer__brand .logo__text {
  color: var(--white);
}

.footer__brand>p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 14px;
  margin-bottom: 22px;
  line-height: 1.7;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.social__link {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}

.social__link:hover {
  background: var(--white);
  color: var(--brand);
  border-color: var(--white);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 18px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  transition: color var(--t-fast);
}

.footer__col a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__oss {
  font-family: var(--font-display);
  font-size: 18px !important;
  color: var(--white) !important;
  font-weight: 700;
  letter-spacing: 3px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 60px;
  }

  .hero__visual {
    display: none;
  }

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

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

  .feat__block {
    flex-direction: column;
    text-align: center;
    height: auto;
    min-height: none;
    padding: 80px 0;
    gap: 48px;
  }

  .feat__block>* {
    width: 100%;
    flex: none;
  }

  .feat__text {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .feat__visual {
    order: 2;
  }

  .feat__block--right {
    direction: ltr;
  }

  .feat__title {
    font-size: 28px;
  }

  .feat__desc {
    max-width: 100%;
  }

  .feat__list {
    text-align: left;
    align-items: flex-start;
  }

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

  .stats__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

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

  .plans__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .faq__left {
    position: static;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  :root {
    --container: 100%;
  }

  section {
    padding: 64px 0;
  }

  .nav {
    display: none;
  }

  .header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .header__actions .btn:last-child {
    display: none;
  }

  /* Hide Teste Grátis on mobile */
  .hamburger {
    display: none !important;
  }

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

  .feat__block {
    gap: 40px;
  }

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

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

  .blog__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .trustbar__inner {
    gap: 24px;
  }

  .trustbar__sep {
    display: none;
  }

  .stats__big-num {
    font-size: 72px;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}