/* Global Styles */
:root {
  --primary-color: #e67e22;
  --primary-color-dark: #d35400;
  --secondary-color: #3498db;
  --secondary-color-dark: #2980b9;
  --accent-color: #f39c12;
  --background-color: #ffffff;
  --background-color-alt: #f9f9f9;
  --text-color: #333;
  --text-color-light: #666;
  --light-text: #777777;
  --border-color: #ddd;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --success-color: #2ecc71;
  --warning-color: #f39c12;
  --error-color: #e74c3c;
  --gradient-primary: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
  --border-radius: 4px;
  --transition: all 0.3s ease;
  --transition-speed: 0.3s;
  --font-stack: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  object-fit: cover;
  will-change: transform;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.section-header::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 25px auto 0;
  border-radius: 2px;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-color-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Button Styles */
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  border: none;
  box-shadow: 0 6px 15px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
  color: white;
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(230, 126, 34, 0.4);
}

.btn-secondary {
  background-color: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:active {
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid transparent;
}

.btn-outline:hover {
  border-color: var(--primary-color);
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  transition: var(--transition);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

nav ul li a:hover {
  color: var(--primary-color);
}

nav ul li a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 180px 0 120px;
  background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(230, 126, 34, 0.05) 0%,
      transparent 25%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(52, 152, 219, 0.05) 0%,
      transparent 30%
    );
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 70px;
  align-items: center;
}

.hero-content {
  padding-right: 30px;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--text-color) 10%,
    var(--primary-color) 90%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--text-color-light);
  max-width: 540px;
}

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

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.hero-image::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: radial-gradient(
    circle,
    rgba(230, 126, 34, 0.1) 0%,
    transparent 70%
  );
  z-index: -1;
}

.hero-image img {
  position: relative;
  transform: perspective(1200px) rotateY(-12deg) rotateX(5deg);
  box-shadow: 30px 30px 60px rgba(0, 0, 0, 0.2),
    -5px -5px 30px rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.6s ease;
  animation: float 6s ease-in-out infinite;
  max-width: 100%;
  height: auto;
  border: 12px solid #ffffff;
  object-fit: contain;
}

.hero-image img:hover {
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg) translateY(-5px);
  box-shadow: 40px 40px 80px rgba(0, 0, 0, 0.25),
    -10px -10px 40px rgba(255, 255, 255, 0.9);
}

@keyframes float {
  0% {
    transform: perspective(1200px) rotateY(-12deg) rotateX(5deg) translateY(0px);
  }
  50% {
    transform: perspective(1200px) rotateY(-12deg) rotateX(5deg)
      translateY(-15px);
  }
  100% {
    transform: perspective(1200px) rotateY(-12deg) rotateX(5deg) translateY(0px);
  }
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: var(--background-color);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: white;
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s ease;
  text-align: center;
  will-change: transform;
  backface-visibility: hidden;
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.feature-card p {
  color: var(--light-text);
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step-card {
  background-color: white;
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s ease;
  will-change: transform;
  backface-visibility: hidden;
}

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

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(230, 126, 34, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 2rem;
}

.step-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.step-card p {
  color: var(--light-text);
}

/* Benefits Section (Modified) */
.benefits {
  padding: 100px 0;
  background-color: #f8faff;
}

.benefits-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
}

.benefits-column {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding: 30px;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s ease;
  will-change: transform;
  backface-visibility: hidden;
}

.benefits-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.benefits-header i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-right: 15px;
}

.benefits-header h3 {
  font-size: 1.6rem;
  color: var(--text-color);
}

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

.benefits-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.benefits-list li i {
  color: var(--success-color);
  margin-right: 10px;
}

.benefits-list li span {
  color: var(--text-color);
}

/* Demo Section (Modified) */
.demo {
  padding: 100px 0;
  background-color: var(--background-color);
}

.demo-screens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 60px auto;
  max-width: 1400px;
  padding: 0;
}

.device-mockup {
  position: relative;
  border: 8px solid #f0f0f0;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  margin-bottom: 20px;
}

.device-mockup:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.device-mockup .demo-screen {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.device-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}

.demo-cta {
  text-align: center;
  margin-top: 50px;
}

/* About Us Section */
.about {
  position: relative;
  padding: 120px 0;
  background-color: #f8faff;
  overflow: hidden;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  color: var(--text-color);
  font-weight: 800;
  line-height: 1.2;
}

.about-text p {
  color: var(--text-color-light);
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: 1.1rem;
}

.about-image {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 30px 30px 60px rgba(0, 0, 0, 0.2),
    -5px -5px 30px rgba(255, 255, 255, 0.8);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-image:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-15px);
  box-shadow: 40px 40px 80px rgba(0, 0, 0, 0.25),
    -10px -10px 40px rgba(255, 255, 255, 0.9);
}

.about-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%
  );
  z-index: 2;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transform: translateZ(0);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background-color: var(--background-color);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: white;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-question h3 {
  font-size: 1.2rem;
  color: var(--text-color);
  margin: 0;
}

.faq-toggle {
  font-size: 1rem;
  color: var(--primary-color);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 0 20px;
  color: var(--light-text);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-toggle i {
  transform: rotate(45deg);
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: #f8faff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--gradient-primary);
  border-radius: 16px 16px 0 0;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--text-color);
  font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: var(--text-color);
  transition: all 0.3s ease;
  background-color: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.15);
  background-color: #fff;
}

.form-group button {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--gradient-primary);
  border: none;
  color: white;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.2);
}

.form-group button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(230, 126, 34, 0.3);
}

.success-message {
  text-align: center;
  padding: 30px 0;
}

.success-message i {
  font-size: 3rem;
  color: var(--success-color);
  margin-bottom: 20px;
}

.success-message h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.success-message p {
  color: var(--light-text);
  font-size: 1.1rem;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.info-card {
  background-color: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s ease;
  will-change: transform;
  backface-visibility: hidden;
}

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

.info-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.info-card h3 {
  font-size: 1.3rem;
  margin: 15px 0;
  color: var(--text-color);
}

.info-card p a {
  color: var(--primary-color);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.info-card p a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.info-card p a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Enhanced CTA section with original gradient */
.cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #e67e22 0%, #f39c12 50%, #f1c40f 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 25px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-content p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  opacity: 0.9;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.cta .btn-primary {
  background-color: white;
  color: var(--primary-color);
  font-size: 1.1rem;
  padding: 16px 38px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: none;
}

.cta .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}

/* Simple black footer */
.footer {
  background-color: #000;
  color: #fff;
  padding: 30px 0;
  font-size: 0.9rem;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 5px 10px;
}

.footer-links a:hover {
  color: #ffd700;
}

.footer-copyright {
  text-align: center;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-text {
    order: 1;
  }

  .about-image {
    order: 0;
    margin-bottom: 30px;
  }

  .benefits-columns {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 992px) {
  .demo-screens {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  header {
    padding: 10px 0;
  }

  nav ul {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    margin: 10px 0;
    transform: none !important;
  }

  .mobile-menu-toggle {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    padding: 10px;
  }

  .mobile-menu-toggle.active i {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
  }

  .mobile-menu-toggle i {
    transition: transform 0.3s ease;
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-image {
    margin-top: 30px;
    margin-left: 0 !important;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .demo-screens {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    margin-top: 40px;
  }

  .device-mockup {
    max-width: 100%;
  }
}

@media screen and (max-width: 576px) {
  .hero {
    padding: 120px 0 60px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .feature-grid,
  .demo-screens {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .footer-links {
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }
}

/* Additional Professional Enhancements */

/* Improve page performance with content-visibility */
.how-it-works,
.features,
.benefits,
.demo,
.about,
.faq,
.contact {
  content-visibility: auto;
  contain-intrinsic-size: 1px 1000px;
}

/* Enhance typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: -0.02em;
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Add texture to background sections */
.how-it-works,
.benefits,
.about,
.contact {
  background-image: linear-gradient(
      to right,
      rgba(247, 247, 247, 0.5) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(247, 247, 247, 0.5) 1px, transparent 1px);
  background-size: 30px 30px;
  background-attachment: fixed;
}

/* Print styles */
@media print {
  .hero,
  .how-it-works,
  .benefits,
  .features,
  .about {
    page-break-inside: avoid;
  }

  header,
  .cta,
  .demo-cta,
  form button,
  .mobile-menu-toggle {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Font optimization */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v15/pxiEyp8kv8JHgFVrJJfecg.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

/* Studio quality gradient background for sections */
.how-it-works::before,
.benefits::before,
.about::before,
.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      135deg,
      rgba(230, 126, 34, 0.03) 0%,
      transparent 100%
    ),
    linear-gradient(45deg, rgba(52, 152, 219, 0.02) 0%, transparent 100%);
  z-index: -1;
}
