/* Landing Page Custom Styles */
:root {
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --orange-300: #fdba74;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --orange-800: #9a3412;
  --orange-900: #7c2d12;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --green-100: #d1fae5;
  --pink-200: #fbcfe8;
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.landing-new-page {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--gray-900);
}

/* Header Styles */
.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

/* Burger menu fix for iOS Safari */
.landing-header .navbar-burger {
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  z-index: 51;
  position: relative;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-header .navbar-burger span {
  pointer-events: none;
}

.landing-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.3);
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
}

.landing-header .navbar {
  background: transparent;
  padding: 0.75rem 1rem;
}

@media screen and (min-width: 769px) {
  .landing-header .navbar {
    padding: 0.75rem 0;
  }
}

.landing-header .navbar-brand img {
  height: 2.5rem;
  max-height: none;
}

.landing-header .navbar-item img {
  max-height: 2.5rem;
}

.landing-header .navbar-item {
  color: var(--gray-800);
  transition: color 0.2s ease;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.landing-header .navbar-item:hover {
  color: var(--gray-900);
  background: transparent;
}

.landing-header.scrolled .navbar-item {
  text-shadow: none;
  color: var(--gray-600);
}

.landing-header .button.is-ghost {
  color: var(--gray-800);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.landing-header .button.is-ghost:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(0, 0, 0, 0.15);
}

.landing-header.scrolled .button.is-ghost {
  background: transparent;
  border: none;
  color: var(--gray-700);
}

.landing-header.scrolled .button.is-ghost:hover {
  background: var(--gray-100);
}

.landing-header .button.is-primary {
  background: var(--orange-600);
  border-color: var(--orange-600);
}

.landing-header .button.is-primary:hover {
  background: var(--orange-700);
  border-color: var(--orange-700);
}

/* Hero Section */
.landing-hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--orange-50) 0%, #ffffff 50%, var(--amber-50) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.landing-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.3), rgba(251, 191, 36, 0.3));
  border-radius: 50%;
  filter: blur(80px);
  transform: translate(33%, -33%);
  pointer-events: none;
}

.landing-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: linear-gradient(45deg, rgba(254, 215, 170, 0.4), rgba(251, 207, 232, 0.3));
  border-radius: 50%;
  filter: blur(80px);
  transform: translate(-33%, 33%);
  pointer-events: none;
}

.landing-hero .hero-content {
  position: relative;
  z-index: 10;
  padding-left: 1rem;
}

.landing-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--orange-100);
  color: var(--orange-800);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.landing-hero .hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--orange-500);
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.landing-hero h1 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

.landing-hero .hero-description {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.landing-hero .hero-stats {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
  width: 80%;
}

.landing-hero .stat-item {
  text-align: center;
  flex: 1;
  min-width: 0;
}

.landing-hero .stat-value {
  font-size: 2rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.landing-hero .stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  word-wrap: break-word;
  line-height: 1.4;
}

.landing-hero .hero-image-container {
  position: relative;
}

.landing-hero .hero-image-main {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.landing-hero .hero-image-main img {
  width: 100%;
  height: auto;
  display: block;
}

.landing-hero .hero-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-hero .hero-card {
  position: absolute;
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
  animation: floatCard 3s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.landing-hero .hero-card-bottom {
  bottom: -1.5rem;
  left: -1.5rem;
  animation-delay: 0s;
}

.landing-hero .hero-card-top {
  top: -1.5rem;
  right: -1.5rem;
  animation-delay: 1.5s;
}

.landing-hero .card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.landing-hero .card-icon.is-orange {
  background: var(--orange-100);
}

.landing-hero .card-icon.is-green {
  background: var(--green-100);
}

/* Features Section */
.landing-features {
  padding: 5rem 0;
  background: white;
}

.landing-section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--orange-100);
  color: var(--orange-800);
  border-radius: 9999px;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.landing-section-title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.landing-section-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 48rem;
  margin: 0 auto;
}

.landing-feature-card {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  height: 100%;
}

.landing-feature-card:hover {
  border-color: var(--orange-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.landing-feature-icon {
  width: 3rem;
  height: 3rem;
  background: var(--orange-100);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.landing-feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--orange-600);
}

.landing-feature-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.landing-feature-description {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Benefits Section */
.landing-benefits {
  padding: 5rem 0;
  background: var(--gray-50);
}

.landing-benefit-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.landing-benefit-image img {
  width: 100%;
  height: auto;
  display: block;
}

.landing-benefit-phone-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
  position: relative;
}

.landing-benefit-phone-demo .benefit-demo-gif {
  max-width: 400px;
  width: 100%;
}

/* Плавающие карточки в benefits */
.landing-benefit-phone-demo .benefit-card {
  position: absolute;
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
  animation: floatCard 3s ease-in-out infinite;
}

.landing-benefit-phone-demo .benefit-card-bottom {
  bottom: 1rem;
  left: -2rem;
  animation-delay: 0s;
}

.landing-benefit-phone-demo .benefit-card-top {
  top: 3rem;
  right: 2rem;
  animation-delay: 1.5s;
}

.landing-benefit-phone-demo .card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.landing-benefit-phone-demo .card-icon.is-orange {
  background: var(--orange-100);
}

.landing-benefit-phone-demo .card-icon.is-green {
  background: var(--green-100);
}

.landing-benefit-list {
  margin-bottom: 2rem;
}

.landing-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.landing-benefit-icon {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--orange-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.landing-benefit-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--orange-600);
}

.landing-benefit-stat-card {
  padding: 1.5rem;
  background: white;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.landing-benefit-stat-icon {
  width: 3rem;
  height: 3rem;
  background: var(--orange-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.landing-benefit-stat-value {
  font-size: 1.5rem;
  color: var(--orange-600);
  font-weight: 600;
}

/* How It Works Section */
.landing-how-it-works {
  padding: 5rem 0;
  background: white;
}

.landing-step-card {
  position: relative;
}

.landing-step-connector {
  display: none;
  position: absolute;
  top: 4rem;
  left: 100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--orange-300), transparent);
  transform: translateX(-1rem);
}

@media screen and (min-width: 1024px) {
  .landing-step-connector {
    display: block;
  }
  
  .landing-step-card:last-child .landing-step-connector {
    display: none;
  }
}

.landing-step-icon-wrapper {
  position: relative;
  z-index: 10;
}

.landing-step-icon {
  width: 4rem;
  height: 4rem;
  background: var(--orange-600);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-lg);
}

.landing-step-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.landing-step-number {
  font-size: 0.875rem;
  color: var(--orange-600);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.landing-step-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.landing-step-description {
  color: var(--gray-600);
  line-height: 1.6;
}

.landing-cta-box {
  margin-top: 4rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--orange-50), var(--amber-50));
  border-radius: 1rem;
  border: 1px solid var(--orange-200);
}

.landing-cta-box .compliance-icon-wrapper {
  width: 80px;
  height: 80px;
  background: var(--orange-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.25);
}

.landing-cta-box .compliance-icon-wrapper svg {
  width: 40px;
  height: 40px;
  color: white;
}

.landing-cta-box .compliance-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.landing-cta-box .compliance-item {
  font-weight: 500;
}

.landing-cta-box .compliance-separator {
  color: var(--orange-400);
  font-weight: bold;
}

/* CTA Section */
.landing-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgb(248, 250, 252), var(--orange-50));
  position: relative;
  overflow: hidden;
}

.landing-cta::before,
.landing-cta::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.landing-cta::before {
  top: 0;
  left: 0;
  background: var(--orange-200);
  opacity: 0.3;
}

.landing-cta::after {
  bottom: 0;
  right: 0;
  background: var(--orange-200);
  opacity: 0.3;
}

.landing-cta-content {
  position: relative;
  z-index: 10;
}

.landing-cta .cta-avatars-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 300px;
}

.landing-cta .cta-avatar-large {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 6px solid white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
  overflow: hidden;
  position: relative;
}

.landing-cta .cta-avatar-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.landing-cta .cta-avatar-large:hover {
  transform: scale(1.05);
}

.landing-cta .cta-avatar-count-large {
  background: var(--orange-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: white;
  text-align: center;
  padding: 1rem;
  line-height: 1.3;
}

.landing-cta .cta-title-left {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: left;
}

.landing-cta .cta-description-left {
  font-size: 1.125rem;
  color: var(--gray-600);
  text-align: left;
  max-width: none;
}

@media screen and (max-width: 768px) {
  .landing-cta .cta-title-left {
    font-size: 1.75rem;
  }
  
  .landing-cta .cta-avatars-stack {
    max-width: 100%;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .landing-cta .cta-avatar-large {
    width: 80px;
    height: 80px;
  }

  .landing-cta-content .column {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Footer */
.landing-footer {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  padding: 3rem 0;
  color: var(--gray-600);
}

.landing-footer-logo {
  height: 2rem;
  margin-bottom: 1rem;
}

.landing-footer-description {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  max-width: 20rem;
}

.landing-footer-social {
  display: flex;
  gap: 1rem;
}

.landing-footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.landing-footer-social-link:hover {
  border-color: var(--orange-300);
  color: var(--orange-600);
}

.landing-footer-social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.landing-footer h4 {
  margin-bottom: 1rem;
  color: var(--gray-900);
  font-weight: 500;
}

.landing-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.landing-footer ul li {
  margin-bottom: 0.75rem;
}

.landing-footer a {
  color: var(--gray-500);
  transition: color 0.2s ease;
}

.landing-footer a:hover {
  color: var(--orange-600);
}

.landing-footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
  margin-top: 3rem;
}

.landing-footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

/* Buttons */
.button.is-orange {
  background: var(--orange-600);
  color: white;
  border-color: var(--orange-600);
}

.button.is-orange:hover {
  background: var(--orange-700);
  border-color: var(--orange-700);
}

/* Ghost Button - Light transparent style */
.button.is-ghost {
  background: transparent;
  color: var(--gray-800);
  border: 2px solid var(--gray-300);
  font-weight: 600;
  transition: all 0.2s ease;
}

.button.is-ghost:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
  color: var(--gray-900);
}

/* Secondary CTA Button - Outlined style */
.button.is-orange-outlined {
  background: white;
  color: var(--orange-600);
  border: 2px solid var(--orange-600);
  font-weight: 600;
  transition: all 0.3s ease;
}

.button.is-orange-outlined:hover {
  background: var(--orange-600);
  color: white;
  border-color: var(--orange-600);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.2);
}

.button.is-large {
  font-size: 1.125rem;
  padding: 0.75rem 1.5rem;
}

.button svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
}

.button.is-outlined svg {
  margin-right: 0.5rem;
  margin-left: 0;
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 39;
  animation: fadeIn 0.3s ease-out;
}

.mobile-menu-backdrop.is-active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 400px;
  max-height: 85vh;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  z-index: 40;
  animation: fadeInScale 0.3s ease-out;
  -webkit-overflow-scrolling: touch;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

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

.mobile-menu .navbar-item {
  display: block;
  padding: 0.875rem 1rem;
  color: var(--gray-700);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  font-weight: 500;
}

.mobile-menu .navbar-item:hover {
  background: var(--gray-50);
  color: var(--gray-900);
}

.mobile-menu .buttons {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu .button.is-primary {
  background: var(--orange-600);
  border-color: var(--orange-600);
  color: white;
}

.mobile-menu .button.is-primary:hover {
  background: var(--orange-700);
  border-color: var(--orange-700);
}

/* Responsive Typography */
@media screen and (max-width: 768px) {
  .landing-hero h1 {
    font-size: 2rem;
  }
  
  .landing-hero .hero-description {
    font-size: 1rem;
  }
  
  .landing-hero .hero-stats {
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .landing-section-title {
    font-size: 1.75rem;
  }
  
  .landing-hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
  
  .landing-hero .hero-card {
    display: none;
  }

  /* Отступы для мобильных устройств */
  .landing-hero .hero-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .landing-features .container,
  .landing-benefits .container,
  .landing-how-it-works .container,
  .landing-cta .container,
  .landing-footer .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .landing-section-badge {
    margin-left: 0;
    margin-right: 0;
  }

  .landing-section-title,
  .landing-section-description {
    padding-left: 0;
    padding-right: 0;
  }

  .landing-cta-box {
    padding: 1.5rem;
  }

  .landing-footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .landing-footer-bottom-links {
    justify-content: center;
  }

  /* Benefit image на мобильных */
  .landing-benefit-phone-demo {
    padding: 1rem;
  }

  /* Hero stats на мобильных */
  .landing-hero .hero-stats {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Utility Classes */
.has-text-orange {
  color: var(--orange-600);
}

.has-background-orange {
  background: var(--orange-600);
}

/* Access Request Section */
.landing-access-request {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
}

.access-request-info {
  padding-right: 2rem;
}

.access-request-features {
  margin-top: 2rem;
}

.access-request-feature {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.access-request-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--orange-50) 0%, var(--amber-50) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.access-request-feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--orange-600);
}

.access-request-feature strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--gray-900);
}

.access-request-feature p {
  font-size: 0.875rem;
  margin: 0;
}

.access-request-link {
  color: var(--orange-600);
  text-decoration: none;
  transition: color 0.2s ease;
}

.access-request-link:hover {
  color: var(--orange-700);
  text-decoration: underline;
}

.access-request-form-wrapper {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--gray-100);
}

.access-request-form-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 2rem;
}

.access-request-form-wrapper .field {
  margin-bottom: 1.5rem;
}

.access-request-form-wrapper .label {
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.access-request-form-wrapper .input {
  border-radius: 0.75rem;
  border: 2px solid var(--gray-200);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.access-request-form-wrapper .input:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.access-request-form-wrapper .help {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: 0.5rem;
}

.access-request-form-wrapper .button.is-orange {
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.access-request-form-wrapper .button.is-orange:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px -4px rgba(249, 115, 22, 0.3);
}

.access-request-form-wrapper .notification {
  border-radius: 0.75rem;
  border: 1px solid;
}

.access-request-form-wrapper .notification.is-success {
  background: var(--green-100);
  border-color: #10b981;
  color: #065f46;
}

.access-request-form-wrapper .notification.is-danger {
  background: #fee2e2;
  border-color: #ef4444;
  color: #991b1b;
}

.access-request-success-message {
  text-align: center;
  padding: 2rem 1rem;
}

.access-request-success-message .success-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-100) 0%, #d1fae5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.access-request-success-message .success-icon svg {
  width: 2rem;
  height: 2rem;
  color: #10b981;
}

.access-request-success-message .success-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.access-request-success-message .success-description {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.access-request-success-message .success-share {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.5;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 0.75rem;
  border-left: 3px solid var(--orange-500);
  margin-bottom: 1rem;
}

.access-request-success-message .success-bot-link {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.5;
  padding: 1rem;
  background: var(--amber-50);
  border-radius: 0.75rem;
  border-left: 3px solid var(--orange-600);
}

@media screen and (max-width: 768px) {
  .landing-access-request {
    padding: 4rem 0;
  }
  
  .landing-access-request .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .access-request-info {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .access-request-form-wrapper {
    padding: 1.5rem;
  }
  
  .access-request-form-title {
    font-size: 1.25rem;
  }
}

/* Content Wrapper Styles (for content.html.erb layout) */
.content-wrapper {
  background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
}

.content-wrapper .container {
  max-width: 1200px;
}

/* Thin headings like on landing page */
.content-wrapper h1,
.content-wrapper .title.is-1 {
  font-weight: 400;
  color: var(--gray-900);
}

.content-wrapper h2,
.content-wrapper .title.is-2 {
  font-weight: 400;
  color: var(--gray-900);
}

.content-wrapper h3,
.content-wrapper .title.is-3 {
  font-weight: 500;
  color: var(--gray-900);
}

.content-wrapper h4,
.content-wrapper .title.is-4 {
  font-weight: 500;
  color: var(--gray-800);
}

.content-wrapper h5,
.content-wrapper .title.is-5 {
  font-weight: 500;
  color: var(--gray-800);
}

.content-wrapper h6,
.content-wrapper .title.is-6 {
  font-weight: 600;
  color: var(--gray-800);
}

/* Make sure notifications look good */
.content-wrapper .notification {
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}

/* Improve form styling in content pages */
.content-wrapper .box {
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.content-wrapper .button.is-primary {
  background: var(--orange-600);
  border-color: var(--orange-600);
}

.content-wrapper .button.is-primary:hover {
  background: var(--orange-700);
  border-color: var(--orange-700);
}

/* Responsive content wrapper */
@media screen and (max-width: 768px) {
  .content-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Devise Form Column - No wrapper, just form styling */
.devise-form-column {
  padding-right: 3rem;
}

.devise-form-column .field {
  margin-bottom: 1.5rem;
}

.devise-form-column .label {
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.devise-form-column .input,
.devise-form-column .textarea {
  border-radius: 0.5rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background: white;
  transition: all 0.2s ease;
}

.devise-form-column .input:focus,
.devise-form-column .textarea:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.devise-form-column .button.is-primary {
  border-radius: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.devise-form-column .button.is-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px -4px rgba(249, 115, 22, 0.3);
}

@media screen and (max-width: 768px) {
  .devise-form-column {
    padding-right: 0;
    padding-bottom: 2rem;
  }
}

/* Application Layout Styles (for application.html.erb) */
.app-header {
  /* Transparent by default, like landing header */
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

/* Burger menu fix for iOS Safari on app header */
.app-header .navbar-burger {
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  z-index: 51;
  position: relative;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-header .navbar-burger span {
  pointer-events: none;
}

.app-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.3);
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
}

.app-header .navbar-link {
  color: var(--gray-800);
  transition: color 0.2s ease;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.app-header.scrolled .navbar-link {
  text-shadow: none;
  color: var(--gray-600);
}

.app-header .navbar-item {
  color: var(--gray-800);
  transition: color 0.2s ease;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.app-header.scrolled .navbar-item {
  text-shadow: none;
  color: var(--gray-600);
}

.app-header .navbar-item:hover {
  color: var(--gray-900);
  background: transparent;
}

.app-header.scrolled .navbar-item:hover {
  color: var(--gray-900);
}

.app-header .navbar-dropdown {
  border-radius: 0.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  margin-top: 0.5rem;
}

.app-header .navbar-dropdown .navbar-item {
  text-shadow: none;
}

.app-header .navbar-dropdown .navbar-item:hover {
  background: var(--orange-50);
  color: var(--orange-600);
}

.app-header .navbar-brand img {
  height: 2.5rem;
  max-height: none;
}

.app-header .navbar-item img {
  max-height: 2.5rem;
}

.app-header .button.is-ghost {
  color: var(--gray-800);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.app-header .button.is-ghost:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(0, 0, 0, 0.15);
}

.app-header.scrolled .button.is-ghost {
  background: transparent;
  border: none;
  color: var(--gray-700);
}

.app-header.scrolled .button.is-ghost:hover {
  background: var(--gray-100);
}

.app-wrapper {
  min-height: calc(100vh - 400px);
  padding-top: 6rem;
  padding-bottom: 3rem;
  background: linear-gradient(135deg, var(--orange-50) 0%, #ffffff 50%, var(--amber-50) 100%);
}

.app-layout-columns {
  margin-top: 0;
}

.app-sidebar {
  max-width: 270px;
  padding-right: 2rem;
}

.app-sidebar .menu {
  position: sticky;
  top: 6rem;
  padding: 1.5rem;
}

.app-sidebar .menu-label {
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.app-sidebar .menu-label:first-child {
  margin-top: 0;
}

.app-sidebar .menu-list a {
  color: var(--gray-700);
  padding: 0.5rem 0.75rem;
  transition: all 0.2s ease;
}

.app-sidebar .menu-list a:hover {
  background: var(--orange-50);
  color: var(--orange-600);
}

.app-sidebar .menu-list a.is-active {
  background: var(--orange-600);
  color: white;
}

.app-content {
  padding-left: 2rem;
}

.app-content .breadcrumb {
  margin-bottom: 1.5rem;
}

.app-content .notification {
  margin-bottom: 1.5rem;
}

/* Thin headings for app pages */
.app-content h1,
.app-content .title.is-1 {
  font-weight: 400;
  color: var(--gray-900);
}

.app-content h2,
.app-content .title.is-2 {
  font-weight: 400;
  color: var(--gray-900);
}

.app-content h3,
.app-content .title.is-3 {
  font-weight: 500;
  color: var(--gray-900);
}

.app-content h4,
.app-content .title.is-4 {
  font-weight: 500;
  color: var(--gray-800);
}

.app-content h5,
.app-content .title.is-5 {
  font-weight: 500;
  color: var(--gray-800);
}

.app-content h6,
.app-content .title.is-6 {
  font-weight: 600;
  color: var(--gray-800);
}

.app-content .box {
  background: transparent;
  border: none;
  box-shadow: none;
}

.app-content .button.is-primary {
  background: var(--orange-600);
  border-color: var(--orange-600);
}

.app-content .button.is-primary:hover {
  background: var(--orange-700);
  border-color: var(--orange-700);
}

/* Mobile menu for app - uses same mobile-menu styles from landing */
.app-mobile-menu-content .menu {
  margin-top: 0;
  padding: 0;
}

.app-mobile-menu-content .menu-label {
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.app-mobile-menu-content .menu-label:first-child {
  margin-top: 0;
}

.app-mobile-menu-content .menu-list a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--gray-700);
  text-decoration: none;
  transition: all 0.2s ease;
}

.app-mobile-menu-content .menu-list a:hover {
  background: var(--gray-50);
  color: var(--gray-900);
}

@media screen and (max-width: 768px) {
  .app-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .app-content {
    padding-left: 0;
  }

  .app-layout-columns {
    margin: 0;
  }
}
