/* Material Design 3 CSS Variables */
:root {
  /* Primary Colors */
  --md-sys-color-primary: #6750A4;
  --md-sys-color-on-primary: #FFFFFF;
  --md-sys-color-primary-container: #EADDFF;
  --md-sys-color-on-primary-container: #21005D;

  /* Secondary Colors */
  --md-sys-color-secondary: #625B71;
  --md-sys-color-on-secondary: #FFFFFF;
  --md-sys-color-secondary-container: #E8DEF8;
  --md-sys-color-on-secondary-container: #1D192B;

  /* Tertiary Colors */
  --md-sys-color-tertiary: #7D5260;
  --md-sys-color-on-tertiary: #FFFFFF;
  --md-sys-color-tertiary-container: #FFD8E4;
  --md-sys-color-on-tertiary-container: #31111D;

  /* Surface Colors */
  --md-sys-color-surface: #FEF7FF;
  --md-sys-color-on-surface: #1C1B1F;
  --md-sys-color-surface-variant: #E7E0EC;
  --md-sys-color-on-surface-variant: #49454F;
  --md-sys-color-surface-container: #F3EDF7;
  --md-sys-color-surface-container-high: #ECE6F0;
  --md-sys-color-surface-container-highest: #E6E0E9;

  /* Background Colors */
  --md-sys-color-background: #FEF7FF;
  --md-sys-color-on-background: #1C1B1F;

  /* Outline Colors */
  --md-sys-color-outline: #79747E;
  --md-sys-color-outline-variant: #CAC4D0;

  /* Error Colors */
  --md-sys-color-error: #BA1A1A;
  --md-sys-color-on-error: #FFFFFF;
  --md-sys-color-error-container: #FFDAD6;
  --md-sys-color-on-error-container: #410002;

  /* Shadows */
  --md-sys-elevation-level0: none;
  --md-sys-elevation-level1: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
  --md-sys-elevation-level2: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
  --md-sys-elevation-level3: 0px 1px 3px 0px rgba(0, 0, 0, 0.3), 0px 4px 8px 3px rgba(0, 0, 0, 0.15);
  --md-sys-elevation-level4: 0px 2px 3px 0px rgba(0, 0, 0, 0.3), 0px 6px 10px 4px rgba(0, 0, 0, 0.15);
  --md-sys-elevation-level5: 0px 4px 4px 0px rgba(0, 0, 0, 0.3), 0px 8px 12px 6px rgba(0, 0, 0, 0.15);

  /* Typography */
  --md-sys-typescale-display-large-font: 'Roboto', sans-serif;
  --md-sys-typescale-display-large-size: 57px;
  --md-sys-typescale-display-large-weight: 400;
  --md-sys-typescale-display-large-line-height: 64px;

  --md-sys-typescale-headline-large-font: 'Roboto', sans-serif;
  --md-sys-typescale-headline-large-size: 32px;
  --md-sys-typescale-headline-large-weight: 400;
  --md-sys-typescale-headline-large-line-height: 40px;

  --md-sys-typescale-headline-medium-font: 'Roboto', sans-serif;
  --md-sys-typescale-headline-medium-size: 28px;
  --md-sys-typescale-headline-medium-weight: 400;
  --md-sys-typescale-headline-medium-line-height: 36px;

  --md-sys-typescale-title-large-font: 'Roboto', sans-serif;
  --md-sys-typescale-title-large-size: 22px;
  --md-sys-typescale-title-large-weight: 400;
  --md-sys-typescale-title-large-line-height: 28px;

  --md-sys-typescale-body-large-font: 'Roboto', sans-serif;
  --md-sys-typescale-body-large-size: 16px;
  --md-sys-typescale-body-large-weight: 400;
  --md-sys-typescale-body-large-line-height: 24px;

  --md-sys-typescale-body-medium-font: 'Roboto', sans-serif;
  --md-sys-typescale-body-medium-size: 14px;
  --md-sys-typescale-body-medium-weight: 400;
  --md-sys-typescale-body-medium-line-height: 20px;

  --md-sys-typescale-label-large-font: 'Roboto', sans-serif;
  --md-sys-typescale-label-large-size: 14px;
  --md-sys-typescale-label-large-weight: 500;
  --md-sys-typescale-label-large-line-height: 20px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--md-sys-typescale-body-large-font);
  font-size: var(--md-sys-typescale-body-large-size);
  font-weight: var(--md-sys-typescale-body-large-weight);
  line-height: var(--md-sys-typescale-body-large-line-height);
  color: var(--md-sys-color-on-background);
  background-color: var(--md-sys-color-background);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--md-sys-color-surface-container);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--md-sys-typescale-title-large-size);
  font-weight: var(--md-sys-typescale-title-large-weight);
  color: var(--md-sys-color-primary);
}

.nav-brand .material-icons {
  font-size: 28px;
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: var(--md-sys-color-on-surface);
  font-weight: var(--md-sys-typescale-label-large-weight);
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--md-sys-color-on-surface);
  cursor: pointer;
  padding: 8px;
  border-radius: 12px;
}

.nav-toggle:hover {
  background-color: var(--md-sys-color-surface-container-high);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--md-sys-color-primary-container) 0%, var(--md-sys-color-surface) 100%);
  padding-top: 64px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  animation: slideInLeft 1s ease-out;
}

.hero-title {
  font-size: var(--md-sys-typescale-display-large-size);
  font-weight: var(--md-sys-typescale-display-large-weight);
  line-height: var(--md-sys-typescale-display-large-line-height);
  color: var(--md-sys-color-on-surface);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: var(--md-sys-typescale-title-large-size);
  color: var(--md-sys-color-on-surface-variant);
  margin-bottom: 32px;
  max-width: 500px;
}

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

.hero-visual {
  position: relative;
  height: 400px;
  animation: slideInRight 1s ease-out;
}

.floating-card {
  position: absolute;
  background-color: var(--md-sys-color-surface-container-highest);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--md-sys-elevation-level3);
  animation: float 6s ease-in-out infinite;
}

.floating-card .material-icons {
  font-size: 24px;
  color: var(--md-sys-color-primary);
}

.card-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  right: 20%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border-radius: 20px;
  border: none;
  font-size: var(--md-sys-typescale-label-large-size);
  font-weight: var(--md-sys-typescale-label-large-weight);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background-color: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
  box-shadow: var(--md-sys-elevation-level1);
}

.btn-primary:hover {
  background-color: var(--md-sys-color-primary);
  box-shadow: var(--md-sys-elevation-level2);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--md-sys-color-secondary-container);
  color: var(--md-sys-color-on-secondary-container);
  border: 1px solid var(--md-sys-color-outline);
}

.btn-secondary:hover {
  background-color: var(--md-sys-color-secondary-container);
  box-shadow: var(--md-sys-elevation-level1);
  transform: translateY(-1px);
}

/* Section Styles */
.section-title {
  font-size: var(--md-sys-typescale-headline-large-size);
  font-weight: var(--md-sys-typescale-headline-large-weight);
  line-height: var(--md-sys-typescale-headline-large-line-height);
  color: var(--md-sys-color-on-surface);
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: var(--md-sys-typescale-title-large-size);
  color: var(--md-sys-color-on-surface-variant);
  text-align: center;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: var(--md-sys-color-surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background-color: var(--md-sys-color-surface-container);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--md-sys-elevation-level1);
  transition: all 0.3s ease;
  border: 1px solid var(--md-sys-color-outline-variant);
}

.service-card:hover {
  box-shadow: var(--md-sys-elevation-level3);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  background-color: var(--md-sys-color-primary-container);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon .material-icons {
  font-size: 28px;
  color: var(--md-sys-color-on-primary-container);
}

.service-card h3 {
  font-size: var(--md-sys-typescale-headline-medium-size);
  font-weight: var(--md-sys-typescale-headline-medium-weight);
  color: var(--md-sys-color-on-surface);
  margin-bottom: 16px;
}

.service-card p {
  color: var(--md-sys-color-on-surface-variant);
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
}

.service-features li {
  color: var(--md-sys-color-on-surface-variant);
  padding: 4px 0;
  position: relative;
  padding-left: 20px;
}

.service-features li::before {
  content: '•';
  color: var(--md-sys-color-primary);
  position: absolute;
  left: 0;
}

/* Products Section */
.products {
  padding: 80px 0;
  background-color: var(--md-sys-color-surface-container);
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.product-info {
  animation: slideInLeft 1s ease-out;
}

.product-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.product-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--md-sys-color-primary) 0%, var(--md-sys-color-tertiary) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--md-sys-elevation-level3);
}

.product-icon .material-icons {
  font-size: 32px;
  color: var(--md-sys-color-on-primary);
}

.product-title h3 {
  font-size: var(--md-sys-typescale-headline-large-size);
  font-weight: 700;
  color: var(--md-sys-color-on-surface);
  margin-bottom: 4px;
}

.product-tagline {
  font-size: var(--md-sys-typescale-body-large-size);
  color: var(--md-sys-color-primary);
  font-weight: 500;
}

.product-description {
  margin-bottom: 32px;
}

.product-description > p {
  font-size: var(--md-sys-typescale-body-large-size);
  color: var(--md-sys-color-on-surface-variant);
  line-height: 1.6;
  margin-bottom: 32px;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background-color: var(--md-sys-color-surface-container-high);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background-color: var(--md-sys-color-primary-container);
  transform: translateX(8px);
}

.feature-item .material-icons {
  font-size: 24px;
  color: var(--md-sys-color-primary);
  margin-top: 2px;
}

.feature-item h4 {
  font-size: var(--md-sys-typescale-title-large-size);
  font-weight: 600;
  color: var(--md-sys-color-on-surface);
  margin-bottom: 4px;
}

.feature-item p {
  color: var(--md-sys-color-on-surface-variant);
  font-size: var(--md-sys-typescale-body-medium-size);
}

.product-gallery {
  animation: slideInRight 1s ease-out;
}

.gallery-main {
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
    justify-content: center;
}

.gallery-main-image {
  width: auto;
  height: 50vh;
  display: block;
  transition: all 0.3s ease;
}

.gallery-thumbnails {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery-thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  opacity: 0.7;
}

.gallery-thumb:hover {
  opacity: 1;
  transform: scale(1.05);
}

.gallery-thumb.active {
  border-color: var(--md-sys-color-primary);
  opacity: 1;
  box-shadow: var(--md-sys-elevation-level2);
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: var(--md-sys-color-surface-container);
}

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

.about-text .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.about-description {
  font-size: var(--md-sys-typescale-body-large-size);
  color: var(--md-sys-color-on-surface-variant);
  margin-bottom: 40px;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--md-sys-color-primary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: var(--md-sys-typescale-body-medium-size);
  color: var(--md-sys-color-on-surface-variant);
}

.tech-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tech-item {
  background-color: var(--md-sys-color-tertiary-container);
  color: var(--md-sys-color-on-tertiary-container);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--md-sys-elevation-level2);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: var(--md-sys-color-surface);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item .material-icons {
  font-size: 24px;
  color: var(--md-sys-color-primary);
  margin-top: 4px;
}

.contact-item h4 {
  font-size: var(--md-sys-typescale-title-large-size);
  color: var(--md-sys-color-on-surface);
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--md-sys-color-on-surface-variant);
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--md-sys-color-outline);
  border-radius: 8px;
  background-color: var(--md-sys-color-surface);
  color: var(--md-sys-color-on-surface);
  font-size: var(--md-sys-typescale-body-large-size);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--md-sys-color-primary);
  box-shadow: 0 0 0 2px var(--md-sys-color-primary-container);
}

.form-group label {
  position: absolute;
  left: 16px;
  top: 16px;
  color: var(--md-sys-color-on-surface-variant);
  transition: all 0.3s ease;
  pointer-events: none;
  background-color: var(--md-sys-color-surface);
  padding: 0 4px;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label {
  top: -8px;
  font-size: 12px;
  color: var(--md-sys-color-primary);
}

/* Footer */
.footer {
  background-color: var(--md-sys-color-surface-container-highest);
  padding: 48px 0 24px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--md-sys-typescale-title-large-size);
  font-weight: var(--md-sys-typescale-title-large-weight);
  color: var(--md-sys-color-primary);
}

.footer-brand .material-icons {
  font-size: 28px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  text-decoration: none;
  color: var(--md-sys-color-on-surface-variant);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--md-sys-color-primary);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: var(--md-sys-color-primary-container);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--md-sys-color-primary);
  transform: translateY(-2px);
}

.social-link .material-icons {
  font-size: 20px;
  color: var(--md-sys-color-on-primary-container);
}

.social-link:hover .material-icons {
  color: var(--md-sys-color-on-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--md-sys-color-outline-variant);
  color: var(--md-sys-color-on-surface-variant);
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Legal Pages Styling */
.legal-page {
  padding: 120px 0 80px;
  background-color: var(--md-sys-color-surface);
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: var(--md-sys-typescale-display-large-size);
  font-weight: var(--md-sys-typescale-display-large-weight);
  line-height: var(--md-sys-typescale-display-large-line-height);
  color: var(--md-sys-color-on-surface);
  margin-bottom: 16px;
  text-align: center;
}

.page-subtitle {
  font-size: var(--md-sys-typescale-title-large-size);
  color: var(--md-sys-color-on-surface-variant);
  text-align: center;
  margin-bottom: 48px;
}

.legal-section {
  margin-bottom: 40px;
  background-color: var(--md-sys-color-surface-container);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--md-sys-elevation-level1);
}

.legal-section h2 {
  font-size: var(--md-sys-typescale-headline-medium-size);
  font-weight: var(--md-sys-typescale-headline-medium-weight);
  color: var(--md-sys-color-primary);
  margin-bottom: 24px;
  border-bottom: 2px solid var(--md-sys-color-primary-container);
  padding-bottom: 8px;
}

.legal-section h3 {
  font-size: var(--md-sys-typescale-title-large-size);
  font-weight: var(--md-sys-typescale-title-large-weight);
  color: var(--md-sys-color-on-surface);
  margin-bottom: 16px;
  margin-top: 24px;
}

.legal-section h3:first-child {
  margin-top: 0;
}

.info-block {
  margin-bottom: 24px;
}

.info-block:last-child {
  margin-bottom: 0;
}

.legal-section p {
  color: var(--md-sys-color-on-surface-variant);
  line-height: 1.6;
  margin-bottom: 16px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  color: var(--md-sys-color-on-surface-variant);
  line-height: 1.6;
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-section ul li {
  margin-bottom: 8px;
}

.legal-section a {
  color: var(--md-sys-color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-section a:hover {
  color: var(--md-sys-color-on-primary-container);
  text-decoration: underline;
}

.back-link {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--md-sys-color-outline-variant);
}

.back-link .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .legal-page {
    padding: 100px 0 60px;
  }
  
  .page-title {
    font-size: 40px;
    line-height: 48px;
  }
  
  .legal-section {
    padding: 24px;
    margin-bottom: 24px;
  }
  
  .legal-content {
    padding: 0 16px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 64px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 64px);
    background-color: var(--md-sys-color-surface-container);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 48px;
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: block;
  }

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

  .hero-title {
    font-size: 40px;
    line-height: 48px;
  }

  .hero-visual {
    height: 300px;
  }

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

  .about-text .section-title {
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-links {
    order: -1;
  }

  .tech-stack {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .tech-item {
    padding: 12px 8px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .hero-container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 40px;
  }

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

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tech-stack {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-gallery {
    order: -1;
  }

  .gallery-thumbnails {
    gap: 8px;
  }

  .gallery-thumb {
    width: 60px;
    height: 45px;
  }
}
