/* Google Fonts Import (Example: Poppins) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* Color Palette (Adjust as needed):
   --marine-blue: #1E3C72
   --marine-blue-2: #2A5298
   --neon-accent: #00f5d4
   --dark-bg: #0B0F1E
   --light-gray: #f5f5f5
   --text-color: #e0e0e0
*/

:root {
  --marine-blue: #1E3C72;
  --marine-blue-2: #2A5298;
  --neon-accent: #00f5d4;
  --dark-bg: #0B0F1E;
  --light-gray: #f5f5f5;
  --text-color: #e0e0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark-bg);
  color: var(--text-color);
  line-height: 1.6;
}

/* HEADER & NAVIGATION */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* NAV BAR */
.navig-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, var(--marine-blue), var(--marine-blue-2));
  padding: 0.8rem 2rem;
}

.nav-left {
  display: flex;
  align-items: center;
}

.nav-logo {
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* NAV RIGHT */
.nav-right {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  padding: 0.3rem 0;
  transition: 0.3s;
  position: relative;
  text-transform: uppercase;
}

.nav-menu li a:hover {
  color: var(--neon-accent);
}

.nav-menu li a.active {
  border-bottom: 2px solid var(--neon-accent);
}

/* HAMBURGER ICON */
.hamburger {
  display: none;
  font-size: 1.6rem;
  color: #fff;
  cursor: pointer;
  margin-left: 1rem;
}

/* CURTAIN MENU (FOR SMALL DEVICES) */
.menu-curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(30, 60, 114, 0.95);
  overflow: hidden;
  transition: height 0.5s ease;
  z-index: 9999;
}

.menu-curtain .closebtn {
  position: absolute;
  right: 2rem;
  top: 1.5rem;
  font-size: 2rem;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.curtain-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5rem;
}

.curtain-content a {
  color: #fff;
  font-size: 1.2rem;
  padding: 1rem;
  text-decoration: none;
  transition: opacity 0.3s;
}

.curtain-content a:hover {
  opacity: 0.8;
}

/* HERO SECTION */
.hero {
  position: relative;
  background: linear-gradient(to right, var(--marine-blue), var(--marine-blue-2));
  padding: 3rem 2rem;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Subtle diagonal lines or gradient overlay for a tech vibe */
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0px,
    rgba(255, 255, 255, 0.02) 3px,
    transparent 3px,
    transparent 6px
  );
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 2rem;
}

.hero-text {
  flex: 1;
  text-align: left;
}

/* Chat Preview Styles */
.chat-preview {
  flex: 1;
  max-width: 340px; /* More phone-like width */
  display: none;
  padding: 1rem;
  perspective: 1000px;
}

.chat-container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 40px; /* More rounded corners like modern phones */
  overflow: hidden;
  box-shadow: 
    0 25px 45px rgba(0, 0, 0, 0.3),
    0 2px 8px rgba(0, 245, 212, 0.1);
  border: 10px solid rgba(0, 0, 0, 0.8); /* Phone-like border */
  animation: phoneFloat 3s ease-in-out infinite;
  transform-style: preserve-3d;
  position: relative;
}

/* Phone floating animation */
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotateX(2deg); }
  50% { transform: translateY(-10px) rotateX(0deg); }
}

/* Add phone elements */
.chat-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 25px;
  background: rgba(0, 0, 0, 0.8);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 2;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

/* Add time to header */
.chat-header::before {
  content: '20:22';
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Battery indicator */
.chat-header::after {
  content: '';
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  width: 20px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 3px;
}

.chat-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.chat-title {
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  background: rgba(0, 245, 212, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: var(--neon-accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 12px var(--neon-accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-messages {
  padding: 1.5rem;
  height: 380px; /* Taller messages area */
  overflow-y: hidden; /* Changed from auto to hidden */
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.1)
  );
}

.message {
  max-width: 85%;
  padding: 0.8rem 1rem;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(20px);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  backdrop-filter: blur(8px);
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.message.bot {
  margin-right: auto;
  border-bottom-left-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  transform-origin: left bottom;
}

.message.user {
  margin-left: auto;
  border-bottom-right-radius: 4px;
  flex-direction: row-reverse; /* Icon on the right for user messages */
  background: rgba(0, 245, 212, 0.2);
  transform-origin: right bottom;
}

.message-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: transform 0.3s ease;
  font-size: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.message:hover .message-icon {
  transform: scale(1.1);
}

.message.bot .message-icon {
  background: var(--neon-accent);
  color: var(--dark-bg);
}

.message.user .message-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.message.bot .message-icon i,
.message.user .message-icon i {
  font-size: 0.9rem;
}

.message p,
.message ul {
  margin: 0;
  width: 100%;
  text-align: left;
  line-height: 1.5;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
}

.message.bot {
  background: rgba(255, 255, 255, 0.1);
  align-self: flex-start;
  max-width: 85%;
}

.message ul {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
}

.message ul li {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.message ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
}

.message .message-content {
  flex: 1;
  min-width: 0; /* Prevents flex item from overflowing */
}

/* Sequential animations for messages */
.message.bot:nth-child(1) {
  animation: messagePopIn 0.5s ease-out 0.3s forwards;
}

.message.user:nth-child(2) {
  animation: messagePopIn 0.5s ease-out 1.2s forwards;
}

.message.bot:nth-child(3) {
  animation: messagePopIn 0.5s ease-out 2.1s forwards;
}

@keyframes messagePopIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Add a typing indicator animation */
@keyframes typingDots {
  0%, 100% { content: '.'; }
  33% { content: '..'; }
  66% { content: '...'; }
}

.message.user {
  background: var(--neon-accent);
  color: var(--dark-bg);
  align-self: flex-end;
}

/* Chat input */
.chat-input {
  display: flex;
  padding: 1rem;
  gap: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
}

.chat-input input {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border-radius: 20px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.chat-input input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(0, 245, 212, 0.3);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 245, 212, 0.1);
}

.chat-input button {
  background: var(--neon-accent);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 245, 212, 0.3);
}

.chat-input button:hover {
  background: #00eac8;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 245, 212, 0.4);
}

/* Home indicator line like modern phones */
.chat-container::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

/* Show chat preview on larger screens */
@media screen and (min-width: 1024px) {
  .chat-preview {
    display: block;
  }

  .hero {
    padding: 4rem 2rem;
  }
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #d0d0d0;
}

.cta-button .start-btn {
  background: linear-gradient(135deg, #00f5d4, #00eac8);
  color: #06223a;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 10px rgba(0, 245, 212, 0.5);
}

.cta-button .start-btn:hover {
  background: linear-gradient(135deg, #00eac8, #00d9b8);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 245, 212, 0.7);
}

/* MAIN CONTENT */
.contenu {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  position: relative;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(42, 82, 152, 0.08));
  border-radius: 20px;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  padding: 1rem;
}

.feature-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;  /* Center all content */
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(0, 245, 212, 0.03), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.feature-card:hover::before {
  transform: translateX(100%);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  border-color: rgba(0, 245, 212, 0.2);
}

.feature-icon {
  font-size: 3rem;
  color: var(--neon-accent);
  margin-bottom: 2rem;
  transition: all 0.5s ease;
  filter: drop-shadow(0 0 8px rgba(0, 245, 212, 0.3));
  display: inline-block;  /* Allow the icon to be centered */
  position: relative;     /* For proper alignment */
  top: 0;                /* Reset top position */
}

.feature-card h3 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 1rem;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.feature-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;           /* Center the underline */
  transform: translateX(-50%);  /* Center the underline */
  width: 60px;
  height: 3px;
  background: var(--neon-accent);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(0, 245, 212, 0.5);
}

.feature-card p {
  color: #d0d0d0;
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1.05rem;
  text-align: center;  /* Center the paragraph text */
}

/* SUPPORTED CHANNELS - Original look */
.supported-channels {
  margin-top: 5rem;
  margin-bottom: 5rem;
  text-align: center;
}

.channels-title {
  font-size: 1.8rem;
  color: var(--neon-accent);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.channels-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}

.channels-list li {
  background: rgba(255,255,255,0.05);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.channels-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* PRICING INFO - Lighter background */
.pricing-info {
  text-align: center;
  margin: 5rem 0 3rem 0;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
}

/* PRICING TABLE - Enhanced visibility */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 5rem;  /* Increased from 2rem */
}

.price-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  width: 160px;
  box-shadow: 0 4px 12px rgba(0, 245, 212, 0.05);
  text-align: center;
  padding: 1.5rem 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(4px);
}

.price-card:hover {
  transform: scale(1.03);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(0, 245, 212, 0.1);
}

.price-header {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.price-separator {
  width: 50%;
  height: 2px;
  background-color: var(--neon-accent);
  margin: 0.5rem auto;
  box-shadow: 0 0 8px rgba(0, 245, 212, 0.3);
}

.price-details {
  font-size: 1.1rem;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 245, 212, 0.3);
}

/* AI INTEGRATIONS */
.ai-integrations {
  margin-top: 4rem;
  margin-bottom: 5rem;
  text-align: center;
}

.integrations-title {
  font-size: 2rem;
  color: var(--neon-accent);
  margin-bottom: 3rem;
  text-transform: uppercase;
  position: relative;
}

.integrations-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--neon-accent);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(0, 245, 212, 0.5);
}

.integrations-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.integration-item {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.integration-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 32px rgba(0, 245, 212, 0.15);
  background: rgba(255,255,255,0.08);
  border-color: var(--neon-accent);
}

/* Give all logos the same size */
.integration-item img {
  width: 80%;
  height: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.integration-item:hover img {
  transform: scale(1.1);
  filter: brightness(1) invert(0);
}

.integration-item h3 {
  font-size: 1.2rem;
  color: var(--neon-accent);
  margin: 0;
  font-weight: 600;
}

.integration-item p {
  font-size: 0.95rem;
  color: var(--text-color);
  margin: 0;
  line-height: 1.6;
  opacity: 0.9;
}

/* Responsive adjustments for AI integrations */
@media screen and (max-width: 768px) {
  .integrations-list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .integration-item {
    padding: 1.5rem;
  }

  .integration-item img {
    width: 60%;
    height: 60px;
  }
}

/* FOOTER - Enhanced visibility */
footer {
  background-color: rgba(17, 23, 43, 0.95);
  padding: 2rem 1rem;
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
  border-top: 1px solid rgba(0, 245, 212, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  line-height: 1.6;
  font-size: 0.95rem;
}

/* RESPONSIVE STYLES */
@media screen and (max-width: 768px) {
  .nav-menu {
    display: none; /* Hide the main menu on mobile */
  }

  .hamburger {
    display: block; /* Show the hamburger icon */
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .feature-card {
    text-align: left;
  }
}

/* RESPONSIVE STYLES - Enhanced version */
@media screen and (max-width: 1200px) {
  .hero-content {
    padding: 1rem;
    gap: 2rem;
  }

  .contenu {
    margin: 1rem;
    padding: 1rem;
  }
}

@media screen and (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .chat-preview {
    display: none; /* Hide chat preview on medium screens */
  }

  .features {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .pricing-table {
    gap: 1rem;
  }

  .price-card {
    width: calc(33.33% - 1rem);
    min-width: 140px;
  }
}

@media screen and (max-width: 768px) {
  .navig-bar {
    padding: 0.6rem 1rem;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero {
    padding: 2rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .supported-channels {
    margin: 3rem 0;
  }

  .channels-list {
    gap: 1rem;
  }

  .channels-list li {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .pricing-info {
    margin: 3rem 0 2rem 0;
    padding: 1.5rem;
  }

  .price-card {
    width: calc(50% - 1rem);
    min-width: 130px;
  }

  .integrations-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .integration-item {
    padding: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .cta-button .start-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .feature-icon {
    font-size: 2.5rem;
  }

  .feature-card h3 {
    font-size: 1.2rem;
  }

  .feature-card p {
    font-size: 0.95rem;
  }

  .pricing-table {
    flex-direction: column;
    align-items: center;
  }

  .price-card {
    width: 100%;
    max-width: 280px;
  }

  .integration-item img {
    width: 70%;
    height: 50px;
  }

  .footer-content {
    font-size: 0.85rem;
  }
}

/* Additional responsive improvements */
@media screen and (max-height: 700px) {
  .menu-curtain .curtain-content {
    padding-top: 3rem;
  }

  .menu-curtain .curtain-content a {
    padding: 0.7rem;
    font-size: 1.1rem;
  }
}

/* High-resolution screens */
@media screen and (min-width: 1600px) {
  .contenu {
    max-width: 1400px;
  }

  .hero-content {
    max-width: 1400px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }
}

/* Landscape mode for mobile devices */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 1rem;
  }

  .hero-content {
    flex-direction: row;
    gap: 1rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .chat-preview {
    display: none;
  }
}

/* Print styles */
@media print {
  .hero {
    background: none;
    color: #000;
  }

  .chat-preview,
  .hamburger,
  .cta-button,
  .feature-icon {
    display: none;
  }

  .contenu {
    background: none;
  }

  * {
    color: #000 !important;
    background: none !important;
    box-shadow: none !important;
  }
}
