/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.2rem;
  color: #47456d;
}

.nav-logo img {
  height: 60px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: #47456d;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #bfa14a;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #bfa14a;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #47456d;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #47456d 0%, #2d2b4a 100%);
  color: white;
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  color: #e0d7ff;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-showcase {
  position: relative;
}

.ai-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.ai-preview {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #bfa14a;
  color: #47456d;
}

.btn-primary:hover {
  background: #a8903f;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
  background: transparent;
  color: #47456d;
  border-color: #bfa14a;
}

.btn-outline:hover {
  background: #bfa14a;
  color: white;
}

/* Services Overview */
.services-overview {
  padding: 80px 0;
  background: #f8f9fa;
}

.services-overview h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #47456d;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: #47456d;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

.text-center {
  text-align: center;
}

/* Featured Product */
.featured-product {
  padding: 80px 0;
  background: white;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-info h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #47456d;
}

.product-tagline {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 32px;
}

.product-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
}

.feature-icon {
  font-size: 1.2rem;
}

.product-visual {
  display: flex;
  justify-content: center;
}

.frame-mockup {
  background: #47456d;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.frame-screen {
  width: 300px;
  height: 400px;
  background: #000;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screen-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  padding: 16px;
}

.widget-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  height: 100%;
}

.widget {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.widget.clock {
  grid-column: 1 / -1;
  font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #47456d 0%, #2d2b4a 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  color: #e0d7ff;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: #2d2b4a;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-section h4 {
  margin-bottom: 16px;
  color: #bfa14a;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #e0d7ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #bfa14a;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: #e0d7ff;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #47456d 0%, #2d2b4a 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.2rem;
  color: #e0d7ff;
  max-width: 600px;
  margin: 0 auto;
}

/* Company Story */
.company-story {
  padding: 80px 0;
  background: white;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-text h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: #47456d;
}

.story-text p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #666;
}

.story-image {
  display: flex;
  justify-content: center;
}

.image-placeholder {
  width: 300px;
  height: 200px;
  background: linear-gradient(45deg, #bfa14a, #e6d7a7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #47456d;
}

/* Mission & Vision */
.mission-vision {
  padding: 80px 0;
  background: #f8f9fa;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.mv-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.mv-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.mv-card h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: #47456d;
}

.mv-card p {
  color: #666;
  line-height: 1.6;
}

/* Values */
.values {
  padding: 80px 0;
  background: white;
}

.values h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #47456d;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.value-card {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: #47456d;
}

.value-card p {
  color: #666;
  line-height: 1.6;
}

/* Team */
.team {
  padding: 80px 0;
  background: #f8f9fa;
}

.team h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #47456d;
}

.team-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background: white;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.member-avatar {
  margin-bottom: 20px;
}

.avatar-placeholder {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #bfa14a, #e6d7a7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto;
}

.team-member h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #47456d;
}

.team-member p {
  color: #666;
  line-height: 1.6;
}

/* Stats */
.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, #47456d 0%, #2d2b4a 100%);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #bfa14a;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1.1rem;
  color: #e0d7ff;
}

/* Services Overview Detailed */
.services-overview-detailed {
  padding: 60px 0;
  background: #f8f9fa;
}

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #47456d;
}

.services-intro p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
}

/* Service Detail */
.service-detail {
  padding: 80px 0;
  background: white;
}

.service-detail.alt-bg {
  background: #f8f9fa;
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-content.reverse {
  direction: rtl;
}

.service-content.reverse > * {
  direction: ltr;
}

.service-header {
  margin-bottom: 32px;
}

.service-icon-large {
  font-size: 4rem;
  margin-bottom: 16px;
}

.service-header h2 {
  font-size: 2.5rem;
  margin-bottom: 8px;
  color: #47456d;
}

.service-tagline {
  font-size: 1.2rem;
  color: #666;
}

.service-description {
  margin-bottom: 32px;
}

.service-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
}

.service-features {
  margin-bottom: 32px;
}

.service-features h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: #47456d;
}

.service-features ul {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 8px 0;
  color: #666;
  position: relative;
  padding-left: 20px;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #bfa14a;
  font-weight: bold;
}

.service-use-cases {
  margin-bottom: 32px;
}

.service-use-cases h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: #47456d;
}

.use-cases-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: #f0f0f0;
  color: #47456d;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.service-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Service Demo */
.service-demo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.demo-input,
.demo-output {
  flex: 1;
}

.demo-input h4,
.demo-output h4 {
  margin-bottom: 12px;
  color: #47456d;
  font-size: 1.1rem;
}

.demo-input p {
  background: #f8f9fa;
  padding: 16px;
  border-radius: 8px;
  color: #666;
  font-style: italic;
  margin-bottom: 16px;
}

.demo-arrow {
  font-size: 2rem;
  color: #bfa14a;
  font-weight: bold;
}

.demo-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(45deg, #bfa14a, #e6d7a7);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #47456d;
  font-weight: 600;
}

.image-placeholder-demo {
  text-align: center;
  color: #47456d;
  font-weight: 600;
}

.demo-image.damaged {
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
}

.demo-image.restored {
  background: linear-gradient(45deg, #51cf66, #74c0fc);
}

/* Effects Showcase */
.effects-showcase {
  display: flex;
  justify-content: center;
}

.effect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.effect-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.effect-preview {
  font-size: 2rem;
  margin-bottom: 8px;
}

.effect-item span {
  font-weight: 600;
  color: #47456d;
}

/* Video Demo */
.video-demo {
  display: flex;
  justify-content: center;
}

.video-placeholder {
  width: 300px;
  height: 200px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
}

.play-button {
  font-size: 3rem;
  margin-bottom: 8px;
}

/* Custom Solutions */
.custom-solutions {
  display: flex;
  justify-content: center;
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.solution-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.solution-card h4 {
  margin-bottom: 8px;
  color: #47456d;
}

.solution-card p {
  font-size: 0.9rem;
  color: #666;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.pricing-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #47456d;
}

.pricing-section > .container > p {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid #bfa14a;
  transform: scale(1.05);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #bfa14a;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.plan-header h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #47456d;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: #bfa14a;
  margin-bottom: 8px;
}

.price span {
  font-size: 1rem;
  color: #666;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.plan-features li {
  padding: 8px 0;
  color: #666;
  border-bottom: 1px solid #f0f0f0;
}

.plan-features li:last-child {
  border-bottom: none;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: white;
}

.contact-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #47456d;
}

.contact-content > p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
}

.contact-form {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #bfa14a;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Quick Help */
.quick-help {
  padding: 80px 0;
  background: #f8f9fa;
}

.quick-help h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #47456d;
}

.help-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.help-category {
  background: white;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.help-category:hover {
  transform: translateY(-5px);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.help-category h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #47456d;
}

.help-category p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: white;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #47456d;
}

.faq-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.faq-category h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: #47456d;
  border-bottom: 2px solid #bfa14a;
  padding-bottom: 8px;
}

.faq-item {
  margin-bottom: 16px;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background: #f8f9fa;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-question h4 {
  margin: 0;
  color: #47456d;
  font-size: 1.1rem;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #bfa14a;
  font-weight: bold;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 200px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Product Support */
.product-support {
  padding: 80px 0;
  background: #f8f9fa;
}

.product-support h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #47456d;
}

.support-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.support-content.reverse {
  direction: rtl;
}

.support-content.reverse > * {
  direction: ltr;
}

.support-info h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #47456d;
}

.support-info > p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.6;
}

.support-resources {
  display: grid;
  gap: 20px;
}

.resource-item {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.resource-item h4 {
  margin-bottom: 8px;
  color: #47456d;
}

.resource-item p {
  color: #666;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

/* Service Support */
.service-support {
  padding: 80px 0;
  background: white;
}

.service-support h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #47456d;
}

/* Contact Support */
.contact-support {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-support h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #47456d;
}

.contact-support > .container > p {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 60px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.contact-method {
  background: white;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.method-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-method h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #47456d;
}

.contact-method p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-form-section {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-section h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 32px;
  color: #47456d;
}

/* Support Hours */
.support-hours {
  padding: 80px 0;
  background: white;
}

.hours-content h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #47456d;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.hours-item {
  background: #f8f9fa;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
}

.hours-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #47456d;
}

.hours-item p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #bfa14a;
  margin-bottom: 4px;
}

.hours-item span {
  font-size: 0.9rem;
  color: #666;
}

/* Product Detail Styles */
.product-detail {
  padding: 80px 0;
  background: white;
}

.product-header {
  text-align: center;
  margin-bottom: 60px;
}

.product-badge {
  display: inline-block;
  background: #bfa14a;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.product-header h2 {
  font-size: 3rem;
  margin-bottom: 16px;
  color: #47456d;
}

.product-subtitle {
  font-size: 1.3rem;
  color: #666;
}

.product-showcase-detailed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-image {
  display: flex;
  justify-content: center;
}

.frame-mockup-large {
  background: #47456d;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.frame-screen-large {
  width: 350px;
  height: 450px;
  background: #000;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screen-content-large {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  padding: 16px;
}

.widget-grid-large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  height: 100%;
}

.widget-large {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.widget-large.clock-large {
  grid-column: 1 / -1;
  font-size: 2rem;
}

.thumbnail-grid {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.thumbnail {
  width: 60px;
  height: 60px;
  background: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.thumbnail.active,
.thumbnail:hover {
  background: #bfa14a;
  color: white;
}

.thumb-placeholder {
  font-size: 1.5rem;
}

.product-info-detailed {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product-description p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #666;
}

.product-highlights h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #47456d;
}

.highlights-list {
  list-style: none;
  padding: 0;
}

.highlights-list li {
  padding: 8px 0;
  color: #666;
  line-height: 1.6;
}

  .product-specs h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #47456d;
  }
  
  /* Mobile App Section Styles */
.mobile-app-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.mobile-app-header {
  text-align: center;
  margin-bottom: 60px;
}

.mobile-app-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #47456d;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.mobile-app-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}
  
  .mobile-app-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
  
  .mobile-app-preview {
    display: flex;
    justify-content: center;
  }
  
  .phone-mockup {
    background: #1a1a1a;
    border-radius: 25px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid #333;
  }
  
  .phone-screen {
    width: 200px;
    height: 350px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: white;
  }
  
  .app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .app-title {
    font-weight: 700;
    font-size: 1.2rem;
  }
  
  .status-indicator {
    font-size: 0.8rem;
    opacity: 0.9;
  }
  
  .app-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  
  .menu-item.active {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
  }
  
  .menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .menu-icon {
    font-size: 1.2rem;
  }
  
  .menu-text {
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  .quick-actions {
    display: flex;
    justify-content: space-around;
    margin-top: auto;
  }
  
  .action-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
  }
  
  .mobile-app-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  
  .feature-icon {
    font-size: 1.5rem;
    background: #f8f9fa;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #47456d;
  }
  
  .feature-content p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
  }

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.spec-label {
  font-weight: 600;
  color: #47456d;
}

.spec-value {
  color: #666;
}

/* Product CTA Section */
.product-cta-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.product-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.price-info {
  text-align: center;
}

.price-info .price {
  font-size: 3rem;
  font-weight: 700;
  color: #bfa14a;
  display: block;
}

/* Features Deep Dive */
.features-deep-dive {
  padding: 80px 0;
  background: #f8f9fa;
}

.features-deep-dive h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #47456d;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.feature-card-detailed {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon-large {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-card-detailed h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #47456d;
}

.feature-card-detailed p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 6px 0;
  color: #666;
  position: relative;
  padding-left: 20px;
}

.feature-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #bfa14a;
  font-weight: bold;
}

/* Use Cases */
.use-cases {
  padding: 80px 0;
  background: white;
}

.use-cases h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #47456d;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.use-case-card {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-5px);
}

.use-case-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.use-case-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: #47456d;
}

.use-case-card p {
  color: #666;
  line-height: 1.6;
}

/* Pre-order Section */
.pre-order-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #47456d 0%, #2d2b4a 100%);
  color: white;
}

.pre-order-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pre-order-content h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.pre-order-content p {
  font-size: 1.2rem;
  color: #e0d7ff;
  margin-bottom: 40px;
}

.pre-order-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .product-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .product-features {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .story-content,
  .service-content,
  .support-content,
  .product-showcase-detailed {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .mobile-app-showcase {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .mobile-app-preview {
    order: 2;
  }
  
  .mobile-app-features {
    order: 1;
  }
  
  .mobile-app-header h2 {
    font-size: 2rem;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .faq-categories {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .services-overview h2,
  .featured-product h2,
  .cta-section h2,
  .page-hero h1,
  .story-text h2,
  .mv-card h3,
  .values h2,
  .team h2,
  .stats h2,
  .services-intro h2,
  .service-header h2,
  .pricing-section h2,
  .contact-content h2,
  .quick-help h2,
  .faq-section h2,
  .product-support h2,
  .service-support h2,
  .contact-support h2,
  .hours-content h2,
  .product-header h2,
  .features-deep-dive h2,
  .use-cases h2,
  .pre-order-content h2,
  .mobile-app-header h2 {
    font-size: 2rem;
  }

  .container {
    padding: 0 16px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .contact-form,
  .pre-order-form {
    padding: 20px;
  }
}

/* Form Message Styles */
.form-message {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.message-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.message-content::before {
  font-size: 1.2em;
}

.form-message.success .message-content::before {
  content: "✅";
}

.form-message.error .message-content::before {
  content: "❌";
}

/* Future Vision Section Styles */
.future-vision {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.future-vision h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.vision-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.vision-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.vision-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.vision-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.vision-item p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

@media (max-width: 768px) {
  .future-vision {
    padding: 60px 0;
  }
  
  .future-vision h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .vision-item {
    padding: 30px 20px;
  }
}

/* Device Comparison Section Styles */
.device-comparison {
  padding: 80px 0;
  background: #f8f9fa;
}

.comparison-header {
  text-align: center;
  margin-bottom: 60px;
}

.comparison-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #47456d;
}

.comparison-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-grid .comparison-item:nth-child(4),
.comparison-grid .comparison-item:nth-child(5) {
  grid-column: span 1.5;
  justify-self: center;
}

.comparison-item {
  background: white;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.comparison-item:hover {
  transform: translateY(-5px);
}

.device-image {
  margin-bottom: 20px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.device-placeholder {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #bfa14a, #e6d7a7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto;
}

.comparison-item h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #47456d;
}

.comparison-item p {
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
  font-size: 0.95rem;
}

.market-price {
  background: #f0f0f0;
  color: #47456d;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Savings Calculator */
.savings-calculator {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.savings-header {
  text-align: center;
  margin-bottom: 40px;
}

.savings-header h3 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #47456d;
}

.savings-header p {
  color: #666;
  font-size: 1.1rem;
}

.savings-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.separate-devices h4,
.vistaai-option h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #47456d;
  text-align: center;
}

.price-breakdown,
.vistaai-pricing {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}

.price-item:last-child {
  border-bottom: none;
}

.price-item.total {
  border-top: 2px solid #bfa14a;
  border-bottom: none;
  padding-top: 16px;
  margin-top: 16px;
  font-size: 1.1rem;
}

.vistaai-pricing .price-item {
  color: #10b981;
  font-weight: 600;
}

.savings-highlight {
  text-align: center;
  margin-top: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border-radius: 12px;
}

.savings-amount {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.savings-percentage {
  font-size: 1.1rem;
  opacity: 0.9;
}

.unique-benefit {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 16px;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.unique-benefit h4 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: white;
}

.unique-benefit p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .device-comparison {
    padding: 60px 0;
  }
  
  .comparison-header h2 {
    font-size: 2rem;
  }
  
  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: none;
  }
  
  .comparison-grid .comparison-item:nth-child(4),
  .comparison-grid .comparison-item:nth-child(5) {
    grid-column: span 1;
    justify-self: stretch;
  }
  
  .savings-breakdown {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .savings-calculator {
    padding: 30px 20px;
  }
  
  .unique-benefit {
    padding: 20px;
  }
} 