* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Navigation */
.navbar {
  background-color: #1f1f1f;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Logo */
.logo-img {
  height: 45px;
  width: auto;
  max-width: 150px;
  display: block;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:hover {
  color: #ffcc70;
}

/* Mobile Menu Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background-color: #1f1f1f;
  padding: 5rem 2rem 2rem;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  display: block;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
  color: #ffcc70;
}

.mobile-buy-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffcc70, #ff8858);
  color: #1f1f1f !important;
  padding: 0.8rem 1.5rem !important;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
  border: none;
}

/* Overlay when mobile menu is open */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Animate hamburger to X when menu is open */
  .mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Add some padding to body when mobile menu is open to prevent scrolling */
body.menu-open {
  overflow: hidden;
  height: 100vh;
}

/* Hero Section */
.hero {
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background-color: black;
  display: flex;
  align-items: center;
  padding: 6rem 4rem 4rem;
}

.dombra-logo {
  position: absolute;
  left: 10%;  
  top: 50%;
  transform: translateY(-50%);
  width: 350px;  
  height: auto;
  z-index: 3;
}

.hero-content {
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 500px;
  padding: 2rem;
  text-align: right;
}

.hero-content h1 {
  font-size: 3rem;  
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.3rem;  
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  position: absolute;
  left: 10%;
  top: 70%;
  transform: translateY(-50%);
  z-index: 2;
  width: 280px;  
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  box-sizing: border-box;
}

.dombra-main-image {
  max-width: 50%;
  max-height: 90vh;
  object-fit: contain;
  z-index: 2;
}

/* Mobile styles */
@media (max-width: 768px) {
  .hero {
    display: flex;
    flex-direction: column;
    padding: 8rem 1.5rem 2rem;
    min-height: calc(100vh - 60px);
    text-align: left;
  }

  .hero-visuals {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 2rem;
  }

  .hero-visual-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    width: 100%;
  }

  .logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
    padding-top: 1rem;
    margin-top: 2rem;
  }

  .dombra-logo {
    position: static;
    transform: none;
    width: 100%;
    max-width: 150px;
    margin: 0 0 1rem 0;
  }

  .hero-buttons {
    position: static;
    transform: none;
    width: 100%;
    margin: 1rem 0;
    text-align: center;
  }

  .hero-image {
    position: relative;
    width: 60%;
    height: auto;
    margin: 0;
    order: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  
  .dombra-main-image {
    width: 100%;
    max-width: none;
    max-height: 40vh;
    object-fit: contain;
  }

  .hero-content {
    position: static;
    transform: none;
    max-width: 100%;
    text-align: left;
    padding: 1rem 0 0 0;
    order: 2;
    margin-top: auto;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
    text-align: left;
  }

  .hero-content p {
    font-size: 1rem;
    text-align: left;
  }
}

.pre-order-btn, .buy-now-btn, .mobile-buy-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffcc70, #ff8858);
  color: #1f1f1f;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  min-width: 200px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  font-size: 1rem;
  line-height: 1.4;
}

/* Desktop specific button styles */
@media (min-width: 769px) {
  .hero-buttons {
    position: absolute;
    left: 10%;
    top: 70%;
    transform: translateY(-50%);
    z-index: 2;
    width: auto;
    min-width: 200px;
  }
  
  .pre-order-btn {
    width: 100%;
    padding: 1rem 2rem;
  }
}

/* Mobile specific button styles */
@media (max-width: 768px) {
  .pre-order-btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
    white-space: normal; /* Allow text to wrap */
    padding: 0.8rem 0.5rem; /* Adjust padding */
    font-size: 0.9rem; /* Slightly smaller font */
    line-height: 1.3; /* Tighter line height */
    word-wrap: break-word; /* Break long words if needed */
  }
  
  .hero-buttons {
    padding: 0.5rem 0;
    width: 100%;
  }
}

/* Pre-order Section */
.pre-order-section {
  padding: 6rem 2rem;
  text-align: center;
  background-color: #f9f9f9;
}

.pre-order-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333;
}

.pre-order-section p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  display: flex;
  max-width: 700px;
  margin: 0 auto;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.contact-input {
  flex: 2;
  min-width: 200px;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 30px;
  background-color: #e8e8e8;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.contact-input:focus {
  box-shadow: 0 0 0 2px #ff8858;
}

.contact-input::placeholder {
  color: #999;
  opacity: 1;
}

.form-submit-btn {
  flex: 1;
  min-width: 240px;
  padding: 1rem 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: normal;
  word-wrap: break-word;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #ffcc70, #ff8858);
  color: #1f1f1f;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(255, 136, 88, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 136, 88, 0.5);
  color: #1f1f1f;
}

/* Mobile buy button specific styles */
.mobile-buy-btn {
  width: 100%;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem !important;
}

/* Desktop specific button styles */
@media (min-width: 993px) {
  .mobile-buy-btn {
    display: none;
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .pre-order-section {
    padding: 4rem 1.5rem;
  }
  
  .pre-order-section h2 {
    font-size: 2rem;
  }
  
  .pre-order-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .contact-form {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    gap: 1rem;
  }
  
  .contact-input,
  .form-submit-btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .form-submit-btn {
    white-space: normal;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Small mobile devices */
@media (max-width: 400px) {
  .pre-order-section {
    padding: 3rem 1rem;
  }
  
  .pre-order-section h2 {
    font-size: 1.75rem;
  }
  
  .contact-form {
    width: 100%;
  }
  
  .contact-input,
  .form-submit-btn {
    padding: 0.8rem 1.25rem;
    font-size: 0.9rem;
  }
}

/* Ensure button doesn't grow too much on larger screens */
@media (min-width: 768px) {
  .form-submit-btn {
    white-space: nowrap;
    padding: 1rem 0.75rem;
    font-size: 1rem;
  }
}

/* Dombyra section */
.dombyra-section {
  background-color: #fff;
  padding: 4rem 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.dombyra-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border-spacing: 0;
  margin: 0;
  padding: 0;
}

.dombyra-table td {
  vertical-align: middle;
  padding: 0;
  margin: 0;
  border: none;
}

.text-cell {
  padding: 2rem 1.5rem;
  text-align: center;
  max-width: 50%;
  box-sizing: border-box;
}

.text-cell p {
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.6;
  width: 100%;
}

.text-right {
  text-align: center !important;
}

.image-cell {
  padding: 0;
  line-height: 0;
  box-sizing: border-box;
  margin: 0;
  width: 427.2px;
  height: 284.8px;
  position: relative;
  overflow: hidden;
}

.image-cell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.title-cell {
  text-align: center;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
}

.title-cell h2 {
  margin: 0;
  font-size: 2rem;
  color: #333;
  max-width: 100%;
  padding: 0 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .dombyra-section {
    padding: 3rem 1rem;
  }
  
  .content-container {
    padding: 0 1rem;
  }
  
  .text-cell, 
  .title-cell {
    padding: 1.5rem 0;
  }
  
  .image-cell {
    padding: 0;
  }
  
  .title-cell h2 {
    font-size: 1.75rem;
    padding: 0 0.5rem;
  }
}

/* How It Works Section */
.how-it-works {
  padding: 80px 16px 100px 16px;
  background: #fafbfc;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.how-it-works-content {
  display: block;
}

.how-it-works-text {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.text-highlight {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 3rem;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.features-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

.features-list li {
  position: relative;
  padding: 28px 32px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  border: 1px solid #edf2f7;
}

.features-list li::after {
  display: none;
}

.features-list li:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.features-list li::before {
  display: none;
}

.features-list li:nth-child(1):hover::before,
.features-list li:nth-child(2):hover::before,
.features-list li:nth-child(3):hover::before {
  background: white;
}

.features-list li:nth-child(4)::before {
  display: none;
}

.features-list li:nth-child(4):hover {
  transform: none;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.features-list li:nth-child(4) span {
  color: #1a202c;
}

.feature-icon {
  width: auto;
  height: auto;
  margin-right: 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 16px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.features-list li:hover .feature-icon {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
  transform: scale(1.1) rotate(2deg);
}

.features-list li:hover .feature-icon::before {
  opacity: 1;
}

.feature-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.features-list li:hover .feature-icon img {
  transform: scale(1.1);
  filter: brightness(1.1) contrast(1.1);
}

.features-list li span {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #2d3748;
  font-weight: 500;
  transition: color 0.4s ease;
}

.features-list li:hover span {
  color: #1a202c;
}

.features-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

/* Connecting Lines */
.features-list li:not(:last-child)::before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 24px;
  background: linear-gradient(180deg, #e2e8f0 0%, transparent 100%);
  z-index: -1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .how-it-works {
      padding: 60px 16px 80px 16px;
  }

  .text-highlight {
      font-size: 2rem;
      margin-bottom: 2rem;
  }

  .features-list li {
      flex-direction: column;
      text-align: center;
      padding: 28px 24px;
      min-height: 140px;
  }

  .feature-icon {
      margin-right: 0;
      margin-bottom: 16px;
      padding: 12px;
  }

  .feature-icon img {
      width: 36px;
      height: 36px;
  }

  .features-list li span {
      font-size: 1rem;
  }
}

/* Animation for entrance */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.features-list li {
  animation: fadeInUp 0.6s ease forwards;
}

.features-list li:nth-child(1) { animation-delay: 0.1s; }
.features-list li:nth-child(2) { animation-delay: 0.2s; }
.features-list li:nth-child(3) { animation-delay: 0.3s; }
.features-list li:nth-child(4) { animation-delay: 0.4s; }

/* App Features Section */
.app-features {
  padding: 4rem 0;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.app-features .feature-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;  
  margin: 0 auto;   
  padding: 1rem;
  box-sizing: border-box;
  background: transparent;
  box-shadow: none;
  transition: none;
}

.app-features .feature-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 300px;  
  border-radius: 12px;
  transition: transform 0.3s ease;
  object-fit: contain;
  border: none;
}

.app-features .feature-image:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-mockup:hover {
  transform: none;
  box-shadow: none;
}

.feature-mockup::before {
  content: none;
}

.feature-mockup:hover::before {
  content: none;
  opacity: 0;
}

.feature-mockup {
  width: 220px;
  height: auto;
  border-radius: 20px;
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  transition: none;
}

.feature-mockup:hover {
  transform: none;
  box-shadow: none;
}

.feature-mockup::before {
  content: none;
}

.feature-mockup:hover::before {
  content: none;
  opacity: 0;
}

.feature-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2d3748;
  transition: color 0.3s ease;
}

.feature-content:hover .feature-title {
  color: #667eea;
}

.feature-description {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.feature-content:hover .feature-description {
  color: #2d3748;
}

/* General image styling */
.feature-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
  transition: transform 0.3s ease;
  filter: brightness(0.9) contrast(1.1);
}

.feature-mockup:hover .feature-image {
  transform: scale(1.1);
  filter: brightness(1) contrast(1.2);
}

/* Alternating layout */
.features-grid:nth-child(even) {
  direction: rtl;
}

.features-grid:nth-child(even) .feature-content {
  direction: ltr;
}

/* Responsive design */
@media (max-width: 768px) {
  .features-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
  }

  .features-grid:nth-child(even) {
      direction: ltr;
  }

  .feature-mockup {
      order: -1;
      width: 250px;
      height: auto;
  }

  .section-title {
      font-size: 2rem;
  }

  .feature-title {
      font-size: 1.4rem;
  }

  .feature-description {
      font-size: 1rem;
  }
}

/* Reviews Section */
.reviews {
  padding: 40px 20px;
  background-color: white;
}

.reviews-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #333;
  text-align: center;
}

.review-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}

.review-card {
  background-color: #fdfdfd;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 320px;
  max-width: 380px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.reviewer {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.reviewer-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
  border: 2px solid #ddd;
}

.reviewer-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
}

.review-text {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
}

/* Footer */
.footer {
  background-color: #2a2a2a;
  color: white;
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.8;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: #444;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s;
}

.social-link:hover {
  background-color: #555;
}

.social-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.copyright {
  color: #ccc;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-content {
    margin-left: 0;
    padding: 3rem 2rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .how-it-works-content,
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-content,
  .feature-mockup {
    order: unset;
  }

  .device-images {
    justify-content: center;
    flex-wrap: wrap;
  }

  .phone-mockup,
  .dombra-head {
    width: 150px;
    height: 200px;
  }

  .email-form {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .future-music {
    min-height: 80vh;
  }

  .future-music h2 {
    font-size: 2rem;
    text-align: center;
  }
}

/* Base responsive settings */
:root {
  --content-padding: 1.5rem;
  --section-padding: 4rem 0;
  --max-content-width: 1200px;
}

.container {
  width: 100%;
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

/* Responsive typography */
html {
  font-size: 16px;
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .container {
    padding: 0 1rem;
  }
}

/* Hero section responsiveness */
.hero {
  padding: 6rem 1.5rem 4rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero p {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.hero-image {
  max-width: 100%;
  margin: 2rem auto;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* Dombyra section responsiveness */
.dombyra-section {
  padding: 4rem 0;
}

.dombyra-table {
  width: 100%;
  border-collapse: collapse;
}

.dombyra-table td {
  padding: 1rem;
  vertical-align: middle;
}

.dombyra-table img {
  max-width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Responsive table layout */
@media (max-width: 768px) {
  .dombyra-table {
    display: block;
  }
  
  .dombyra-table tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
  }
  
  .dombyra-table td {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.5rem 0;
  }
  
  .text-right {
    text-align: left !important;
  }
  
  .title-cell {
    order: -1;
    text-align: center !important;
    padding-bottom: 1.5rem !important;
  }
}

/* Features section responsiveness */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 4rem 0;
  gap: 2rem;
}

.feature-content, .feature-mockup {
  flex: 1;
  min-width: 300px;
}

.feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Reviews section responsiveness */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.review-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Responsive adjustments for small screens */
@media (max-width: 480px) {
  .hero {
    padding: 5rem 1rem 3rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }

  .features-grid {
    flex-direction: column;
  }
  
  .feature-content, .feature-mockup {
    width: 100%;
    min-width: auto;
  }
  
  .review-grid {
    grid-template-columns: 1fr;
  }
}

/* Ensure all buttons are touch-friendly on mobile */
button, .buy-now-btn, .pre-order-btn {
  min-height: 44px;
  min-width: 44px;
}

/* Make sure form elements are mobile-friendly */
input, textarea, select {
  font-size: 16px;
  min-height: 44px;
}