/* =============================================
   ROPSYS LANDING — STYLES
   ============================================= */

:root {
  --color-primary: #0C2340;
  --color-primary-light: #163A5F;
  --color-primary-dark: #081828;
  --color-accent: #0D9488;
  --color-accent-light: #14B8A6;
  --color-accent-dark: #0F766E;
  --color-accent-glow: rgba(13, 148, 136, 0.12);
  --color-bg: #FFFFFF;
  --color-bg-soft: #F8FAFC;
  --color-bg-muted: #F1F5F9;
  --color-text: #0F172A;
  --color-text-muted: #64748B;
  --color-text-light: #94A3B8;
  --color-border: #E2E8F0;
  --color-border-light: #F1F5F9;
  --color-danger: #EF4444;
  --color-warning: #F59E0B;
  --color-success: #10B981;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -4px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.07), 0 8px 10px -6px rgba(0, 0, 0, 0.03);

  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
}

/* === RESET === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 800;
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--color-bg-soft);
}

.section-muted {
  background: var(--color-bg-muted);
}

/* === TYPOGRAPHY === */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 640px;
  line-height: 1.7;
  font-weight: 400;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.4);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--color-bg);
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

.btn-white {
  background: #FFFFFF;
  color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--transition-base);
}

.navbar.scrolled {
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.navbar-logo span {
  color: var(--color-accent);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.navbar-links a:hover {
  color: var(--color-text);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-cta .btn {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.mobile-menu a:hover {
  background: var(--color-bg-soft);
}

.mobile-menu .btn {
  margin-top: 8px;
  text-align: center;
}

/* === HERO === */
.hero {
  padding-top: 160px;
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
  background: var(--color-bg-soft);
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, var(--color-accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 40%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(12, 35, 64, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-badge .flag {
  font-size: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--color-primary);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  color: var(--color-accent);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero Dashboard Illustration */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.dashboard-mockup {
  position: relative;
  width: 92%;
  margin-left: auto;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform var(--transition-slow);
}

.dashboard-mockup:hover {
  transform: perspective(1200px) rotateY(-1deg) rotateX(1deg);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--color-bg-muted);
  border-bottom: 1px solid var(--color-border);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #EF4444; }
.mockup-dots span:nth-child(2) { background: #F59E0B; }
.mockup-dots span:nth-child(3) { background: #22C55E; }

.mockup-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.mockup-body {
  display: flex;
  min-height: 200px;
}

.mockup-sidebar {
  width: 48px;
  background: var(--color-primary);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-nav-item {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
}

.mockup-nav-item.active {
  background: var(--color-accent);
}

.mockup-content {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-stat-row {
  display: flex;
  gap: 10px;
}

.mockup-stat {
  flex: 1;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border-light);
}

.mockup-stat:first-child {
  background: linear-gradient(135deg, var(--color-accent-glow), var(--color-bg-soft));
  border-color: rgba(13, 148, 136, 0.15);
}

.mockup-chart {
  flex: 1;
  min-height: 60px;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(90deg, transparent 49.5%, var(--color-border-light) 49.5%, var(--color-border-light) 50.5%, transparent 50.5%) 0 0 / 20% 100%,
    linear-gradient(0deg, var(--color-bg-soft) 0%, var(--color-accent-glow) 100%);
  border: 1px solid var(--color-border-light);
}

.mockup-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mockup-list-item {
  height: 24px;
  border-radius: 4px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border-light);
}

.mockup-list-item:first-child {
  width: 85%;
}

.mockup-list-item:nth-child(2) {
  width: 70%;
}

.mockup-list-item:nth-child(3) {
  width: 55%;
}

/* Floating badges around dashboard */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
  white-space: nowrap;
}

.floating-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.fb-1 { top: 5%; left: 0%; animation-delay: 0s; }
.fb-2 { top: 0%; right: 18%; animation-delay: 0.6s; }
.fb-3 { bottom: 28%; left: -4%; animation-delay: 1.2s; }
.fb-4 { top: 40%; right: 0%; animation-delay: 0.3s; }
.fb-5 { bottom: 6%; left: 10%; animation-delay: 0.9s; }
.fb-6 { bottom: 10%; right: 8%; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* === LOGO BAR === */
.logo-bar {
  padding: 48px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.logo-bar-label {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.logo-bar-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-light);
  font-size: 0.9375rem;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity var(--transition-base);
}

.logo-bar-item:hover {
  opacity: 1;
}

.logo-bar-item img {
  height: 20px;
  width: auto;
  filter: grayscale(1) opacity(0.4);
}

/* === PROBLEM SECTION === */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.problem-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition-base);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border);
}

.problem-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.problem-card-icon svg {
  width: 24px;
  height: 24px;
}

.problem-card-icon.red {
  background: #FEF2F2;
  color: var(--color-danger);
}

.problem-card-icon.yellow {
  background: #FFFBEB;
  color: var(--color-warning);
}

.problem-card-icon.gray {
  background: var(--color-bg-muted);
  color: var(--color-text-muted);
}

.problem-card h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* === SOLUTION SECTION === */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.solution-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition-base);
}

.solution-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent), var(--shadow-md);
  transform: translateY(-2px);
}

.solution-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-accent-glow);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.solution-card-icon svg {
  width: 22px;
  height: 22px;
}

.solution-card h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.solution-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* === CAROUSEL === */
.carousel-section {
  overflow: hidden;
  padding: 96px 0;
}

.carousel-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}

.carousel-track-container {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-left 40s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-track-reverse {
  animation: scroll-right 40s linear infinite;
}

.carousel-track-reverse:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.app-card {
  flex-shrink: 0;
  width: 280px;
  padding: 24px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition-base);
  cursor: default;
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--app-color, var(--color-accent));
}

.app-card-logo {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--color-bg-soft);
  transition: background var(--transition-base);
}

.app-card:hover .app-card-logo {
  background: color-mix(in srgb, var(--app-color, var(--color-accent)) 12%, white);
}

.app-card-logo img {
  height: 26px;
  width: 26px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.6);
  transition: filter var(--transition-base);
}

.app-card:hover .app-card-logo img {
  filter: none;
}

.app-card-logo svg {
  width: 24px;
  height: 24px;
  color: #9CA3AF;
  transition: color var(--transition-base);
}

.app-card:hover .app-card-logo svg {
  color: var(--app-color, var(--color-accent));
}

.app-card-info h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
  transition: color var(--transition-base);
}

.app-card:hover .app-card-info h4 {
  color: var(--app-color, var(--color-accent));
}

.app-card-info p {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  line-height: 1.45;
}

/* === COMPARISON === */
.comparison-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.comp-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 4px;
}

.comp-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 24px;
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  font-size: 0.9375rem;
}

.comp-row:first-child {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.comp-tool {
  font-weight: 600;
  color: var(--color-text);
}

.comp-desc {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.comp-price {
  font-weight: 600;
  color: var(--color-text);
  text-align: right;
  white-space: nowrap;
}

.comp-total {
  background: var(--color-bg-muted);
  border-color: var(--color-border);
}

.comp-total .comp-tool {
  font-weight: 800;
  font-size: 1rem;
}

.comp-total .comp-price {
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--color-danger);
}

.comp-divider {
  text-align: center;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-light);
}

.comp-ropsys {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.comp-ropsys::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(13, 148, 136, 0.15) 100%);
}

.comp-ropsys > * {
  position: relative;
}

.comp-ropsys .comp-tool {
  color: #FFFFFF;
  font-size: 1.0625rem;
}

.comp-ropsys .comp-desc {
  color: rgba(255, 255, 255, 0.7);
}

.comp-ropsys .comp-price {
  color: var(--color-accent-light);
  font-size: 1.25rem;
  font-weight: 800;
}

.savings-badge {
  margin-top: 32px;
  text-align: center;
  padding: 20px 32px;
  background: linear-gradient(135deg, var(--color-accent-glow), rgba(13, 148, 136, 0.06));
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: var(--radius-lg);
}

.savings-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-accent-dark);
  margin-bottom: 4px;
}

.savings-badge span {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* === PRICING === */
.pricing-wrapper {
  max-width: 520px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--color-bg);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 0 4px var(--color-accent-glow), var(--shadow-xl);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-amount {
  margin-top: 16px;
  margin-bottom: 4px;
}

.pricing-amount .currency {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-muted);
  vertical-align: super;
}

.pricing-amount .price {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-amount .period {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.pricing-subtitle {
  font-size: 1rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 32px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.5;
}

.pricing-features li svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-note {
  margin-top: 20px;
  font-size: 0.8125rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* === SUPPORT === */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.support-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition-base);
}

.support-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.support-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.support-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.support-card-icon.ai {
  background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
}

.support-card-icon.human {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
}

.support-card h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
}

.support-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-card li {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.support-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.support-message {
  text-align: center;
  margin-top: 48px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-primary);
}

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--color-warning);
  font-size: 0.875rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text);
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

/* === FAQ === */
.faq-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--color-text-light);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--color-accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding-bottom: 22px;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* === FINAL CTA === */
.cta-final {
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(13, 148, 136, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-final-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-final h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-final p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-final-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-final-note {
  margin-top: 24px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

/* === FOOTER === */
.footer {
  background: var(--color-primary-dark);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
}

.footer-logo span {
  color: var(--color-accent);
}

.footer-tagline {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}

/* === MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  transform: translateY(20px) scale(0.97);
  transition: transform var(--transition-base);
  position: relative;
}

.modal-overlay.open .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--color-bg-soft);
  color: var(--color-text);
}

.modal-close svg {
  width: 20px;
  height: 20px;
}

.modal-content h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.modal-content p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
}

/* === SCROLL ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .navbar-links,
  .navbar-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-visual {
    max-width: 400px;
  }

  .floating-badge {
    font-size: 0.6875rem;
    padding: 6px 10px;
  }

  .logo-bar-list {
    gap: 24px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .comp-row {
    grid-template-columns: 1fr auto;
    padding: 12px 16px;
  }

  .comp-desc {
    display: none;
  }

  .comp-ropsys {
    grid-template-columns: 1fr auto;
  }

  .comp-ropsys .comp-desc {
    display: none;
  }

  .pricing-card {
    padding: 40px 28px;
  }

  .pricing-amount .price {
    font-size: 3rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-final-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-final-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .logo-bar-list {
    gap: 16px;
  }

  .logo-bar-item span {
    font-size: 0.8125rem;
  }

  .app-card {
    width: 240px;
    padding: 16px;
    gap: 12px;
  }

  .savings-badge strong {
    font-size: 1.25rem;
  }
}
