:root {
  --primary: #6965DA;
  --secondary: #5A56C4;
  --accent: #7D79E8;
  --primary-dark: #4A46B8;
  --primary-light: #8B87F0;
  --gradient-1: linear-gradient(135deg, #6965DA 0%, #7D79E8 50%, #9B97FF 100%);
  --gradient-2: linear-gradient(135deg, #5A56C4 0%, #6965DA 50%, #7D79E8 100%);
  --gradient-3: linear-gradient(180deg, rgba(105, 101, 218, 0.1) 0%, rgba(125, 121, 232, 0.05) 100%);
  --gradient-radial: radial-gradient(circle at 30% 50%, rgba(105, 101, 218, 0.15) 0%, transparent 50%);
  --light: #f5f7ff;
  --dark: #0a0a14;
  --dark-secondary: #141420;
  --text-primary: #1a1a2e;
  --text-secondary: #64748b;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Minimal Navigation */
.minimal-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(105, 101, 218, 0.08);
  padding: 1.5rem 0;
  transition: all 0.3s ease;
}

.minimal-nav.scrolled {
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(105, 101, 218, 0.1);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 1.1rem;
}

.logo-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}

.nav-cta {
  background: var(--gradient-1);
  color: white !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 50px;
  font-weight: 600;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(105, 101, 218, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

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

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

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

/* Split Hero Section */
.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  align-items: center;
  padding: 4rem 4rem 4rem 6rem;
  background: linear-gradient(135deg, #fafbff 0%, #ffffff 100%);
  position: relative;
}

.hero-left::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: var(--gradient-radial);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.hero-content-wrapper {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(105, 101, 218, 0.1);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  letter-spacing: -2px;
}

.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--gradient-1);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(105, 101, 218, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(105, 101, 218, 0.4);
  color: white;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: white;
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(105, 101, 218, 0.2);
}

.btn-hero-secondary:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  color: var(--primary);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(105, 101, 218, 0.1);
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-right {
  position: relative;
  /* background: var(--gradient-1); */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  overflow: hidden;
}

.hero-image-container {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  right: 15%;
  animation-delay: 5s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  right: 30%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(105, 101, 218, 0.1) 0%, transparent 100%);
  border-radius: 30px;
  pointer-events: none;
}

/* Asymmetric Features */
.features-asymmetric {
  padding: 120px 2rem;
  background: white;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-label {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(105, 101, 218, 0.1);
  border-radius: 50px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.section-title-large {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 400;
  margin-top: 1rem;
}

.features-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  grid-auto-rows: minmax(300px, auto);
}

.feature-card-large {
  grid-column: span 2;
  background: var(--gradient-1);
  border-radius: 40px;
  padding: 4rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.feature-card-large::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.feature-card-large:hover {
  transform: scale(1.02);
}

.feature-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
  z-index: 2;
}

.feature-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.feature-icon-wrapper i {
  position: relative;
  z-index: 2;
  font-size: 2.5rem;
  color: white;
}

.feature-card-large h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.feature-card-large p {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.feature-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: white;
  border: 2px solid rgba(105, 101, 218, 0.1);
  border-radius: 30px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(105, 101, 218, 0.15);
  border-color: var(--primary);
}

.feature-number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  margin-bottom: 1rem;
  line-height: 1;
}

.feature-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  flex-grow: 1;
}

/* Products Gallery */
.products-gallery {
  padding: 120px 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
  position: relative;
}

.products-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.product-item {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.product-item:hover {
  transform: translateY(-10px);
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  background: white;
  box-shadow: 0 8px 24px rgba(105, 101, 218, 0.1);
  transition: all 0.4s ease;
  border: 3px solid transparent;
}

.product-item:hover .product-image-wrapper {
  box-shadow: 0 20px 60px rgba(105, 101, 218, 0.25);
  border-color: rgba(105, 101, 218, 0.3);
}

.product-item::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--gradient-1);
  border-radius: 30px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.product-item:hover::before {
  opacity: 0.2;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-item:hover .product-image {
  transform: scale(1.15);
}

/* Diagonal CTA */
.diagonal-cta {
  position: relative;
  padding: 100px 2rem;
  background: linear-gradient(135deg, #fafbff 0%, #ffffff 100%);
  overflow: hidden;
}

.diagonal-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-1);
  clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);
  opacity: 0.05;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.cta-text {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.btn-cta-large {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 3rem;
  background: var(--gradient-1);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(105, 101, 218, 0.3);
}

.btn-cta-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(105, 101, 218, 0.4);
  color: white;
}

/* Modern Footer */
.modern-footer {
  background: var(--dark);
  color: white;
  padding: 80px 2rem 30px;
  position: relative;
}

.footer-top {
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  width: 60px;
  height: 60px;
  background: var(--gradient-1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}

.footer-brand h5 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gradient-1);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact,
.footer-hours {
  list-style: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 2;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact i {
  /* margin-top: 5px; */
  color: var(--primary-light);
}

.footer-bottom {
  max-width: 1400px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: white;
}

.separator {
  margin: 0 1rem;
}

/* Page Header for other pages */
.page-header {
  padding: 140px 2rem 80px;
  background: var(--gradient-1);
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -2px;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-header .lead {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-card-large {
    grid-column: span 2;
  }
}

@media (max-width: 992px) {
  .split-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .hero-left {
    padding: 4rem 2rem;
    min-height: 70vh;
  }
  
  .hero-right {
    min-height: 50vh;
    padding: 2rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    padding: 2rem;
    transition: left 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(105, 101, 218, 0.1);
  }
  
  .nav-menu li:last-child {
    border-bottom: none;
  }
  
  .nav-menu a {
    display: block;
    padding: 1rem 0;
    width: 100%;
    font-size: 1.1rem;
  }
  
  .nav-menu a::after {
    display: none;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card-large {
    grid-column: span 1;
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-wrapper {
    padding: 0 1rem;
  }
  
  .nav-logo {
    font-size: 1rem;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .nav-menu {
    top: 70px;
    height: calc(100vh - 70px);
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-menu a {
    display: block;
    padding: 1rem;
    width: 100%;
  }
  
  .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }
  
  .split-hero {
    margin-top: 70px;
  }
  
  .hero-left {
    padding: 3rem 1.5rem;
    min-height: auto;
  }
  
  .hero-content-wrapper {
    max-width: 100%;
  }
  
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
  }
  
  .stat-item {
    flex: 1;
    min-width: 100px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .hero-right {
    min-height: 40vh;
    padding: 2rem 1rem;
  }
  
  .hero-image {
    border-radius: 20px;
  }
  
  .features-asymmetric {
    padding: 60px 1rem;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .section-title-large {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .feature-card-large {
    padding: 2.5rem 2rem;
  }
  
  .feature-card-large h3 {
    font-size: 1.8rem;
  }
  
  .feature-card-large p {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
  
  .feature-card h4 {
    font-size: 1.25rem;
  }
  
  .products-gallery {
    padding: 60px 1rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .diagonal-cta {
    padding: 60px 1rem;
  }
  
  .cta-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 0.75rem;
  }
  
  .cta-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .btn-cta-large {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .modern-footer {
    padding: 60px 1rem 20px;
  }
  
  .footer-top {
    padding-bottom: 2rem;
  }
  
  .footer-brand h5 {
    font-size: 1.25rem;
  }
  
  .footer-brand p {
    font-size: 0.9rem;
  }
  
  .footer-heading {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding-top: 1.5rem;
  }
  
  .footer-bottom .row {
    flex-direction: column;
    gap: 1rem;
  }
  
  .page-header {
    padding: 100px 1rem 60px;
    margin-top: 70px;
  }
  
  .page-header h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .page-header .lead {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .nav-wrapper {
    padding: 0 0.75rem;
  }
  
  .minimal-nav {
    padding: 1rem 0;
  }
  
  .logo-text {
    font-size: 0.9rem;
  }
  
  .hero-left {
    padding: 2rem 1rem;
  }
  
  .hero-title {
    font-size: clamp(1.75rem, 10vw, 2.5rem);
    line-height: 1.2;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .hero-right {
    min-height: 35vh;
    padding: 1.5rem 0.75rem;
  }
  
  .features-asymmetric {
    padding: 40px 0.75rem;
  }
  
  .section-title-large {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  
  .feature-card-large {
    padding: 2rem 1.5rem;
    border-radius: 30px;
  }
  
  .feature-card-large h3 {
    font-size: 1.5rem;
  }
  
  .feature-card {
    padding: 1.5rem 1rem;
    border-radius: 20px;
  }
  
  .feature-number {
    font-size: 2.5rem;
  }
  
  .products-gallery {
    padding: 40px 0.75rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .product-item {
    aspect-ratio: 3 / 4;
  }
  
  .diagonal-cta {
    padding: 40px 0.75rem;
  }
  
  .cta-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  
  .modern-footer {
    padding: 40px 0.75rem 15px;
  }
  
  .footer-logo {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .footer-brand h5 {
    font-size: 1.1rem;
  }
  
  .page-header {
    padding: 80px 0.75rem 40px;
  }
  
  .page-header h1 {
    font-size: clamp(1.75rem, 10vw, 2.5rem);
  }
}

/* Mobile optimizations for inline styles and other pages */
@media (max-width: 768px) {
  section.py-5[style*="padding: 100px 0"] {
    padding: 60px 0 !important;
  }
  
  .card-body p[style*="font-size: 1.1rem"] {
    font-size: 1rem !important;
  }
  
  .card-body p[style*="line-height: 1.8"] {
    line-height: 1.7 !important;
  }
  
  .card-body .p-4 {
    padding: 1.5rem !important;
  }
  
  .card-body .p-5 {
    padding: 2rem !important;
  }
  
  .card-body .p-md-5 {
    padding: 1.5rem !important;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .row.g-5 {
    --bs-gutter-y: 2rem;
    --bs-gutter-x: 1.5rem;
  }
  
  .row.g-4 {
    --bs-gutter-y: 1.5rem;
    --bs-gutter-x: 1rem;
  }
  
  .row.g-3 {
    --bs-gutter-y: 1rem;
    --bs-gutter-x: 0.75rem;
  }
  
  h2.section-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }
  
  h3 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  
  h4 {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
  }
  
  h5 {
    font-size: clamp(1.1rem, 3.5vw, 1.25rem);
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
  
  .form-control,
  .form-select {
    font-size: 1rem;
    padding: 0.75rem;
  }
  
  .form-label {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  
  .accordion-button {
    font-size: 0.95rem;
    padding: 1rem;
  }
  
  .accordion-body {
    font-size: 0.9rem;
    padding: 1rem;
  }
  
  .d-flex.gap-4 {
    gap: 1.5rem !important;
  }
  
  .d-flex.gap-3 {
    gap: 1rem !important;
  }
  
  .text-center {
    text-align: center !important;
  }
  
  .text-lg-end {
    text-align: center !important;
  }
  
  .text-md-end {
    text-align: center !important;
  }
}

@media (max-width: 576px) {
  section.py-5[style*="padding: 100px 0"] {
    padding: 40px 0 !important;
  }
  
  .card-body .p-4 {
    padding: 1rem !important;
  }
  
  .card-body .p-5 {
    padding: 1.5rem !important;
  }
  
  .card-body .p-md-5 {
    padding: 1rem !important;
  }
  
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .container-fluid {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .row.g-5 {
    --bs-gutter-y: 1.5rem;
    --bs-gutter-x: 1rem;
  }
  
  .row.g-4 {
    --bs-gutter-y: 1rem;
    --bs-gutter-x: 0.75rem;
  }
  
  .row.g-3 {
    --bs-gutter-y: 0.75rem;
    --bs-gutter-x: 0.5rem;
  }
  
  .card-body p[style*="font-size: 1.1rem"] {
    font-size: 0.95rem !important;
  }
  
  .d-flex.flex-wrap.gap-4 {
    flex-direction: column;
    gap: 1rem !important;
  }
  
  .d-flex.align-items-center {
    flex-wrap: wrap;
  }
  
  .bg-primary.text-white.rounded-circle.p-2 {
    width: 35px !important;
    height: 35px !important;
    padding: 0.5rem !important;
  }
  
  /* Form optimizations for mobile */
  .card {
    border-radius: 20px;
  }
  
  .card-body {
    padding: 1.5rem !important;
  }
  
  .mb-5 {
    margin-bottom: 2.5rem !important;
  }
  
  .mb-4 {
    margin-bottom: 1.5rem !important;
  }
  
  .mb-3 {
    margin-bottom: 1rem !important;
  }
  
  .mt-4 {
    margin-top: 1.5rem !important;
  }
  
  .mt-5 {
    margin-top: 2.5rem !important;
  }
  
  .py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  
  .px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .px-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  
  /* Image optimizations */
  .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
  }
  
  /* Map container */
  .map-container {
    border-radius: 15px;
    overflow: hidden;
  }
  
  /* Contact form optimizations */
  .d-flex.mb-4 {
    flex-direction: column;
    align-items: flex-start !important;
  }
  
  .d-flex.mb-4 i {
    margin-bottom: 0.5rem;
  }
  
  /* Product cards */
  .product-card {
    margin-bottom: 1.5rem;
  }
  
  .product-card .card-body {
    padding: 1.5rem !important;
  }
  
  /* Step process */
  .step-process {
    padding: 1.5rem;
  }
  
  .step-number {
    font-size: 3rem;
  }
  
  /* Accordion */
  .accordion-item {
    margin-bottom: 1rem !important;
  }
  
  /* Feature box */
  .feature-box {
    padding: 1.5rem;
  }
}
