@import url('https://fonts.googleapis.com/css2?family=Condiment&family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Orbis Theme (Vũ Trụ) - Premium Dark Space Palette */
  --bg: #010828;          /* Deep space navy blue */
  --surface: rgba(255, 255, 255, 0.03); /* Translucent glassmorphism base */
  --surface-solid: #020c35;
  --brand: #6FFF00;       /* Bright Neon Green */
  --brand-light: rgba(111, 255, 0, 0.08);
  --brand-dark: #5ecc00;  /* Slightly darker neon green */
  --ink: #EFF4FF;         /* Light cream/off-white */
  --ink-light: rgba(239, 244, 255, 0.7); /* Muted cream text */
  --line: rgba(255, 255, 255, 0.08);     /* Thin glowing line */
  --accent: #6FFF00;
  --accent-light: rgba(111, 255, 0, 0.12);
  --accent-dark: #5ecc00;
  --green: #6FFF00;
  --green-light: rgba(111, 255, 0, 0.08);
  --green-dark: #6FFF00;
  
  /* Flutter App v2.0 Colors */
  --moodExcited: #FF8C94;
  --moodSmug: #B19CD9;
  --accentHoney: #E5A93B;

  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 16px 48px rgba(111, 255, 0, 0.15);
  --shadow-inset: inset 0 2px 4px rgba(255, 255, 255, 0.03);
  
  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  text-transform: uppercase;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--brand-dark);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
  position: relative;
  z-index: 5;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  background-color: var(--brand-light);
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(111, 255, 0, 0.2);
}

.section-header h2 {
  font-size: 36px;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 17px;
  color: var(--ink-light);
}

/* Video Background Overlay */
.video-bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  display: block;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
}

.video-bg-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
}

/* Gradient overlay on top of video backgrounds */
.gradient-overlay {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(1, 8, 40, 0.2) 0%, #010828 95%);
}

/* Cursive Accent Typography */
.cursive-text {
  display: inline-block;
  font-family: 'Condiment', cursive;
  color: var(--brand);
  text-transform: none;
  font-size: 1.4em;
  transform: rotate(-2deg);
  margin-left: 8px;
  letter-spacing: 0;
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--brand);
  color: #010828;
  box-shadow: 0 0 20px rgba(111, 255, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(111, 255, 0, 0.7);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.02);
  color: var(--ink);
  border: 1px solid var(--line);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.05);
}

.btn-accent {
  background-color: var(--brand);
  color: #010828;
  box-shadow: 0 0 20px rgba(111, 255, 0, 0.4);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(111, 255, 0, 0.7);
}

/* Header & Navigation */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(1, 8, 40, 0.8);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition-fast);
}

header.site-header.scrolled {
  padding: 4px 0;
  background-color: rgba(1, 8, 40, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}

.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(111, 255, 0, 0.15));
}

.logo-text {
  color: #ffffff; /* Đổi toàn bộ chữ NEKOTEN thành màu trắng để hiển thị rõ trên nền tối */
  /* Bạn có thể đổi sang #c5a059 nếu muốn đồng bộ màu vàng đồng của logo */
}

.logo-text span {
  color: inherit; /* Đồng bộ toàn bộ chữ NEKOTEN cùng một màu */
}

nav.main-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

nav.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-light);
}

nav.main-nav a:hover, nav.main-nav a.active {
  color: var(--accent);
}

/* Dark Glassmorphism effect helper */
.liquid-glass {
  background: rgba(255, 255, 255, 0.02) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
  position: relative;
  overflow: hidden;
}

.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.02) 100%) !important;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Apply dark theme container styles with solid/opaque panels for performance */
.usp-card, 
.module-card, 
.roi-card-inputs, 
.roi-res-card, 
.faq-item,
.comparison-wrapper,
.pet-game-demo,
.pet-screen {
  background: rgba(2, 12, 53, 0.85) !important; /* Semi-opaque dark space blue to prevent scroll lag over video */
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
  position: relative;
  overflow: hidden;
  will-change: transform;
  transform: translate3d(0, 0, 0); /* Promote to compositor layer to optimize scrolling */
  backface-visibility: hidden;
}

.usp-card::before, 
.module-card::before, 
.roi-card-inputs::before, 
.roi-res-card::before, 
.faq-item::before,
.comparison-wrapper::before,
.pet-game-demo::before,
.pet-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.02) 100%) !important;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Hero Section */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: flex-start;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--brand-light);
  color: var(--brand);
  font-size: 13.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(111, 255, 0, 0.2);
  margin-bottom: 20px;
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--brand);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
  100% { transform: scale(0.9); opacity: 1; }
}

.hero h1 {
  font-size: 56px;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -1px;
  font-weight: 800;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--brand);
}

.hero-desc {
  font-size: 18px;
  color: var(--ink-light);
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}

/* App Mockup Image Slider */
.mockup-slider-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.mockup-slider-container {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 571 / 1024; /* Adjusted to match the new 571x1024 transparent phone screenshots */
  border-radius: 24px;
  overflow: hidden;
  /* Glow behind transparent phone image */
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
}

.mockup-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
  z-index: 1;
}

.mockup-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.mockup-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Since they are PNGs, they don't need a heavy mask, but a very soft outer glow */
}

/* Feature selector tabs on the left */
.feature-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-tab-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.02);
}

.feature-tab-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
}

.feature-tab-btn.active {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--brand);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.feature-tab-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--ink-light);
  border: 1px solid rgba(255,255,255,0.05);
}

.feature-tab-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2px;
  transition: var(--transition);
}

.feature-tab-btn.active .feature-tab-icon {
  background-color: var(--brand-light);
  color: var(--brand);
  border-color: var(--brand);
}

.feature-tab-btn:hover .feature-tab-icon {
  color: #00E5FF;
  border-color: rgba(0, 229, 255, 0.3);
  background-color: rgba(0, 229, 255, 0.1);
}

.feature-tab-btn:hover .feature-tab-icon svg {
  transform: scale(1.1) rotate(5deg);
}

.feature-tab-info h4 {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 2px;
  text-transform: none;
  letter-spacing: 0;
}

.feature-tab-info p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.4;
}

/* USPS Section */
.usps {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.usps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.usp-card {
  padding: 24px 20px;
  transition: var(--transition);
  text-align: left;
}

.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--brand);
}

.usp-card.highlighted::before {
  background-color: var(--brand-dark);
}

.usp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover) !important;
  border-color: var(--brand) !important;
}

.usp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--brand-light);
  border: 1px solid rgba(111, 255, 0, 0.2);
  margin-bottom: 20px;
  color: var(--brand);
  transition: var(--transition);
}

.usp-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--brand);
  stroke-width: 2px;
  filter: drop-shadow(0 0 6px rgba(111, 255, 0, 0.4));
  transition: var(--transition);
}

/* Hover effect on USP card */
.usp-card:hover .usp-icon {
  background: rgba(0, 229, 255, 0.1);
  border-color: rgba(0, 229, 255, 0.3);
  color: #00E5FF;
}

.usp-card:hover .usp-icon svg {
  stroke: #00E5FF;
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.8));
  transform: scale(1.1) rotate(5deg);
}

.usp-card h3 {
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 10px;
}

.usp-card p {
  font-size: 13.5px;
  color: var(--ink-light);
  line-height: 1.6;
}

/* Tamagotchi Game Section */
.pet-game {
  border-bottom: 1px solid var(--line);
}

.pet-game-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.pet-game-demo {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pet-selector {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.pet-select-btn {
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: var(--transition-fast);
}

.pet-select-btn.active {
  background-color: var(--brand);
  border-color: var(--brand);
  color: #010828;
}

.pet-screen {
  width: 100%;
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: 24px;
}

.pet-screen-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.pet-rank {
  font-size: 12px;
  font-weight: 700;
  background-color: rgba(0, 0, 0, 0.4);
  color: var(--brand);
  padding: 3px 10px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.fish-wallet {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 4px;
}

.fish-icon {
  font-size: 14px;
}

.pet-character-box {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pet-character-avatar {
  font-size: 90px;
  animation: bounce-cat 2s infinite ease-in-out;
}

@keyframes bounce-cat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.pet-bubble {
  position: absolute;
  top: -10px;
  right: -50px;
  background-color: rgba(2, 12, 53, 0.95);
  padding: 8px 12px;
  border-radius: 16px 16px 16px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  color: var(--ink);
}

.pet-bars {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pet-bar-group {
  margin-bottom: 4px;
}

.pet-bar-track {
  height: 8px;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.pet-bar-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-light);
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.pet-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.5s ease;
}

.fill-hunger { background-color: var(--brand); }
.fill-happy { background-color: var(--brand-dark); }

.pet-actions {
  display: flex;
  gap: 16px;
  width: 100%;
}

.pet-actions .btn {
  flex: 1;
  font-size: 13.5px;
  padding: 10px 16px;
}

.pet-ranks-path {
  margin-top: 24px;
  width: 100%;
  border-top: 1px dashed var(--line);
  padding-top: 16px;
}

.pet-ranks-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-light);
  margin-bottom: 10px;
  text-align: center;
}

.pet-ranks-steps {
  display: flex;
  justify-content: space-between;
}

.rank-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.4;
  transition: var(--transition-fast);
}

.rank-step.reached {
  opacity: 1;
}

.rank-step-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--line);
  border: 3px solid #010828;
  box-shadow: 0 0 0 1px var(--line);
  margin-bottom: 4px;
}

.rank-step.reached .rank-step-dot {
  background-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand);
}

.rank-step-name {
  font-size: 9px;
  font-weight: 700;
}

/* App Modules */
.modules {
  border-bottom: 1px solid var(--line);
}

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

.module-card {
  padding: 24px;
  transition: var(--transition);
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover) !important;
  border-color: var(--brand) !important;
}

.module-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-light);
  border: 1px solid rgba(111, 255, 0, 0.2);
  margin-bottom: 16px;
  color: var(--brand);
  transition: var(--transition);
}

.module-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand);
  stroke-width: 2px;
  filter: drop-shadow(0 0 5px rgba(111, 255, 0, 0.3));
  transition: var(--transition);
}

/* Hover effect on Module card */
.module-card:hover .module-icon {
  background: rgba(0, 229, 255, 0.1);
  border-color: rgba(0, 229, 255, 0.3);
  color: #00E5FF;
}

.module-card:hover .module-icon svg {
  stroke: #00E5FF;
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.7));
  transform: scale(1.1) rotate(-5deg);
}

.module-card h3 {
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 8px;
}

.module-card p {
  font-size: 13.5px;
  color: var(--ink-light);
  line-height: 1.6;
}

.module-tech {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--brand);
  background-color: var(--brand-light);
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 12px;
}

/* Comparison Section */
.comparison {
  border-bottom: 1px solid var(--line);
}

.comparison-wrapper {
  padding: 32px;
  box-shadow: var(--shadow);
  overflow-x: auto;
}

table.comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

table.comp-table th, table.comp-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

table.comp-table th {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}

table.comp-table th.col-nekoten, table.comp-table td.col-nekoten {
  background-color: rgba(111, 255, 0, 0.03);
  font-weight: 600;
}

table.comp-table th.col-nekoten {
  border-top-left-radius: var(--radius-sm);
  border-top-right-radius: var(--radius-sm);
  color: var(--brand);
}

table.comp-table tr:last-child td.col-nekoten {
  border-bottom-left-radius: var(--radius-sm);
  border-bottom-right-radius: var(--radius-sm);
}

table.comp-table td .check {
  color: var(--brand);
  font-weight: bold;
}

table.comp-table td .cross {
  color: var(--ink-light);
  opacity: 0.5;
}

/* ROI Calculator Section */
.roi-calc {
  border-bottom: 1px solid var(--line);
}

.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.roi-card-inputs {
  padding: 32px;
}

.roi-input-group {
  margin-bottom: 24px;
}

.roi-input-group label {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.roi-input-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.roi-input-row input[type="range"] {
  flex: 1;
  accent-color: var(--brand);
}

.roi-input-row input[type="number"] {
  width: 90px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink);
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.02);
}

.roi-results {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.roi-res-card {
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.roi-res-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
}

.roi-res-time::before {
  background-color: var(--brand);
}

.roi-res-money::before {
  background-color: var(--green);
}

.roi-res-icon {
  font-size: 36px;
}

.roi-res-info h3 {
  font-size: 14px;
  color: var(--ink-light);
  font-weight: 600;
  margin-bottom: 4px;
}

.roi-res-val {
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
  font-family: var(--font-display);
}

.roi-res-val span {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-light);
}

/* FAQ Section */
.faq {
  border-bottom: 1px solid var(--line);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--brand) !important;
}

.faq-question {
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 14.5px;
  color: var(--ink-light);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
  color: var(--ink-light);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Footer Section */
footer.site-footer {
  background-color: #010828;
  border-top: 1px solid var(--line);
  color: var(--ink-light);
  padding: 60px 0 32px;
  position: relative;
  z-index: 5;
}

footer.site-footer h3, footer.site-footer h4 {
  color: #FFFFFF;
}

footer.site-footer a {
  color: var(--ink-light);
}

footer.site-footer a:hover {
  color: var(--brand);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  margin: 16px 0;
  font-size: 14.5px;
  color: var(--ink-light);
}

.footer-links h4 {
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
}

.footer-copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  font-size: 13px;
  color: var(--ink-light);
}

.footer-copy-links {
  display: flex;
  gap: 24px;
}

/* Privacy Page Specific */
.privacy-page-wrap {
  max-width: 800px;
  margin: 120px auto 60px;
  padding: 40px;
}

.privacy-page-wrap h1 {
  font-size: 32px;
  color: var(--ink);
  margin-bottom: 12px;
  border-bottom: 2px solid var(--line);
  padding-bottom: 12px;
}

.privacy-page-wrap h2 {
  font-size: 20px;
  color: var(--brand);
  margin: 32px 0 12px;
}

.privacy-page-wrap h3 {
  font-size: 16px;
  margin: 20px 0 8px;
}

.privacy-page-wrap p, .privacy-page-wrap li {
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.7;
}

.privacy-page-wrap ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.privacy-page-wrap table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}

.privacy-page-wrap th, .privacy-page-wrap td {
  border: 1px solid var(--line);
  padding: 10px 14px;
  text-align: left;
}

.privacy-page-wrap th {
  background-color: var(--brand-light);
  color: var(--brand);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .hero-grid, .pet-game-wrapper, .roi-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .mockup-slider-wrapper {
    order: -1;
  }
  
  .usps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .usps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-copy {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .nav-wrapper {
    flex-direction: column;
    height: auto;
    padding: 12px 0;
    gap: 12px;
  }
  
  nav.main-nav ul {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  
  .usps-grid {
    grid-template-columns: 1fr;
  }
  
  .modules-grid {
    grid-template-columns: 1fr;
  }
}
