/* Force viewport width on all mobile devices - but exclude logo */
@media (max-width: 433px) {
  * {
    max-width: 100vw !important;
  }
  
  .logo,
  .logo-image,
  .logo * {
    max-width: none !important;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

/* Ensure logo is always visible - override max-width rules */
.logo,
.logo-image,
.logo * {
  max-width: none !important;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  color: #f5f5f5;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Ensure all text elements wrap properly on mobile */
h1, h2, h3, h4, h5, h6, p, span, div, a {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Critical mobile overflow prevention */
@media (max-width: 433px) {
  html, body {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    position: relative !important;
  }
  
  * {
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }
  
  .container, .header, .hero, .main-content, .footer, .section {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

/* Header */
.header {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.header-content .logo {
  flex: 0 0 auto;
  z-index: 100;
}

.burger-menu {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 12px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 45px;
  height: 45px;
}

.burger-menu span {
  width: 100%;
  height: 4px;
  background-color: #f5f5f5;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.burger-menu:hover span {
  background-color: #00d4ff;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(12px, 12px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(12px, -12px);
}

.logo {
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: 90px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
  visibility: visible !important;
  opacity: 1 !important;
  width: auto;
  max-width: 200px;
}

.logo-image {
  height: 80px;
  width: 80px;
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.nav-links {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 100px 2rem 2rem;
  gap: 1.5rem;
  transition: right 0.3s ease;
  z-index: 1000;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.nav-links.active {
  right: 0;
}

.nav-links a {
  color: #f5f5f5;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.nav-links a:hover {
  color: #00d4ff;
}

.nav-links a:last-child {
  border-bottom: none;
}

/* Product Launch Banner */
.product-banner {
  background: linear-gradient(135deg, #00d4ff 0%, #ff0096 100%);
  padding: 0.8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 100px; /* Increased margin to account for fixed header */
  z-index: 999; /* Just below header z-index */
}

.banner-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.banner-text {
  text-align: center;
  flex: 1;
}

.banner-robo-image {
  width: 144px;
  height: 144px;
  object-fit: cover;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.banner-left {
  order: 1;
}

.banner-right {
  order: 3;
}

.banner-text {
  order: 2;
}

.banner-mobile-layout {
  display: none;
}

.banner-robo-image:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.product-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.banner-content {
  position: relative;
  z-index: 1;
}

.banner-title {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.banner-cta {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.banner-cta:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
  padding: 4rem 0 4rem; /* Reduced top padding since banner is now above */
  text-align: center;
  background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 150, 0.1));
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #00d4ff, #ff0096);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.3rem;
  color: #b8b8b8;
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* Hero Home 1 - Split Layout */
.hero-home1 {
  text-align: left;
  padding: 0;
  position: relative;
  min-height: 700px;
  overflow: visible;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.hero-home1 .container {
  position: relative;
  height: 100%;
  min-height: 700px;
  padding: 0;
  max-width: 100%;
  overflow: visible;
  width: 100%;
}

.hero-home1 .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 2rem;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-home1 .hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
}

.hero-home1 .hero-text h1 {
  font-size: 4rem;
  margin-bottom: 0;
  text-align: left;
  background: linear-gradient(45deg, #00d4ff, #ff0096);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-home1 .hero-text p {
  font-size: 1.2rem;
  color: #b8b8b8;
  margin: 0;
  max-width: 100%;
  text-align: left;
  line-height: 1.6;
}

.hero-home1 .hero-text-image {
  margin-top: 2rem;
}

.hero-home1 .hero-text-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.hero-home1 .hero-image {
  position: absolute;
  top: 0;
  right: calc((100vw - 100%) / -2 + 20px);
  bottom: 0;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  z-index: 1;
}

.hero-home1 .hero-image .hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

/* Our Mission Section */
.our-mission-section {
  padding: 6rem 0;
  background: #000;
  background-image: url('images/our.gif');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.our-mission-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.our-mission-section .container {
  position: relative;
  z-index: 2;
}

.our-mission-section .section-title {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #00d4ff, #ff0096);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.our-mission-section .mission-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.our-mission-section .mission-content .mission-intro {
  font-size: 1.6rem;
  color: #ff0096;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.our-mission-section .mission-content .mission-details {
  font-size: 1.2rem;
  color: #b8b8b8;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Why It Matters Section */
.why-it-matters-section {
  padding: 3rem 0 6rem 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  min-height: 90vh;
}

.why-it-matters-header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-it-matters-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.why-it-matters-image {
  position: sticky;
  top: 120px;
}

.why-it-matters-video {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.why-it-matters-image .image-placeholder {
  width: 100%;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  color: #b8b8b8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.why-it-matters-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-it-matters-headline {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #00d4ff, #ff0096);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

.why-it-matters-subheadline {
  font-size: 1.4rem;
  color: #f5f5f5;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: center;
}

.why-it-matters-subheadline:last-of-type {
  margin-bottom: 0;
}

.why-it-matters-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-it-matters-body p {
  font-size: 1.2rem;
  color: #b8b8b8;
  line-height: 1.8;
  margin: 0;
}

.why-it-matters-body strong {
  color: #00d4ff;
  font-weight: 600;
}

/* Stats Row Container */
.why-it-matters-stats-container {
  margin-top: 4rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.stat-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 0.5rem;
}

.stat-caption {
  font-size: 1rem;
  color: #b8b8b8;
  line-height: 1.5;
}


.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, #00d4ff, #ff0096);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* Main Content */
.main-content {
  padding: 2rem 0;
}

.section {
  margin: 4rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #00d4ff, #ff0096);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #b8b8b8;
  margin-bottom: 2rem;
}

/* Question Grid */
.question-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.question-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.question-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.question-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.question-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #00d4ff;
}

.question-card p {
  margin-bottom: 1rem;
  color: #b8b8b8;
}

.answer {
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.answer.correct {
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid rgba(0, 255, 0, 0.3);
}

.answer.incorrect {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
}

/* Robot Forms */
.robot-forms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.robot-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.robot-form.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.robot-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.robot-form h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #00d4ff;
}

.robot-form p {
  margin-bottom: 1rem;
  color: #b8b8b8;
}

.features {
  list-style: none;
  margin-top: 1rem;
}

.features li {
  padding: 0.5rem 0;
  color: #b8b8b8;
  position: relative;
  padding-left: 1.5rem;
}

.features li::before {
  content: "▶";
  color: #00d4ff;
  position: absolute;
  left: 0;
}

/* Roboverse */
.roboverse-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

/* Roboverse Section H3 Heading */
#roboverse h3 {
  text-align: center;
  font-size: 1.5rem;
  margin: 1.5rem 0 2rem 0;
  color: #00d4ff;
  font-weight: bold;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.roboverse-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.roboverse-item.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.roboverse-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.roboverse-item h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #00d4ff;
}

.roboverse-item p {
  margin-bottom: 1rem;
  color: #b8b8b8;
}

/* Research Section */
.research-content {
  max-width: 800px;
  margin: 0 auto;
}

.research-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
}

.research-item.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.research-item h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #00d4ff;
}

.research-item p {
  margin-bottom: 1rem;
  color: #b8b8b8;
}

.technical-details, .philosophy-validation {
  margin: 2rem 0;
}

.technical-details h5, .philosophy-validation h5 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #00d4ff;
}

.technical-details ul, .philosophy-validation ul {
  list-style: none;
  margin-left: 1rem;
}

.technical-details li, .philosophy-validation li {
  padding: 0.5rem 0;
  color: #b8b8b8;
  position: relative;
  padding-left: 1.5rem;
}

.technical-details li::before, .philosophy-validation li::before {
  content: "▶";
  color: #00d4ff;
  position: absolute;
  left: 0;
}

/* Footer */
.footer {
  background: #000;
  padding: 3rem 0;
  text-align: center;
  margin-top: 0;
}

.footer h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #00d4ff, #ff0096);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer p {
  color: #b8b8b8;
  margin-bottom: 1rem;
}

.copyright {
  font-size: 0.9rem;
  color: #888;
  margin-top: 2rem;
}

.email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #b8b8b8;
  margin-top: 1rem;
}

.gmail-icon {
  width: 20px;
  height: 20px;
  color: #00d4ff;
}

/* Image Styling */
.image-container {
  margin: 2rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  opacity: 1;
  transform: scale(1);
}



.image-container img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.image-caption {
  margin-top: 1rem;
  font-style: italic;
  color: #b8b8b8;
  font-size: 0.9rem;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.image-grid .image-container {
  margin: 0;
}

/* Lazy Loading Placeholder */
.image-placeholder {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 150, 0.1));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  color: #888;
  font-style: italic;
}

.image-placeholder::before {
  content: "🖼️ Loading...";
  font-size: 1.2rem;
}

/* Responsive Images */
@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
  
  .image-container img {
    border-radius: 10px;
  }
  
  .image-placeholder {
    min-height: 150px;
  }
}

/* High DPI Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .image-container img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print Styles */
@media print {
  .image-container img {
    box-shadow: none;
    border: 1px solid #ccc;
  }
  
  .image-caption {
    color: #000;
  }
}

/* ===== ROBO PET PAGE STYLES ===== */

/* Navigation Active State */
.nav-links a.active {
  color: #00d4ff;
  font-weight: bold;
}

/* Product Showcase */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
  align-items: start;
}

.product-images {
  order: 1;
}

.product-details {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Feature Cards */
.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.feature-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #00d4ff;
}

.feature-card p {
  color: #b8b8b8;
  line-height: 1.6;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

/* Tablet breakpoint for features grid */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.feature-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.feature-item.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.feature-item h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #00d4ff;
}

.feature-item p {
  color: #b8b8b8;
  line-height: 1.6;
}

/* Specifications Grid */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.spec-category {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(30px);
}

.spec-category.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.spec-category h4 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #00d4ff;
}

.spec-list {
  list-style: none;
}

.spec-list li {
  padding: 0.8rem 0;
  color: #b8b8b8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.spec-list li:last-child {
  border-bottom: none;
}

.spec-list strong {
  color: #f5f5f5;
}

/* Pricing Section */
.pricing-container {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  text-align: center;
  max-width: 400px;
  width: 100%;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.pricing-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card.featured {
  border: 2px solid #00d4ff;
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.pricing-header h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00d4ff;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.5rem;
  color: #f5f5f5;
  margin-right: 0.2rem;
}

.amount {
  font-size: 4rem;
  font-weight: bold;
  color: #00d4ff;
  line-height: 1;
}

.period {
  font-size: 1.2rem;
  color: #b8b8b8;
  margin-left: 0.5rem;
}

.price-alternatives {
  margin-bottom: 2rem;
}

.price-alternatives p {
  color: #b8b8b8;
  font-size: 1.1rem;
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features ul {
  list-style: none;
  text-align: left;
}

.pricing-features li {
  padding: 0.8rem 0;
  color: #b8b8b8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pre-order-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(45deg, #00d4ff, #ff0096);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1rem;
}

.pre-order-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.shipping-note {
  color: #b8b8b8;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* Launch Info */
.launch-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.launch-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(30px);
}

.launch-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.launch-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #00d4ff;
}

.launch-card h5 {
  font-size: 1.2rem;
  margin: 1.5rem 0 1rem 0;
  color: #ff0096;
  font-weight: bold;
}

.launch-card p {
  color: #b8b8b8;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.launch-card strong {
  color: #f5f5f5;
}

/* ===== MOBILE RESPONSIVENESS ===== */

/* Small devices from 200px to tablet - Logo visibility fix */
@media (min-width: 200px) and (max-width: 768px) {
  .logo {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    width: auto !important;
    max-width: 150px !important;
    height: 70px !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
    z-index: 100 !important;
    flex: 0 0 auto !important;
  }
  
  .logo-image {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: 60px !important;
    width: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
    margin: 0 auto !important;
  }
  
  .header-content {
    justify-content: center !important;
    width: 100% !important;
    display: flex !important;
  }
  
  .logo,
  .logo-image,
  .logo * {
    max-width: none !important;
  }
}

/* Large Mobile and Small Tablet */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .header {
    padding: 0.5rem 0;
  }
  
  .logo {
    height: 85px;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    max-width: 180px !important;
    position: relative !important;
    z-index: 100 !important;
  }
  
  .logo-image {
    height: 75px;
    width: 75px;
    max-width: 75px !important;
    max-height: 75px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .logo,
  .logo-image,
  .logo * {
    max-width: none !important;
  }
  
  .header-nav-link {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
  
  .burger-menu {
    width: 42px;
    height: 42px;
  }
  
  .burger-menu span {
    height: 4px;
  }
  
  .nav-links {
    width: 250px;
  }
  
  .nav-links a {
    font-size: 1rem;
  }
  
  .product-banner {
    padding: 0.6rem 0;
    margin-top: 120px !important; /* Adjust for smaller header on mobile */
  }
  
  .banner-layout {
    gap: 0.8rem;
  }
  
  .banner-robo-image {
    width: 126px;
    height: 126px;
  }
  
  .banner-title {
    font-size: 1.5rem;
  }
  
  .banner-subtitle {
    font-size: 1rem;
  }
  
  .banner-cta {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .hero {
    padding: 3rem 0 3rem; /* Reduced since banner is above */
  }
  
  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
  
  /* Hero Home 1 Mobile */
  .hero-home1 {
    min-height: auto;
    padding: 0;
  }
  
  .hero-home1 .container {
    min-height: auto;
  }
  
  .hero-home1 .hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 0;
  }
  
  .hero-home1 .hero-text {
    display: contents;
  }
  
  .hero-home1 .hero-text h1 {
    font-size: 2.5rem;
    text-align: center;
    order: 1;
  }
  
  .hero-home1 .hero-image {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 400px;
    margin-top: 2rem;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 0;
    order: 2;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 1rem;
    box-sizing: border-box;
  }
  
  .hero-home1 .hero-image .hero-main-image {
    height: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    object-fit: cover !important;
    border-radius: 20px !important;
    margin: 0 auto !important;
    display: block !important;
  }
  
  .hero-home1 .hero-text p:nth-of-type(1) {
    font-size: 1rem;
    text-align: center;
    padding: 0;
    order: 3;
  }
  
  .hero-home1 .hero-text p:nth-of-type(2) {
    font-size: 1rem;
    text-align: center;
    padding: 0;
    order: 4;
  }
  
  .hero-home1 .hero-text-image {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    order: 5;
  }
  
  .hero-home1 .hero-text-image img {
    max-width: 250px;
  }
  
  /* Our Mission Mobile */
  .our-mission-section {
    padding: 4rem 0;
  }
  
  .our-mission-section .section-title {
    font-size: 2.5rem;
  }
  
  .our-mission-section .mission-content .mission-intro {
    font-size: 1.4rem;
    padding: 0 1rem;
  }
  
  .our-mission-section .mission-content .mission-details {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  /* Why It Matters Mobile */
  .why-it-matters-section {
    padding: 4rem 0;
    min-height: auto;
  }
  
  .why-it-matters-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .why-it-matters-stats-container {
    margin-top: 3rem;
    padding: 0 1rem;
  }
  
  .stats-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .why-it-matters-image {
    position: relative;
    top: auto;
  }
  
  .why-it-matters-video {
    height: 400px;
  }
  
  .why-it-matters-image .image-placeholder {
    height: 400px;
  }
  
  .why-it-matters-headline {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .why-it-matters-subheadline {
    font-size: 1.2rem;
    text-align: center;
  }
  
  .why-it-matters-body p {
    font-size: 1.1rem;
    text-align: left;
  }
  
  .stats-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stat-card {
    padding: 1.5rem;
  }
  
  .stat-icon {
    font-size: 2.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
  
  .testimonial-quote {
    font-size: 1.2rem;
  }
  
  .cta-row {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .question-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .question-card {
    padding: 1.5rem;
  }
  
  .question-card h4 {
    font-size: 1.3rem;
  }
  
  .robot-forms {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .robot-form {
    padding: 1.5rem;
  }
  
  .robot-form h4 {
    font-size: 1.3rem;
  }
  
  .roboverse-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .roboverse-item {
    padding: 1.5rem;
  }
  
  .roboverse-item h4 {
    font-size: 1.3rem;
  }
  
  .research-item {
    padding: 1.5rem;
  }
  
  .research-item h4 {
    font-size: 1.5rem;
  }
  
  .footer {
    padding: 2rem 0;
  }
  
  .footer h2 {
    font-size: 2rem;
  }
  
  /* Robo Pet Page Mobile Styles */
  .product-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .product-images {
    order: 1;
  }
  
  .product-details {
    order: 2;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card {
    padding: 2rem;
  }
  
  .amount {
    font-size: 3rem;
  }
  
  .launch-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Ultra Small Mobile - 433px exactly */
@media (max-width: 433px) and (min-width: 0px) {
  * {
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }
  
  html {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  
  body {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  
  .header, .hero, .main-content, .footer {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
}

/* Very Small Mobile - 433px and below */
@media (max-width: 433px) {
  html, body {
    overflow-x: hidden !important;
    width: 100vw !important;
    max-width: 100vw !important;
  }
  
  .container {
    padding: 0 0.25rem !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    width: 100vw !important;
    margin: 0 !important;
  }
  
  .header {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  
  .header-content {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 0 0.25rem !important;
  }
  
  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
  }
  
  .header-nav-link {
    font-size: 0.85rem;
    padding: 0.3rem 0.6rem;
  }
  
  .logo {
    position: relative !important;
    left: auto !important;
    transform: none !important;
    height: 70px !important;
    justify-content: center !important;
    width: auto !important;
    max-width: 150px !important;
    overflow: visible !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 100 !important;
    margin: 0 auto !important;
  }
  
  .logo-image {
    height: 60px !important;
    width: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .logo,
  .logo-image,
  .logo * {
    max-width: none !important;
  }
  
  .nav-links {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  
  .nav-links a {
    font-size: 0.7rem !important;
    padding: 0.3rem 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 5px;
    text-align: center;
  }
  
  .product-banner {
    margin-top: 120px !important;
    padding: 0.4rem 0;
    width: 100% !important;
    max-width: 425px !important;
    overflow: hidden !important;
  }
  
  .banner-robo-image {
    width: 60px;
    height: 60px;
  }
  
  .banner-title {
    font-size: 0.9rem !important;
    padding: 0 0.1rem !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 400px !important;
    overflow: hidden !important;
  }
  
  .banner-subtitle {
    font-size: 0.7rem !important;
    padding: 0 0.1rem !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 400px !important;
    overflow: hidden !important;
  }
  
  .hero {
    padding: 2rem 0 1.5rem !important;
    margin-top: 60px;
    width: 100vw !important;
    max-width: 100vw !important;
    overflow: hidden !important;
  }
  
  .main-content {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow: hidden !important;
  }
  
  .hero h1 {
    font-size: 1.3rem !important;
    padding: 0 0.25rem !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 400px !important;
    overflow: hidden !important;
  }
  
  .hero p {
    font-size: 0.8rem !important;
    padding: 0 0.25rem !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 400px !important;
    overflow: hidden !important;
  }
  
  .section h2 {
    font-size: 1.4rem;
    padding: 0 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
  }
  
  .section-subtitle {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
  }
  
  .feature-item h4, .spec-category h4, .launch-card h4 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
  }
  
  .feature-item p, .spec-category p, .launch-card p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
  }
  
  /* Roboverse H3 Very Small Mobile Styling */
  #roboverse h3 {
    font-size: 1rem !important;
    padding: 0 0.25rem;
    text-align: center !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
  }
  
  /* Roboverse H3 Mobile Styling */
  #roboverse h3 {
    font-size: 1.2rem !important;
    padding: 0 0.5rem;
    text-align: center !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .feature-item {
    padding: 0.8rem;
  }
  
  .feature-item h4 {
    font-size: 1rem;
  }
  
  .feature-item p {
    font-size: 0.8rem;
  }
  
  .pricing-card {
    padding: 1rem;
  }
  
  .amount {
    font-size: 2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }
  
  .container {
    padding: 0 1rem;
    max-width: 100%;
    overflow-x: hidden;
    width: 100%;
  }
  
  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0;
  }
  
  .header-nav-link {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
  
  .logo {
    position: relative !important;
    left: auto !important;
    transform: none !important;
    height: 85px !important;
    justify-content: center !important;
    width: auto !important;
    max-width: 180px !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 100 !important;
    margin: 0 auto !important;
  }
  
  .logo-image {
    height: 75px !important;
    width: 75px !important;
    max-width: 75px !important;
    max-height: 75px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .logo,
  .logo-image,
  .logo * {
    max-width: none !important;
  }
  
  .nav-links {
    display: flex !important; /* Show nav links on mobile */
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 0.8rem;
  }
  
  .nav-links a {
    font-size: 0.8rem !important;
    padding: 0.4rem 0.6rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 5px;
    text-align: center;
    white-space: nowrap;
  }
  
  
  .product-banner {
    padding: 0.5rem 0;
    margin-top: 120px !important;
    overflow: hidden;
  }
  
  .banner-layout {
    flex-direction: column;
    gap: 0.8rem;
    padding: 0 1rem;
  }
  
  /* Hide desktop layout on mobile */
  .banner-left,
  .banner-right,
  .banner-text {
    display: none;
  }
  
  /* Show mobile layout */
  .banner-mobile-layout {
    display: block;
    text-align: center;
    width: 100%;
    overflow: hidden;
  }
  
  .banner-images-mobile {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 0.5rem 0;
    overflow: hidden;
  }
  
  .banner-robo-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
  }
  
  .banner-title {
    font-size: 1.2rem;
    padding: 0 0.5rem;
    line-height: 1.3;
    word-wrap: break-word;
  }
  
  .banner-subtitle {
    font-size: 0.9rem;
    padding: 0 0.5rem;
    line-height: 1.4;
    word-wrap: break-word;
  }
  
  .banner-cta {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  
  .hero {
    padding: 3rem 0 2rem;
    margin-top: 80px;
    overflow: hidden;
  }
  
  .hero h1 {
    font-size: 1.8rem;
    padding: 0 1rem;
    line-height: 1.3;
    word-wrap: break-word;
  }
  
  /* Hero Home 1 Small Mobile */
  .hero-home1 {
    margin-top: 80px;
  }
  
  .hero-home1 .hero-content {
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
  }
  
  .hero-home1 .hero-text {
    display: contents;
  }
  
  .hero-home1 .hero-text h1 {
    font-size: 2rem;
    text-align: center;
    padding: 0 0.5rem;
    order: 1;
  }
  
  .hero-home1 .hero-image {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    height: 300px;
    width: 100% !important;
    max-width: 100% !important;
    order: 2;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 1rem !important;
    box-sizing: border-box !important;
  }
  
  .hero-home1 .hero-image .hero-main-image {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover !important;
    margin: 0 auto !important;
    display: block !important;
  }
  
  .hero-home1 .hero-text p:nth-of-type(1) {
    font-size: 0.9rem;
    text-align: center;
    padding: 0 0.5rem;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    order: 3;
  }
  
  .hero-home1 .hero-text p:nth-of-type(2) {
    font-size: 0.9rem;
    text-align: center;
    padding: 0 0.5rem;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    order: 4;
  }
  
  .hero-home1 .hero-text-image {
    order: 5;
  }
  
  .hero-home1 .hero-text-image img {
    max-width: 200px;
  }
  
  /* Our Mission Small Mobile */
  .our-mission-section {
    padding: 3rem 0;
  }
  
  .our-mission-section .section-title {
    font-size: 2rem;
    padding: 0 1rem;
  }
  
  .our-mission-section .mission-content .mission-intro {
    font-size: 1.1rem;
    padding: 0 0.5rem;
  }
  
  .our-mission-section .mission-content .mission-details {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }
  
  /* Why It Matters Small Mobile */
  .why-it-matters-section {
    padding: 3rem 0;
  }
  
  .why-it-matters-headline {
    font-size: 2rem;
    padding: 0 0.5rem;
  }
  
  .why-it-matters-subheadline {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
  
  .why-it-matters-image {
    position: relative;
    top: auto;
  }
  
  .why-it-matters-stats-container {
    margin-top: 3rem;
    padding: 0 1rem;
  }
  
  .stats-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .why-it-matters-body p {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
  
  .why-it-matters-video {
    height: 300px;
  }
  
  .why-it-matters-image .image-placeholder {
    height: 300px;
    padding: 1rem;
  }
  
  .stat-card {
    padding: 1rem;
  }
  
  .stat-icon {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-caption {
    font-size: 0.9rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-quote {
    font-size: 1rem;
  }
  
  .testimonial-author {
    font-size: 0.9rem;
  }
  
  .final-tagline {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }
  
  .hero p {
    font-size: 0.95rem;
    padding: 0 1rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
  }
  
  .cta-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  
  .section h2 {
    font-size: 1.6rem;
    padding: 0 1rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
    padding: 0 1rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
  }
  
  .question-card, .robot-form, .roboverse-item, .research-item {
    padding: 1rem;
    margin: 0;
    overflow: hidden;
  }
  
  .question-card h4, .robot-form h4, .roboverse-item h4 {
    font-size: 1.2rem;
    line-height: 1.3;
    word-wrap: break-word;
  }
  
  .research-item h4 {
    font-size: 1.3rem;
    line-height: 1.3;
    word-wrap: break-word;
  }
  
  .features li, .technical-details li, .philosophy-validation li {
    font-size: 0.9rem;
    padding-left: 1.2rem;
    word-wrap: break-word;
  }
  
  .footer h2 {
    font-size: 1.8rem;
  }
  
  .footer p {
    font-size: 0.9rem;
  }
  
  /* Robo Pet Page Small Mobile Styles */
  .feature-card, .feature-item, .spec-category, .launch-card {
    padding: 1rem;
    margin: 0;
    overflow: hidden;
  }
  
  .feature-item h4, .spec-category h4, .launch-card h4 {
    font-size: 1.2rem;
    line-height: 1.3;
    word-wrap: break-word;
  }
  
  .feature-item p, .spec-category p, .launch-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    word-wrap: break-word;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1rem 0;
  }
  
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1rem 0;
  }
  
  .pricing-card {
    padding: 1.5rem;
    margin: 0;
    overflow: hidden;
  }
  
  .amount {
    font-size: 2.5rem;
  }
  
  .pre-order-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    white-space: nowrap;
  }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    padding: 4rem 0 2rem;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section {
    margin: 2rem 0;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .question-card:hover,
  .robot-form:hover,
  .roboverse-item:hover,
  .cta-button:hover {
    transform: none;
    box-shadow: none;
  }
  
  .image-container img:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .nav-links a:hover {
    color: #f5f5f5;
  }
}

/* High DPI Mobile Displays */
@media (-webkit-min-device-pixel-ratio: 2) and (max-width: 768px) {
  .hero h1 {
    font-weight: 300;
  }
  
  .section h2 {
    font-weight: 300;
  }
}

/* About Us Section */
.about-us-hero {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 3rem 0 8rem 0;
  width: 100%;
}

.about-us-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-us-header .about-us-headline {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #00d4ff, #ff0096);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin: 0;
}

.about-us-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-us-image {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-us-video {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-us-image-placeholder {
  width: 100%;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  color: #b8b8b8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.about-us-image-placeholder p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.about-us-caption {
  text-align: center;
  font-style: italic;
  color: #b8b8b8;
  font-size: 0.95rem;
  margin: 0;
}

.about-us-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-us-subheadline {
  font-size: 1.8rem;
  color: #f5f5f5;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.about-us-intro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-us-intro p {
  font-size: 1.2rem;
  color: #b8b8b8;
  line-height: 1.8;
  margin: 0;
}

.about-us-mission {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-us-mission:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.about-us-mission p {
  font-size: 1.1rem;
  color: #b8b8b8;
  line-height: 1.7;
  margin: 0;
}

.about-us-mission strong {
  color: #00d4ff;
  font-weight: 600;
}

/* Core Mission Statement Box */
.core-mission-box-section {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 4rem 0;
  margin-top: -4rem;
}

.core-mission-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem 4rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.core-mission-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.core-mission-box p {
  font-size: 1.2rem;
  color: #b8b8b8;
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
}

.core-mission-box p:last-child {
  margin-bottom: 0;
}

.core-mission-question {
  font-size: 1.8rem;
  background: linear-gradient(45deg, #00d4ff, #ff0096);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  font-style: italic;
  margin: 1rem 0 1.5rem 0 !important;
}

/* Value Cards Section */
.value-cards-section {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 4rem 0 6rem 0;
}

.value-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.value-card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.value-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #f5f5f5;
  margin: 0 0 1rem 0;
}

.value-card-description {
  font-size: 1rem;
  color: #b8b8b8;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for About Us */
@media (max-width: 768px) {
  .about-us-hero {
    padding: 4rem 0 6rem 0;
  }

  .about-us-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-us-video {
    height: 350px;
  }

  .about-us-image-placeholder {
    height: 350px;
  }

  .about-us-header .about-us-headline {
    font-size: 2.5rem;
  }

  .about-us-subheadline {
    font-size: 1.5rem;
  }

  .about-us-intro p {
    font-size: 1.1rem;
  }

  .core-mission-box-section {
    padding: 3rem 0;
    margin-top: -2rem;
  }

  .core-mission-box {
    padding: 2rem 2rem;
  }

  .core-mission-box p {
    font-size: 1.1rem;
  }

  .core-mission-question {
    font-size: 1.5rem;
  }

  .value-cards-section {
    padding: 3rem 0 4rem 0;
  }

  .value-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .value-card {
    padding: 2rem 1.5rem;
  }

  .value-card-icon {
    font-size: 2.5rem;
  }

  .value-card-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 433px) {
  .about-us-hero {
    padding: 3rem 0 4rem 0;
  }

  .about-us-header .about-us-headline {
    font-size: 2rem;
  }

  .about-us-subheadline {
    font-size: 1.3rem;
  }

  .about-us-intro p {
    font-size: 1rem;
  }

  .about-us-video {
    height: 250px;
  }

  .about-us-image-placeholder {
    height: 250px;
    padding: 1.5rem;
  }

  .core-mission-box {
    padding: 1.5rem 1.5rem;
  }

  .core-mission-box p {
    font-size: 1rem;
  }

  .core-mission-question {
    font-size: 1.3rem;
  }

  .value-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-card {
    padding: 1.5rem 1rem;
  }
}

/* About Exi Section */
.about-exi-hero {
  background: #000;
  padding: 3rem 0 0 0;
  width: 100%;
}

.about-exi-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-exi-headline {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #00d4ff, #ff0096);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin: 0;
}

.about-exi-hero-image {
  margin-bottom: 4rem;
}

.about-exi-hero-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-exi-hero-image-placeholder {
  width: 100%;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  color: #b8b8b8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.about-exi-hero-image-placeholder p {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #b8b8b8;
}

.about-exi-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 5rem;
}

.about-exi-cards-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.about-exi-closing-quote {
  grid-column: 1 / -1;
  margin-top: 2rem;
  text-align: left;
}

.about-exi-closing-quote p {
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  background: linear-gradient(45deg, #00d4ff, #ff0096);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1.6;
}

.about-exi-text-content {
  max-width: 100%;
  text-align: left;
  padding-right: 2rem;
}

.about-exi-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #f5f5f5;
  line-height: 1.2;
  margin: 0 0 1.5rem 0;
}

.about-exi-subheadline {
  font-size: 1.2rem;
  color: #f5f5f5;
  line-height: 1.6;
  font-weight: 500;
  margin: 0 0 2rem 0;
}

.about-exi-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.about-exi-body p {
  font-size: 1rem;
  color: #b8b8b8;
  line-height: 1.8;
  margin: 0;
}

.about-exi-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 5rem 0;
}

.about-exi-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-exi-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.about-exi-feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.about-exi-feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f5f5f5;
  margin: 0 0 0.8rem 0;
}

.about-exi-feature-description {
  font-size: 0.9rem;
  color: #b8b8b8;
  line-height: 1.5;
  margin: 0;
}

.about-exi-closing {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
}

.about-exi-closing p {
  font-size: 1.3rem;
  color: #b8b8b8;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for About Exi */
@media (max-width: 768px) {
  .about-exi-hero {
    padding: 4rem 0;
  }

  .about-exi-headline {
    font-size: 2.5rem;
  }

  .about-exi-text-content {
    max-width: 100%;
    margin: 0 auto 3rem auto;
    padding-right: 0;
    text-align: center;
  }

  .about-exi-title {
    font-size: 1.8rem;
  }

  .about-exi-subheadline {
    font-size: 1.1rem;
  }

  .about-exi-hero-img {
    height: 350px;
  }

  .about-exi-hero-image-placeholder {
    height: 350px;
  }

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

  .about-exi-cards-left {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .about-exi-closing-quote {
    margin-top: 1.5rem;
  }

  .about-exi-closing-quote p {
    font-size: 1.1rem;
  }

  .about-exi-feature-card {
    padding: 1.5rem 1rem;
  }

  .about-exi-feature-title {
    font-size: 1rem;
  }

  .about-exi-feature-description {
    font-size: 0.85rem;
  }

  .about-exi-closing {
    padding: 2rem 0;
  }

  .about-exi-closing p {
    font-size: 1.1rem;
  }
}

@media (max-width: 433px) {
  .about-exi-hero {
    padding: 3rem 0;
  }

  .about-exi-headline {
    font-size: 2rem;
  }

  .about-exi-title {
    font-size: 1.8rem;
  }

  .about-exi-subheadline {
    font-size: 1rem;
  }

  .about-exi-body p {
    font-size: 0.9rem;
  }

  .about-exi-hero-img {
    height: 250px;
  }

  .about-exi-hero-image-placeholder {
    height: 250px;
    padding: 1.5rem;
  }

  .about-exi-content-wrapper {
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .about-exi-cards-left {
    grid-template-columns: 1fr;
  }

  .about-exi-closing-quote {
    margin-top: 1.5rem;
  }

  .about-exi-closing-quote p {
    font-size: 1rem;
  }

  .about-exi-text-content {
    padding-right: 0;
    text-align: center;
  }

  .about-exi-title {
    font-size: 1.6rem;
  }

  .about-exi-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-exi-feature-card {
    padding: 1.5rem 1rem;
  }

  .about-exi-closing p {
    font-size: 1rem;
  }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .fade-in {
    opacity: 1;
    transform: none;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  }
}

/* ===== COMPREHENSIVE RESPONSIVE STYLES FOR ALL SCREEN SIZES ===== */

/* Extra Small Devices (200px - 320px) */
@media (min-width: 200px) and (max-width: 320px) {
  .logo {
    height: 60px !important;
    max-width: 120px !important;
  }
  
  .logo-image {
    height: 50px !important;
    width: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
  }
  
  .hero-home1 {
    padding: 2rem 0 !important;
  }
  
  .hero-home1 .hero-content {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .hero-home1 .hero-text {
    display: contents !important;
  }
  
  .hero-home1 h1 {
    font-size: 1.5rem !important;
    order: 1 !important;
  }
  
  .hero-home1 .hero-image {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 1rem !important;
    box-sizing: border-box !important;
  }
  
  .hero-home1 .hero-image .hero-main-image {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    margin: 0 auto !important;
    display: block !important;
  }
  
  .hero-home1 .hero-text p:nth-of-type(1) {
    font-size: 0.9rem !important;
    order: 3 !important;
  }
  
  .hero-home1 .hero-text p:nth-of-type(2) {
    font-size: 0.9rem !important;
    order: 4 !important;
  }
  
  .hero-home1 .hero-text-image {
    order: 5 !important;
  }
  
  .hero-home1 .hero-text-image img {
    max-width: 200px !important;
  }
  
  .our-mission-section {
    padding: 3rem 0 !important;
  }
  
  .our-mission-section .section-title {
    font-size: 2rem !important;
  }
  
  .our-mission-section .mission-intro {
    font-size: 1.1rem !important;
  }
  
  .our-mission-section .mission-details {
    font-size: 0.95rem !important;
  }
  
  .why-it-matters-headline {
    font-size: 2rem !important;
  }
  
  .why-it-matters-subheadline {
    font-size: 1rem !important;
  }
  
  .why-it-matters-body p {
    font-size: 0.95rem !important;
  }
  
  .stat-card {
    padding: 1rem !important;
  }
  
  .stat-number {
    font-size: 1.5rem !important;
  }
  
  .stat-caption {
    font-size: 0.85rem !important;
  }
  
  .about-us-hero h2,
  .about-exi-hero h2 {
    font-size: 2rem !important;
  }
  
  .about-us-hero p,
  .about-exi-hero p {
    font-size: 0.95rem !important;
  }
}

/* Small Devices (320px - 480px) */
@media (min-width: 320px) and (max-width: 480px) {
  .logo {
    height: 65px !important;
    max-width: 130px !important;
  }
  
  .logo-image {
    height: 55px !important;
    width: 55px !important;
    max-width: 55px !important;
    max-height: 55px !important;
  }
  
  .hero-home1 .hero-content {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .hero-home1 .hero-text {
    display: contents !important;
  }
  
  .hero-home1 h1 {
    font-size: 1.8rem !important;
    order: 1 !important;
  }
  
  .hero-home1 .hero-image {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 1rem !important;
    box-sizing: border-box !important;
  }
  
  .hero-home1 .hero-image .hero-main-image {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    margin: 0 auto !important;
    display: block !important;
  }
  
  .hero-home1 .hero-text p:nth-of-type(1) {
    font-size: 1rem !important;
    order: 3 !important;
  }
  
  .hero-home1 .hero-text p:nth-of-type(2) {
    font-size: 1rem !important;
    order: 4 !important;
  }
  
  .hero-home1 .hero-text-image {
    order: 5 !important;
  }
  
  .our-mission-section .section-title {
    font-size: 2.5rem !important;
  }
  
  .why-it-matters-headline {
    font-size: 2.2rem !important;
  }
}

/* Medium Devices (480px - 768px) */
@media (min-width: 480px) and (max-width: 768px) {
  .logo {
    height: 75px !important;
    max-width: 160px !important;
  }
  
  .logo-image {
    height: 65px !important;
    width: 65px !important;
    max-width: 65px !important;
    max-height: 65px !important;
  }
  
  .hero-home1 .hero-content {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .hero-home1 .hero-text {
    display: contents !important;
  }
  
  .hero-home1 h1 {
    font-size: 2.2rem !important;
    order: 1 !important;
  }
  
  .hero-home1 .hero-image {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 1rem !important;
    box-sizing: border-box !important;
  }
  
  .hero-home1 .hero-image .hero-main-image {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    margin: 0 auto !important;
    display: block !important;
  }
  
  .hero-home1 .hero-text p:nth-of-type(1) {
    font-size: 1.1rem !important;
    order: 3 !important;
  }
  
  .hero-home1 .hero-text p:nth-of-type(2) {
    font-size: 1.1rem !important;
    order: 4 !important;
  }
  
  .hero-home1 .hero-text-image {
    order: 5 !important;
  }
  
  .our-mission-section .section-title {
    font-size: 3rem !important;
  }
  
  .why-it-matters-headline {
    font-size: 2.8rem !important;
  }
}

/* Tablet Devices (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .logo {
    height: 85px !important;
    max-width: 180px !important;
  }
  
  .logo-image {
    height: 75px !important;
    width: 75px !important;
    max-width: 75px !important;
    max-height: 75px !important;
  }
  
  .why-it-matters-content {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }
  
  .about-us-content,
  .about-exi-content-wrapper {
    grid-template-columns: 1fr !important;
  }
  
  .about-exi-cards-left {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* Specific widths for hero image centering - 300px, 400px, 500px, 600px */
@media (min-width: 300px) and (max-width: 600px) {
  .hero-home1 .hero-image {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 1rem !important;
    box-sizing: border-box !important;
  }
  
  .hero-home1 .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .hero-home1 .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .hero-home1 .hero-image .hero-main-image {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    margin: 0 auto !important;
    display: block !important;
    border-radius: 20px !important;
  }
}

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }
  
  .hero h1 {
    font-size: 4rem;
  }
  
  .hero p {
    font-size: 1.4rem;
  }
  
  .section h2 {
    font-size: 3rem;
  }
}
