* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #111;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(46, 108, 255, 0.1);
}

header h1 {
  font-weight: 700;
  font-size: 24px;
  margin: 0;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #111;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #2e6cff;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 5%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-text {
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.hero-text h2 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-text p {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-badge {
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.button-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.8);
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-secondary:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.hero-illustration {
  width: 450px;
  height: 350px;
  background: linear-gradient(135deg, #2e6cff, #1e5ce6);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(46, 108, 255, 0.3);
}

.hero-illustration::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  top: -50px;
  right: -50px;
}

.hero-illustration::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  bottom: -30px;
  left: -30px;
}

.smartphone-mockup {
  width: 200px;
  height: 350px;
  background: #1a1a1a;
  border-radius: 25px;
  position: relative;
  border: 8px solid #333;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.smartphone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 17px;
  position: relative;
  overflow: hidden;
}

.app-interface {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: rgba(255,255,255,0.9);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.app-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2e6cff, #1e5ce6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.app-text {
  font-size: 12px;
  color: #333;
  text-align: center;
  font-weight: 600;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  animation: float 3s ease-in-out infinite;
}

.floating-dot:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-dot:nth-child(2) { top: 60%; right: 15%; animation-delay: 1s; }
.floating-dot:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 2s; }

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

.button {
  background: #2e6cff;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 108, 255, 0.3);
}

.button:hover {
  background: #1e5ce6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 108, 255, 0.4);
}

.button-secondary {
  background: transparent;
  color: #2e6cff;
  border: 2px solid #2e6cff;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-secondary:hover {
  background: #2e6cff;
  color: white;
  transform: translateY(-2px);
}

section {
  padding: 80px 5%;
}

section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.categories, .products, .how-it-works, .property, .services, .features, .target-users, .global-expansion {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.icon-digital { background: linear-gradient(135deg, #667eea, #764ba2); }
.icon-automobile { background: linear-gradient(135deg, #f093fb, #f5576c); }
.icon-housing { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.icon-food { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.icon-services { background: linear-gradient(135deg, #fa709a, #fee140); }

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
}

.card p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.card-features {
  margin-top: 15px;
  text-align: left;
}

.card-features li {
  font-size: 14px;
  color: #555;
  margin-bottom: 5px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}

.card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2e6cff;
  font-weight: bold;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.product-image {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.smartwatch-image {
  background: linear-gradient(135deg, #1a1a1a, #333);
  display: flex;
  align-items: center;
  justify-content: center;
}

.smartwatch-display {
  width: 120px;
  height: 120px;
  background: #000;
  border-radius: 50%;
  border: 8px solid #444;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.smartwatch-screen {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.laptop-image {
  background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.laptop-mockup {
  width: 160px;
  height: 100px;
  background: #333;
  border-radius: 8px;
  position: relative;
  border: 3px solid #555;
}

.laptop-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  font-weight: bold;
}

.camera-image {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  display: flex;
  align-items: center;
  justify-content: center;
}

.camera-mockup {
  width: 100px;
  height: 80px;
  background: #1a1a1a;
  border-radius: 15px;
  position: relative;
  border: 4px solid #333;
}

.camera-lens {
  width: 40px;
  height: 40px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid #444;
}

.camera-lens::before {
  content: '';
  width: 20px;
  height: 20px;
  background: #333;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.laptop-plus-image {
  background: linear-gradient(135deg, #e8f4fd, #d1e7dd);
  display: flex;
  align-items: center;
  justify-content: center;
}

.laptop-plus-mockup {
  width: 140px;
  height: 90px;
  background: #2c3e50;
  border-radius: 8px;
  position: relative;
  border: 3px solid #34495e;
}

.laptop-plus-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #43e97b, #38f9d7);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  font-weight: bold;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 600;
}

.product-price {
  font-size: 20px;
  font-weight: 700;
  color: #2e6cff;
}

.how-it-works {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step {
  display: flex;
  align-items: center;
  gap: 20px;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2e6cff, #1e5ce6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.step-text {
  font-size: 16px;
  color: #555;
}

.restaurant-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.restaurant-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #ffecd2, #fcb69f);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.restaurant-image::before {
  content: '🍝';
  font-size: 60px;
}

.restaurant-info {
  padding: 20px;
}

.restaurant-info h3 {
  margin: 0 0 5px;
  font-size: 20px;
  font-weight: 600;
}

.restaurant-info p {
  margin: 0 0 15px;
  color: #666;
}

.property-image {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.apartment-image {
  background: linear-gradient(135deg, #e8f4fd, #d1e7dd);
  display: flex;
  align-items: center;
  justify-content: center;
}

.apartment-mockup {
  width: 120px;
  height: 80px;
  background: #fff;
  border-radius: 8px;
  position: relative;
  border: 2px solid #ddd;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.apartment-windows {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  gap: 8px;
}

.window {
  width: 15px;
  height: 20px;
  background: #87ceeb;
  border-radius: 2px;
}

.apartment-door {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 25px;
  background: #8b4513;
  border-radius: 2px 2px 0 0;
}

.villa-image {
  background: linear-gradient(135deg, #ffeaa7, #fab1a0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.villa-mockup {
  width: 140px;
  height: 90px;
  background: #fdcb6e;
  border-radius: 8px 8px 0 0;
  position: relative;
  border: 2px solid #e17055;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.villa-roof {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 20px solid #e17055;
}

.villa-windows {
  position: absolute;
  top: 15px;
  left: 10px;
  right: 10px;
  display: flex;
  gap: 10px;
}

.villa-window {
  width: 18px;
  height: 22px;
  background: #74b9ff;
  border-radius: 2px;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: linear-gradient(135deg, #2e6cff, #1e5ce6);
  color: white;
}

.global-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.global-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border-color: #2e6cff;
}

.country-flag {
  font-size: 48px;
  margin-bottom: 15px;
}

.country-domain {
  font-size: 18px;
  font-weight: 600;
  color: #2e6cff;
  margin-bottom: 10px;
}

.testimonials {
  background: #f8f9fa;
  padding: 80px 5%;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2e6cff, #1e5ce6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.author-info h4 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 600;
}

.author-info p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.pricing-section {
  padding: 80px 5%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

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

.pricing-card.featured {
  border-color: #2e6cff;
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #2e6cff;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.price {
  font-size: 48px;
  font-weight: 800;
  color: #2e6cff;
  margin-bottom: 5px;
}

.price span {
  font-size: 18px;
  font-weight: 400;
  color: #666;
}

.pricing-header p {
  color: #666;
  margin: 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  color: #555;
}

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

.cta-section {
  background: linear-gradient(135deg, #2e6cff, #1e5ce6);
  color: white;
  text-align: center;
  padding: 80px 5%;
}

.footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 5% 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2e6cff;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #2e6cff;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #2e6cff;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  color: #999;
}

.cta-section h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.button-white {
  background: white;
  color: #2e6cff;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

.stats-section {
  background: #f8f9fa;
  padding: 60px 5%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #2e6cff;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 18px;
  color: #666;
  font-weight: 500;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Base mobile optimizations */
  html {
    font-size: 14px;
  }
  
  body {
    overflow-x: hidden;
  }
  
  * {
    -webkit-tap-highlight-color: transparent;
  }
  /* Header */
  header {
    padding: 15px 5%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  header h1 {
    font-size: 20px;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 99;
  }
  
  nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  nav a {
    font-size: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(46, 108, 255, 0.1);
    text-align: center;
    border: 1px solid rgba(46, 108, 255, 0.2);
  }
  
  nav a:hover {
    background: rgba(46, 108, 255, 0.2);
    color: #2e6cff;
  }
  
  /* Hero Section */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 30px 4%;
    min-height: auto;
    background-attachment: scroll;
  }
  
  .hero-text {
    max-width: 100%;
    margin-bottom: 25px;
    order: 1;
  }
  
  .hero-text h2 {
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 15px;
  }
  
  .hero-text p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .hero-badges {
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  
  .hero-badge {
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 15px;
  }
  
  .hero-buttons {
    justify-content: center;
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-illustration {
    width: 100%;
    max-width: 260px;
    height: 220px;
    margin: 0 auto;
    order: 2;
  }
  
  .smartphone-mockup {
    width: 140px;
    height: 220px;
  }
  
  .app-interface {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    gap: 10px;
  }
  
  .app-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .app-text {
    font-size: 10px;
  }
  
  /* Sections */
  section {
    padding: 35px 4%;
  }
  
  section h2 {
    font-size: 26px;
    margin-bottom: 25px;
    line-height: 1.2;
  }
  
  .section-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.4;
  }
  
  /* Grid Layouts */
  .categories, .products, .how-it-works, .property, .services, .features, .target-users, .global-expansion {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .how-it-works {
    grid-template-columns: 1fr;
  }
  
  /* Cards */
  .card, .product-card, .feature-card, .global-card {
    padding: 18px;
    border-radius: 12px;
  }
  
  .card-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .card h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }
  
  .card p {
    font-size: 13px;
    line-height: 1.4;
  }
  
  .card-features {
    margin-top: 12px;
  }
  
  .card-features li {
    font-size: 12px;
    margin-bottom: 4px;
    padding-left: 18px;
  }
  
  /* Product Images */
  .product-image {
    height: 140px;
  }
  
  .product-info {
    padding: 15px;
  }
  
  .product-info h3 {
    font-size: 16px;
    margin-bottom: 4px;
  }
  
  .product-price {
    font-size: 18px;
  }
  
  .smartwatch-display {
    width: 70px;
    height: 70px;
    border-width: 6px;
  }
  
  .smartwatch-screen {
    width: 45px;
    height: 45px;
    font-size: 9px;
  }
  
  .laptop-mockup {
    width: 110px;
    height: 70px;
    border-width: 2px;
  }
  
  .laptop-screen {
    font-size: 7px;
  }
  
  .camera-mockup {
    width: 70px;
    height: 55px;
    border-width: 3px;
  }
  
  .camera-lens {
    width: 25px;
    height: 25px;
    border-width: 2px;
  }
  
  .camera-lens::before {
    width: 15px;
    height: 15px;
  }
  
  .laptop-plus-mockup {
    width: 100px;
    height: 65px;
    border-width: 2px;
  }
  
  .laptop-plus-screen {
    font-size: 7px;
  }
  
  /* Steps */
  .step {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .step-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .step-text {
    font-size: 13px;
    line-height: 1.4;
  }
  
  .steps {
    gap: 25px;
  }
  
  /* Stats */
  .stats-section {
    padding: 35px 4%;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .stat-item {
    padding: 15px 10px;
  }
  
  .stat-number {
    font-size: 32px;
    margin-bottom: 8px;
  }
  
  .stat-label {
    font-size: 13px;
    line-height: 1.3;
  }
  
  /* Testimonials */
  .testimonials {
    padding: 35px 4%;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .testimonial-card {
    padding: 18px;
  }
  
  .testimonial-content {
    margin-bottom: 15px;
  }
  
  .testimonial-content p {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .testimonial-author {
    gap: 12px;
  }
  
  .author-avatar {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  
  .author-info h4 {
    font-size: 14px;
    margin-bottom: 3px;
  }
  
  .author-info p {
    font-size: 12px;
  }
  
  /* Pricing */
  .pricing-section {
    padding: 35px 4%;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .pricing-card {
    padding: 22px;
  }
  
  .pricing-card.featured {
    transform: none;
    border-width: 2px;
  }
  
  .pricing-badge {
    font-size: 12px;
    padding: 6px 16px;
  }
  
  .pricing-header h3 {
    font-size: 20px;
  }
  
  .price {
    font-size: 32px;
  }
  
  .price span {
    font-size: 14px;
  }
  
  .pricing-header p {
    font-size: 13px;
  }
  
  .pricing-features li {
    font-size: 13px;
    padding: 8px 0;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 35px 4%;
  }
  
  .cta-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .cta-section p {
    font-size: 15px;
    margin-bottom: 25px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .button, .button-secondary, .button-white {
    width: 100%;
    max-width: 260px;
    padding: 14px 20px;
    font-size: 15px;
    border-radius: 8px;
  }
  
  /* Footer */
  .footer {
    padding: 35px 4% 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-section h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .footer-section h4 {
    font-size: 15px;
    margin-bottom: 12px;
  }
  
  .footer-section p {
    font-size: 13px;
    margin-bottom: 15px;
  }
  
  .footer-section ul li {
    margin-bottom: 8px;
  }
  
  .footer-section ul li a {
    font-size: 13px;
  }
  
  .social-links {
    justify-content: center;
    gap: 12px;
  }
  
  .social-link {
    font-size: 13px;
  }
  
  .footer-bottom {
    padding-top: 15px;
    font-size: 12px;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  html {
    font-size: 13px;
  }
  
  header {
    padding: 8px 3%;
  }
  
  header h1 {
    font-size: 18px;
  }
  
  .mobile-menu-toggle span {
    width: 22px;
    height: 2px;
  }
  
  nav {
    top: 60px;
    padding: 15px;
  }
  
  nav a {
    font-size: 15px;
    padding: 10px 14px;
  }
  
  .hero {
    padding: 25px 3%;
  }
  
  .hero-text h2 {
    font-size: 24px;
    line-height: 1.1;
  }
  
  .hero-text p {
    font-size: 13px;
    line-height: 1.4;
  }
  
  .hero-badges {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  
  .hero-badge {
    font-size: 10px;
    padding: 4px 8px;
  }
  
  .hero-buttons {
    gap: 10px;
  }
  
  .hero-illustration {
    max-width: 220px;
    height: 180px;
  }
  
  .smartphone-mockup {
    width: 100px;
    height: 180px;
    border-width: 6px;
  }
  
  .app-interface {
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }
  
  .app-icon {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  
  .app-text {
    font-size: 9px;
  }
  
  section {
    padding: 25px 3%;
  }
  
  section h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .section-subtitle {
    font-size: 13px;
    margin-bottom: 25px;
  }
  
  .card, .product-card, .feature-card, .global-card {
    padding: 15px;
    border-radius: 10px;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .card h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }
  
  .card p {
    font-size: 12px;
  }
  
  .card-features li {
    font-size: 11px;
    margin-bottom: 3px;
    padding-left: 16px;
  }
  
  .product-image {
    height: 120px;
  }
  
  .product-info {
    padding: 12px;
  }
  
  .product-info h3 {
    font-size: 15px;
  }
  
  .product-price {
    font-size: 16px;
  }
  
  .smartwatch-display {
    width: 60px;
    height: 60px;
    border-width: 5px;
  }
  
  .smartwatch-screen {
    width: 40px;
    height: 40px;
    font-size: 8px;
  }
  
  .laptop-mockup {
    width: 90px;
    height: 60px;
  }
  
  .camera-mockup {
    width: 60px;
    height: 45px;
  }
  
  .camera-lens {
    width: 20px;
    height: 20px;
  }
  
  .step {
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .step-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .step-text {
    font-size: 12px;
  }
  
  .stats-section {
    padding: 25px 3%;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .stat-item {
    padding: 12px 8px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .stat-label {
    font-size: 12px;
  }
  
  .testimonials {
    padding: 25px 3%;
  }
  
  .testimonials-grid {
    gap: 15px;
  }
  
  .testimonial-card {
    padding: 15px;
  }
  
  .testimonial-content p {
    font-size: 12px;
  }
  
  .author-avatar {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  
  .author-info h4 {
    font-size: 13px;
  }
  
  .author-info p {
    font-size: 11px;
  }
  
  .pricing-section {
    padding: 25px 3%;
  }
  
  .pricing-grid {
    gap: 15px;
  }
  
  .pricing-card {
    padding: 18px;
  }
  
  .pricing-badge {
    font-size: 11px;
    padding: 5px 12px;
  }
  
  .pricing-header h3 {
    font-size: 18px;
  }
  
  .price {
    font-size: 28px;
  }
  
  .price span {
    font-size: 13px;
  }
  
  .pricing-features li {
    font-size: 12px;
    padding: 6px 0;
  }
  
  .cta-section {
    padding: 25px 3%;
  }
  
  .cta-section h2 {
    font-size: 22px;
  }
  
  .cta-section p {
    font-size: 13px;
  }
  
  .button, .button-secondary, .button-white {
    max-width: 240px;
    padding: 12px 18px;
    font-size: 14px;
  }
  
  .footer {
    padding: 25px 3% 15px;
  }
  
  .footer-content {
    gap: 20px;
  }
  
  .footer-section h3 {
    font-size: 16px;
  }
  
  .footer-section h4 {
    font-size: 14px;
  }
  
  .footer-section p {
    font-size: 12px;
  }
  
  .footer-section ul li a {
    font-size: 12px;
  }
  
  .social-link {
    font-size: 12px;
  }
  
  .footer-bottom {
    font-size: 11px;
  }
}

/* Tablet Devices */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-text h2 {
    font-size: 48px;
  }
  
  .hero-illustration {
    width: 350px;
    height: 280px;
  }
  
  .categories, .products, .features, .target-users, .global-expansion {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large Screens */
@media (min-width: 1200px) {
  .hero-text {
    max-width: 600px;
  }
  
  .hero-text h2 {
    font-size: 64px;
  }
  
  .hero-illustration {
    width: 500px;
    height: 400px;
  }
  
  .smartphone-mockup {
    width: 250px;
    height: 400px;
  }
}

/* Extra Large Screens */
@media (min-width: 1400px) {
  .hero-text h2 {
    font-size: 72px;
  }
  
  .hero-illustration {
    width: 550px;
    height: 450px;
  }
  
  .smartphone-mockup {
    width: 280px;
    height: 450px;
  }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    padding: 20px 4%;
    min-height: auto;
  }
  
  .hero-text h2 {
    font-size: 24px;
  }
  
  .hero-text p {
    font-size: 14px;
  }
  
  .hero-illustration {
    max-width: 200px;
    height: 160px;
  }
  
  .smartphone-mockup {
    width: 120px;
    height: 160px;
  }
  
  section {
    padding: 25px 4%;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  
  .stat-number {
    font-size: 24px;
  }
  
  .stat-label {
    font-size: 11px;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-badge,
  .card-icon,
  .step-icon,
  .feature-icon,
  .author-avatar {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .floating-dot {
    animation: none;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .hero-badge {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
  }
  
  .card,
  .product-card,
  .feature-card,
  .global-card,
  .testimonial-card,
  .pricing-card {
    background: rgba(255,255,255,0.95);
  }
} 