/* ═══════════════════════════════════════════════════════════════════════════
   MINKA LANDING PAGE STYLES
   Brand: Minka (Hungarian Legal AI)
   Primary Color: #C41F30 (Minka Red)
   ═══════════════════════════════════════════════════════════════════════════ */

/* CSS Variables - Minka Brand Colors */
:root {
  --minka-red: #C41F30;
  --minka-red-hover: #A91B29;
  --minka-red-dark: #9E1926;
  --minka-red-darker: #7A131D;
  --minka-red-light: #FDF2F3;
  --minka-red-glow: rgba(196, 31, 48, 0.15);

  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  --green-online: #22C55E;
  --purple-accent: #7C3AED;
  --orange-accent: #EA580C;
  --teal-accent: #0D9488;
  --pink-accent: #DB2777;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.7;
  }
}

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}

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

@keyframes slideInMessage {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes countUp {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes borderGlow {
  0%, 100% { box-shadow: 0 0 0 0 var(--minka-red-glow); }
  50% { box-shadow: 0 0 20px 5px var(--minka-red-glow); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BASE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

.landing-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
}

.landing-page * {
  box-sizing: border-box;
}

/* Animation utilities */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER / NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */

.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-100);
  animation: fadeInDown 0.5s ease-out;
}

.landing-header .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.landing-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.landing-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--minka-red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.landing-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.landing-nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.landing-nav-links a {
  color: var(--gray-600);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
  position: relative;
}

.landing-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--minka-red);
  transition: width 0.3s ease;
}

.landing-nav-links a:hover {
  color: var(--minka-red);
}

.landing-nav-links a:hover::after {
  width: 100%;
}

.landing-nav-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-signin {
  color: var(--gray-700);
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease;
}

.btn-signin:hover {
  color: var(--minka-red);
}

.btn-primary {
  background: var(--minka-red);
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: var(--minka-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196, 31, 48, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--gray-700);
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid var(--gray-300);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  border-color: var(--minka-red);
  color: var(--minka-red);
  background: var(--minka-red-light);
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--gray-700);
}

@media (max-width: 768px) {
  .landing-nav-links,
  .landing-nav-buttons {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.hero-section {
  padding: 8rem 1.5rem 5rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  animation: fadeInLeft 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--minka-red-light);
  color: var(--minka-red);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease-out 0.2s both;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

.hero-title .highlight {
  color: var(--minka-red);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gray-500);
  font-size: 0.875rem;
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.hero-trust-logos {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.hero-trust-logos span {
  font-weight: 600;
  color: var(--gray-400);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

/* Chat Mockup */
.hero-mockup {
  animation: fadeInRight 0.8s ease-out 0.3s both;
}

.chat-mockup {
  background: white;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  max-width: 420px;
  margin-left: auto;
}

.chat-mockup-header {
  background: var(--minka-red-darker);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-mockup-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chat-mockup-avatar {
  width: 36px;
  height: 36px;
  background: var(--minka-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
}

.chat-mockup-info h4 {
  color: white;
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0;
}

.chat-mockup-status {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: var(--green-online);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.chat-mockup-header-right {
  display: flex;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.chat-mockup-body {
  padding: 1.25rem;
  min-height: 280px;
  background: var(--gray-50);
}

.chat-message {
  margin-bottom: 1rem;
  animation: slideInMessage 0.4s ease-out both;
}

.chat-message.user {
  display: flex;
  justify-content: flex-end;
}

.chat-message.user .message-bubble {
  background: var(--minka-red);
  color: white;
  border-radius: 16px 16px 4px 16px;
  padding: 0.875rem 1rem;
  max-width: 85%;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.chat-message.assistant .message-bubble {
  background: white;
  color: var(--gray-800);
  border-radius: 16px 16px 16px 4px;
  padding: 0.875rem 1rem;
  max-width: 85%;
  font-size: 0.9375rem;
  line-height: 1.5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.chat-message.assistant .message-bubble ul {
  margin: 0.5rem 0 0 0;
  padding-left: 1.25rem;
}

.chat-message.assistant .message-bubble li {
  margin-bottom: 0.25rem;
  color: var(--gray-600);
}

.chat-mockup-input {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--gray-200);
  background: white;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chat-mockup-input input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.9375rem;
  color: var(--gray-800);
}

.chat-mockup-input input::placeholder {
  color: var(--gray-400);
}

.chat-mockup-input-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-400);
}

.chat-send-btn {
  width: 36px;
  height: 36px;
  background: var(--minka-red);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chat-send-btn:hover {
  background: var(--minka-red-hover);
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-mockup {
    display: flex;
    justify-content: center;
  }

  .chat-mockup {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 6rem 1rem 3rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BADGE COMPONENT
   ═══════════════════════════════════════════════════════════════════════════ */

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.section-badge.red {
  background: var(--minka-red-light);
  color: var(--minka-red);
}

.section-badge.outline {
  background: transparent;
  border: 1px solid var(--minka-red);
  color: var(--minka-red);
}

/* ═══════════════════════════════════════════════════════════════════════════
   INTERACTIVE DEMO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.demo-section {
  padding: 6rem 1.5rem;
  background: var(--white);
}

.demo-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

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

.demo-section .section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.demo-chat-container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
}

.demo-chat-header {
  background: linear-gradient(135deg, var(--minka-red-darker) 0%, var(--minka-red-dark) 100%);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.demo-chat-body {
  padding: 1.5rem;
  min-height: 300px;
  max-height: 400px;
  overflow-y: auto;
  background: var(--gray-50);
}

.demo-chat-input {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--gray-200);
  background: white;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.demo-chat-input input {
  flex: 1;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.demo-chat-input input:focus {
  border-color: var(--minka-red);
  box-shadow: 0 0 0 3px var(--minka-red-glow);
}

.demo-chat-input .char-count {
  color: var(--gray-400);
  font-size: 0.75rem;
}

.demo-note {
  text-align: center;
  padding: 1rem;
  color: var(--gray-500);
  font-size: 0.875rem;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FEATURES SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.features-section {
  padding: 6rem 1.5rem;
  background: var(--gray-50);
}

.features-container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

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

.features-section .section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
  border-color: var(--gray-200);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.feature-icon.red { background: var(--minka-red-light); color: var(--minka-red); }
.feature-icon.purple { background: #F3E8FF; color: var(--purple-accent); }
.feature-icon.orange { background: #FFF7ED; color: var(--orange-accent); }
.feature-icon.teal { background: #F0FDFA; color: var(--teal-accent); }
.feature-icon.green { background: #F0FDF4; color: #16A34A; }
.feature-icon.pink { background: #FDF2F8; color: var(--pink-accent); }

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-section .section-title {
    font-size: 2rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.about-section {
  padding: 6rem 1.5rem;
  background: var(--white);
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-content p {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--minka-red);
  display: block;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.about-feature {
  background: var(--gray-50);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--minka-red-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  color: var(--minka-red);
}

.about-feature h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-900);
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--minka-red-darker) 0%, var(--minka-red) 50%, var(--minka-red-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
}

@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.pricing-section {
  padding: 6rem 1.5rem;
  background: var(--gray-50);
}

.pricing-container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

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

.pricing-section .section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 4rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  background: var(--minka-red);
  color: white;
  border-color: var(--minka-red);
  transform: scale(1.02);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gray-900);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-card .pricing-desc {
  font-size: 0.9375rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.pricing-price {
  margin-bottom: 1.5rem;
}

.pricing-price .amount {
  font-size: 3rem;
  font-weight: 700;
}

.pricing-price .period {
  font-size: 1rem;
  opacity: 0.7;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
}

.pricing-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 0.875rem 1.5rem;
}

.pricing-card.featured .btn-primary {
  background: white;
  color: var(--minka-red);
}

.pricing-card.featured .btn-primary:hover {
  background: var(--gray-100);
}

.pricing-card .btn-outline {
  width: 100%;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  background: transparent;
  border: 2px solid var(--gray-300);
  color: var(--gray-700);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.pricing-card .btn-outline:hover {
  border-color: var(--minka-red);
  color: var(--minka-red);
  background: var(--minka-red-light);
}

.pricing-note {
  margin-top: 3rem;
  color: var(--gray-500);
  font-size: 0.9375rem;
}

.pricing-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.pricing-trust span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-600);
  font-size: 0.875rem;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.contact-section {
  padding: 6rem 1.5rem;
  background: var(--white);
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
}

.contact-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.contact-section .section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form {
  background: var(--gray-50);
  border-radius: 20px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--minka-red);
  box-shadow: 0 0 0 3px var(--minka-red-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group .char-count {
  text-align: right;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.25rem;
}

.contact-form .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--minka-red-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--minka-red);
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.contact-info-content p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.contact-info-content a {
  color: var(--minka-red);
  text-decoration: none;
  font-weight: 500;
}

.contact-info-content a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.landing-footer {
  background: var(--gray-900);
  color: white;
  padding: 5rem 1.5rem 2rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .landing-logo {
  margin-bottom: 1.5rem;
}

.footer-brand .landing-logo-icon {
  background: var(--minka-red);
}

.footer-brand .landing-logo-text {
  color: white;
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: white;
}

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

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

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-newsletter h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.footer-newsletter p {
  color: var(--gray-400);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-700);
  border-radius: 8px;
  background: transparent;
  color: white;
  font-size: 0.9375rem;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--minka-red);
}

.newsletter-form input::placeholder {
  color: var(--gray-500);
}

.newsletter-form button {
  width: 44px;
  height: 44px;
  background: var(--minka-red);
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.newsletter-form button:hover {
  background: var(--minka-red-hover);
}

.footer-newsletter .privacy-link {
  color: var(--gray-500);
  font-size: 0.8125rem;
  margin-top: 0.75rem;
  display: block;
}

.footer-newsletter .privacy-link a {
  color: var(--gray-400);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: var(--gray-500);
  font-size: 0.875rem;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-700);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--minka-red);
  color: var(--minka-red);
  background: rgba(196, 31, 48, 0.1);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

/* ═══════════════════════════════════════════════════════════════════════════
   TYPING INDICATOR
   ═══════════════════════════════════════════════════════════════════════════ */

.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 16px;
  width: fit-content;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background: var(--gray-400);
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

/* ═══════════════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════════════ */

.text-minka { color: var(--minka-red); }
.bg-minka { background-color: var(--minka-red); }
.bg-minka-light { background-color: var(--minka-red-light); }
.border-minka { border-color: var(--minka-red); }

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