/* ==========================================================
   GLOBAL RESET + BASE
========================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #0E1114;
  padding-top: 90px; /* offset for fixed header */
}

/* ==========================================================
   GLOBAL IMAGE RESPONSIVENESS
========================================================== */
img {
  max-width: 100%;
  height: auto;
}

/* Ensure content images are block-level for proper spacing */
.hero-image,
.precision-image,
.tech-image,
.model-info img,
.tech-block img {
  display: block;
}

/* ==========================================================
   HEADER + NAVIGATION
========================================================== */
.header {
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-container {
  position: fixed;
  top: 0;
  background-color: #fff;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
  padding: 15px 20px;
}

.logo {
  height: 40px;
  padding-left: 25px;
}

.nav {
  display: flex;
  gap: 40px;
}

.nav a {
  text-decoration: none;
  color: #0E1114;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.nav a:hover,
.nav a.active {
  color: #06B6D4;
  border-bottom-color: #06B6D4;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-right: 25px;
}

.social-icons a {
  display: inline-block;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: grayscale(100%) brightness(0);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.social-icons img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.1);
}

/* ==========================================================
   GLOBAL BUTTON
========================================================== */
.btn-primary {
  display: inline-block;
  background-color: #06B6D4;
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #0891B2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #0E1114;
  border: 2px solid #0E1114;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #0E1114;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 17, 20, 0.2);
}

/* ==========================================================
   HOME PAGE
========================================================== */
.page-home .hero {
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 750px;
  width: 100%;
}

.hero-content {
  width: 50%;
  padding-left: 100px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #06B6D4;
}

.hero-content p {
  font-size: 20px;
  color: #ccc;
  margin-bottom: 40px;
}

.hero-image-wrapper {
  width: 25%;
  margin-top: 120px;
}

.hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* Precision Section */
.precision {
  background-color: #ffffff;
  color: #0E1114;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
  gap: 80px;
  padding: 0 100px;
}

.precision-image-wrapper {
  width: 33%;
}

.precision-image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(14, 17, 20, 0.1));
}

.precision-content {
  width: 50%;
}

.precision-content h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.precision-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

/* Technology Section (Home) */
.technology {
  background-color: #000;
  color: #ffffff;
  text-align: center;
  padding: 100px 100px;
}

.tech-content {
  max-width: 1100px;
  margin: 0 auto;
}

.tech-content h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #06B6D4;
}

.tech-content p {
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 60px;
  line-height: 1.6;
}

.tech-cards {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.tech-card {
  background-color: #0E1114;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  width: 30%;
  padding: 40px 25px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.05);
}

.tech-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 25px rgb(3, 3, 3);
}

.tech-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
  transition: all 0.3s ease;
}

.tech-card:hover .tech-image {
  transform: scale(1.03);
  box-shadow: 0 0 25px #fff;
}

.tech-card h3 {
  font-size: 22px;
  color: #06B6D4;
  margin-bottom: 15px;
}

.tech-card p {
  font-size: 16px;
  color: #bbb;
  line-height: 1.5;
}

/* ==========================================================
   MODELS PAGE
========================================================== */
.page-models .hero {
  background-color: #000;
  color: #fff;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-models .hero h2 {
  font-size: 48px;
  font-weight: 600;
  color: #06B6D4;
  margin-bottom: 15px;
}

.page-models .hero p {
  font-size: 20px;
  color: #ccc;
}

/* Model Sections */
.model-section {
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #eaeaea;
  padding: 100px 120px;
}

.model-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 80px;
}

.model-info.left {
  flex-direction: row;
}

.model-info.right {
  flex-direction: row-reverse;
}

.model-info img {
  width: 50%;
  border-radius: 10px;
  background-color: #fff;
}

.model-info .details {
  width: 50%;
}

.model-info h3 {
  font-size: 34px;
  font-weight: 600;
  color: #06B6D4;
  margin-bottom: 15px;
}

.model-info p {
  color: #333;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.model-info ul {
  list-style: none;
  margin-bottom: 25px;
}

.model-info ul li {
  position: relative;
  color: #555;
  font-size: 15px;
  margin-bottom: 8px;
  padding-left: 15px;
}

.model-info ul li::before {
  content: "•";
  color: #06B6D4;
  position: absolute;
  left: 0;
}

/* Buy Now Button */
.model-info button {
  background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
  color: #fff;
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.model-info button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.model-info button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5);
  background: linear-gradient(135deg, #0891B2 0%, #06B6D4 100%);
}

.model-info button:hover::before {
  width: 300px;
  height: 300px;
}

.model-info button:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

.model-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.feature {
  background-color: #f8f9fb;
  border: 1px solid #e1e4e8;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #06B6D4;
}

.feature h4 {
  font-size: 18px;
  color: #06B6D4;
  margin-bottom: 10px;
}

.feature p {
  font-size: 15px;
  color: #444;
}

/* ==========================================================
   TECHNOLOGY PAGE
========================================================== */
.page-technology {
  background-color: #0a0c10;
  color: #eaeaea;
}

.tech-hero {
  background: radial-gradient(circle at 30% 30%, rgba(6, 182, 212, 0.2) 0%, #000 80%);
  color: #fff;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 100px;
}

.tech-hero h1 {
  font-size: 52px;
  color: #06B6D4;
  margin-bottom: 15px;
}

.tech-hero p {
  font-size: 18px;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.tech-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding: 120px 100px;
  border-bottom: 1px solid #1f2633;
}

.tech-block.left {
  flex-direction: row;
  background-color: #0a0c10;
}

.tech-block.right {
  flex-direction: row-reverse;
  background-color: #0f1116;
}

.tech-block img {
  width: 50%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.15);
}

.tech-text {
  width: 50%;
}

.tech-text h2 {
  font-size: 42px;
  color: #06B6D4;
  margin-bottom: 20px;
}

.tech-text p {
  color: #ccc;
  font-size: 17px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 40px;
  margin-top: 30px;
}

.specs-grid h4 {
  color: #06B6D4;
  font-size: 16px;
  margin-bottom: 6px;
}

.specs-grid p {
  color: #aaa;
  font-size: 14px;
}

.tech-cta {
  background: linear-gradient(180deg, #0f1116 0%, #000 100%);
  text-align: center;
  padding: 120px 100px;
}

.tech-cta h2 {
  color: #06B6D4;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.4;
}

/* ==========================================================
   SUPPORT PAGE (LIGHT THEME)
========================================================== */
.page-support {
  background: #f9f9fb;
  color: #0E1114;
}

/* Hero */
.support-hero-light {
  text-align: center;
  padding: 140px 20px 80px;
  background: linear-gradient(180deg, #fff, #f0f4f8);
}

.support-hero-light h1 {
  font-size: 46px;
  color: #06B6D4;
  margin-bottom: 10px;
}

.support-hero-light p {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Option cards */
.support-options {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 80px 100px;
}

.support-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 40px 30px;
  flex: 1;
  transition: all 0.3s ease;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.support-card img {
  width: 60px;
  margin-bottom: 20px;
}

.support-card h3 {
  color: #06B6D4;
  font-size: 20px;
  margin-bottom: 10px;
}

.support-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* Form section */
.support-form-section {
  background: #fff;
  padding: 100px 20px;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.form-container h2 {
  color: #06B6D4;
  font-size: 32px;
  margin-bottom: 10px;
}

.form-container p {
  color: #666;
  margin-bottom: 40px;
}

.support-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.support-form input,
.support-form textarea {
  width: 100%;
  padding: 15px 18px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  color: #333;
  background: #fafafa;
}

.support-form input:focus,
.support-form textarea:focus {
  border-color: #06B6D4;
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.support-form input.error,
.support-form textarea.error {
  border-color: #ff4444;
}

.error-message {
  color: #ff4444;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

.form-success {
  background: #06B6D4;
  color: white;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
  animation: fadeInUp 0.5s ease-out;
}

/* Contact info */
.support-contacts {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 80px 100px;
  background: #f0f4f8;
}

.contact-box {
  text-align: center;
}

.contact-box h4 {
  color: #06B6D4;
  margin-bottom: 8px;
  font-size: 18px;
}

.contact-box p,
.contact-box a {
  color: #444;
  text-decoration: none;
  font-size: 15px;
}

/* ==========================================================
   FOOTER (GLOBAL)
========================================================== */
.footer {
  background-color: #f5f5f5;
  color: #111;
  padding: 60px 100px;
  border-top: 2px solid #e0e0e0;
  text-align: left;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  height: 55px;
  margin-bottom: 15px;
}

.footer-tagline {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
}

.footer-col h4 {
  color: #06B6D4;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

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

.footer-col ul li a:hover {
  color: #06B6D4;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-social img {
  width: 22px;
  height: 22px;
  filter: grayscale(100%) brightness(0);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-social img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 20px;
  color: #666;
  font-size: 13px;
}

/* ==========================================================
   MOBILE MENU (HAMBURGER)
========================================================== */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 100;
}

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

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

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

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


/* ==========================================================
   SCROLL ANIMATIONS
========================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================
   ANIMATION KEYFRAMES
========================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* ==========================================================
   RESPONSIVE DESIGN - TABLET (768px and below)
========================================================== */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  .nav-container {
    height: 70px;
    padding: 10px 15px;
  }

  .logo {
    height: 35px;
    padding-left: 0;
  }

  .mobile-menu-toggle {
    display: flex;
    margin-right: 10px;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav a {
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #eaeaea;
  }

  .social-icons {
    display: none;
  }

  /* Home Page - Tablet */
  .page-home .hero {
    flex-direction: column;
    height: auto;
    padding: 60px 30px;
    text-align: center;
  }

  .hero-content {
    width: 100%;
    padding-left: 0;
    margin-bottom: 40px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-image-wrapper {
    width: 100%;
    margin-top: 0;
  }

  .hero-image {
    width: 100%;
    margin-top: 0;
  }

  .precision {
    flex-direction: column;
    height: auto;
    padding: 60px 30px;
    gap: 40px;
  }

  .precision-image-wrapper {
    width: 60%;
  }
  
  .precision-image {
    width: 100%;
  }

  .precision-content {
    width: 100%;
    text-align: center;
  }

  .precision-content h2 {
    font-size: 32px;
  }

  .technology {
    padding: 60px 30px;
  }

  .tech-content h2 {
    font-size: 32px;
  }

  .tech-cards {
    flex-direction: column;
    gap: 30px;
  }

  .tech-card {
    width: 100%;
  }

  /* Models Page - Tablet */
  .page-models .hero {
    height: 300px;
    padding: 0 30px;
  }

  .page-models .hero h2 {
    font-size: 36px;
  }

  .model-section {
    padding: 60px 30px;
  }

  .model-info {
    flex-direction: column !important;
    gap: 40px;
  }

  .model-info img {
    width: 50% !important;
    max-width: 50% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .model-info .details {
    width: 100%;
  }

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

  /* Technology Page - Tablet */
  .tech-hero {
    height: auto;
    padding: 80px 30px;
  }

  .tech-hero h1 {
    font-size: 40px;
  }

  .tech-block {
    flex-direction: column !important;
    padding: 60px 30px;
    gap: 40px;
  }

  .tech-block img {
    width: 50% !important;
    max-width: 50% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .tech-text {
    width: 100%;
  }

  .tech-text h2 {
    font-size: 32px;
  }

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

  .tech-cta {
    padding: 60px 30px;
  }

  .tech-cta h2 {
    font-size: 32px;
  }

  /* Support Page - Tablet */
  .support-hero-light {
    padding: 100px 20px 60px;
  }

  .support-hero-light h1 {
    font-size: 36px;
  }

  .support-options {
    flex-direction: column;
    padding: 60px 30px;
    gap: 30px;
  }

  .support-form-section {
    padding: 60px 20px;
  }

  .form-row {
    flex-direction: column;
  }

  .support-contacts {
    flex-direction: column;
    gap: 30px;
    padding: 60px 30px;
  }

  /* Footer - Tablet */
  .footer {
    padding: 40px 30px;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
}

/* ==========================================================
   RESPONSIVE DESIGN - MOBILE (480px and below)
========================================================== */
@media (max-width: 480px) {
  body {
    padding-top: 60px;
  }

  .nav-container {
    height: 60px;
    padding: 8px 10px;
  }

  .logo {
    height: 30px;
  }

  .nav {
    top: 60px;
  }

  /* Home Page - Mobile */
  .page-home .hero {
    overflow: visible;
    padding: 40px 10px 80px;
    position: relative;
    flex-direction: column;
    height: auto;
  }

  .hero-content {
    width: 100% !important;
    padding-left: 0 !important;
    margin-bottom: 30px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-home .hero-image-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 20px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
    overflow: visible !important;
    position: relative !important;
  }

  .page-home .hero-image {
    width: 25% !important;
    max-width: 150px !important;
    min-width: 120px !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
    transform: none !important;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }

  .precision {
    padding: 40px 20px;
    gap: 30px;
  }

  .precision-image-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 10px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  .precision-image {
    width: 50% !important;
    max-width: 300px !important;
    min-width: 200px !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .precision-content h2 {
    font-size: 26px;
  }

  .precision-content p {
    font-size: 16px;
  }

  .technology {
    padding: 40px 20px;
  }

  .tech-content h2 {
    font-size: 26px;
  }

  .tech-content p {
    font-size: 16px;
    margin-bottom: 40px;
  }

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

  .tech-card h3 {
    font-size: 20px;
  }

  .tech-card p {
    font-size: 14px;
  }

  .tech-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    display: block !important;
  }

  /* Models Page - Mobile */
  .page-models .hero {
    height: 250px;
    padding: 0 20px;
  }

  .page-models .hero h2 {
    font-size: 28px;
  }

  .page-models .hero p {
    font-size: 16px;
  }

  .model-section {
    padding: 40px 20px;
  }

  .model-info h3 {
    font-size: 26px;
  }

  .model-info p {
    font-size: 15px;
  }

  .model-info button {
    padding: 14px 32px;
    font-size: 14px;
    width: 100%;
    max-width: 300px;
  }

  .model-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature {
    padding: 20px 15px;
  }

  /* Technology Page - Mobile */
  .tech-hero {
    padding: 60px 20px;
  }

  .tech-hero h1 {
    font-size: 28px;
  }

  .tech-hero p {
    font-size: 16px;
  }

  .tech-block {
    padding: 40px 20px;
    gap: 30px;
  }

  .tech-block img {
    width: 50% !important;
    max-width: 50% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .tech-text h2 {
    font-size: 26px;
  }

  .tech-text p {
    font-size: 15px;
  }

  .tech-cta {
    padding: 40px 20px;
  }

  .tech-cta h2 {
    font-size: 26px;
  }

  /* Support Page - Mobile */
  .support-hero-light {
    padding: 80px 20px 40px;
  }

  .support-hero-light h1 {
    font-size: 28px;
  }

  .support-hero-light p {
    font-size: 16px;
  }

  .support-options {
    padding: 40px 20px;
  }

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

  .support-card h3 {
    font-size: 18px;
  }

  .support-card p {
    font-size: 14px;
  }

  .support-form-section {
    padding: 40px 15px;
  }

  .form-container h2 {
    font-size: 26px;
  }

  .form-container p {
    font-size: 14px;
  }

  .support-form input,
  .support-form textarea {
    padding: 12px 15px;
    font-size: 14px;
  }

  .support-contacts {
    padding: 40px 20px;
  }

  /* Footer - Mobile */
  .footer {
    padding: 30px 20px;
    font-size: 12px;
  }

  .footer-col {
    min-width: 100%;
    margin-bottom: 20px;
  }

  .footer-logo {
    height: 45px;
  }

  .footer-col h4 {
    font-size: 14px;
  }
}