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

:root {
  --dark-bg: #0a0a0a;
  --dark-secondary: #1a1a1a;
  --dark-tertiary: #252525;
  --light-bg: #f8f9fa;
  --light-secondary: #ffffff;
  --accent-blue: #4379bd;
  --accent-blue-hover: #5a8ad4;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --text-gray: #666666;
  --border-dark: #e0e0e0;
  --border-light: #bbbbbb;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--light-bg);
  font-weight: 500;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(67, 121, 189, 0.2);
}

.btn-primary {
  background: var(--accent-blue);
  color: var(--text-dark);
}

.btn-primary:hover {
  background: var(--accent-blue-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(67, 121, 189, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--accent-blue);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--accent-blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(67, 121, 189, 0.3);
}

.btn-light {
  background: var(--light-bg);
  color: var(--text-dark);
}

.btn-light:hover {
  background: var(--light-secondary);
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--dark-tertiary);
  color: var(--text-light);
  border: 1px solid var(--border-dark);
}

.btn-dark:hover {
  background: var(--border-dark);
  color: var(--text-dark);
  transform: translateY(-3px);
}

.btn-outline-light {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
  box-shadow: none;
}

.btn-outline-light:hover {
  background: var(--text-light);
  color: var(--text-dark);
  transform: translateY(-3px);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--light-secondary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-dark);
}

.logo span {
  color: var(--accent-blue);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-gray);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-dark);
}

.nav-links a.active {
  border-bottom: 2px solid var(--accent-blue);
  padding-bottom: 3px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-dark);
}

/* Dropdown Menu */
.nav-links li {
  position: relative;
}

.nav-links li.has-dropdown > a::after {
  content: "▼";
  font-size: 8px;
  margin-left: 6px;
  display: inline-block;
  vertical-align: middle;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: var(--light-secondary);
  border: 1px solid var(--border-dark);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
}

.dropdown-menu li {
  border-bottom: none;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  display: block;
  padding: 14px 20px;
  font-size: 13px !important;
  color: #1a1a1a !important;
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background: var(--accent-blue);
  color: #ffffff !important;
  padding-left: 25px;
}

.nav-links li.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  background: linear-gradient(
    135deg,
    var(--light-secondary) 0%,
    var(--light-bg) 100%
  );
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 100px,
    rgba(67, 121, 189, 0.03) 100px,
    rgba(67, 121, 189, 0.03) 101px
  );
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.hero-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 40px;
  display: block;
}

.hero h1 .highlight {
  color: var(--accent-blue);
}

.typed-text-wrapper {
  color: var(--accent-blue);
  display: inline-block;
}

.typed-text {
  display: inline;
}

.cursor {
  display: inline-block;
  color: var(--accent-blue);
  animation: blink 1s infinite;
  font-weight: 400;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.page-header .highlight {
  color: var(--accent-blue);
}

.hero .subheadline {
  font-size: 18px;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

/* Pathway Sections */
.pathways {
  padding: 100px 0;
  background: var(--light-secondary);
}

.pathways .section-title {
  text-align: center;
  margin-bottom: 20px;
}

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

.pathway-card {
  background: var(--light-bg);
  border: 1px solid var(--border-dark);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.pathway-card .cta-btn {
  margin-top: auto;
}

.pathway-card.pathway-newspaper {
  background-image: url("images/pexels-suzy-hazelwood-5010877-scaled.jpg");
  background-size: cover;
  background-position: center;
}

.pathway-card.pathway-newspaper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.9) 100%);
  z-index: 1;
}

.pathway-card.pathway-material::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.85) 100%);
  z-index: 1;
}

.pathway-card.pathway-newspaper h2,
.pathway-card.pathway-newspaper p,
.pathway-card.pathway-newspaper .cta-btn {
  position: relative;
  z-index: 2;
}

.pathway-card.pathway-material {
  background-image: url("images/solutions-header.jpg");
  background-size: cover;
  background-position: center;
}

.pathway-card.pathway-material::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.7) 100%);
  z-index: 1;
}

.pathway-card.pathway-material h2,
.pathway-card.pathway-material p,
.pathway-card.pathway-material .cta-btn {
  position: relative;
  z-index: 2;
}

.pathway-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--accent-blue);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.pathway-card:hover {
  border-color: var(--accent-blue);
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(67, 121, 189, 0.15);
}

.pathway-card h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: var(--text-dark);
  text-align: center;
}

.pathway-card.pathway-newspaper h2,
.pathway-card.pathway-material h2 {
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.pathway-card .pathway-subtext {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 40px;
  line-height: 1.8;
}

.pathway-card.pathway-newspaper .pathway-subtext,
.pathway-card.pathway-material .pathway-subtext {
  color: #dddddd;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.pathway-card .cta-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--accent-blue);
  border: 2px solid var(--accent-blue);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  text-align: center;
}

.pathway-card .cta-btn:hover {
  background: var(--accent-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(67, 121, 189, 0.3);
}

/* Page Header */
.page-header {
  padding: 180px 0 100px;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, var(--dark-bg) 100%),
    var(--dark-secondary);
  text-align: center;
  border-bottom: 1px solid var(--border-dark);
  color: var(--text-light);
}

.newspaper-header {
  background-image:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.5) 0%,
      rgba(10, 10, 10, 0.4) 100%
    ),
    url("images/pexels-suzy-hazelwood-5010877-scaled.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
}

.page-header h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: var(--text-light);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.page-header .page-subtitle {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-blue);
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.page-header .highlight {
  color: var(--accent-blue);
}

.newspaper-header .highlight {
  color: #7ab4e0;
}

.newspaper-header .page-subtitle {
  color: #eeeeee;
  font-weight: 600;
}

.material-handling-header .highlight {
  color: #8ac0e6;
}

.material-handling-header .page-subtitle {
  color: #eeeeee;
  font-weight: 600;
}

.mirasert-header .highlight {
  color: #99c8f0;
}

.mirapackage-header .highlight {
  color: #99c8f0;
}

.mirapackage-header .page-subtitle {
  color: #eeeeee;
  font-weight: 600;
}

.mirasert-header .page-subtitle {
  color: #eeeeee;
  font-weight: 600;
}

.mirapackage-header {
  background-image:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.6) 0%,
      rgba(10, 10, 10, 0.5) 100%
    ),
    url("images/Untitled design.jpg") !important;
  background-size: 80% 80% !important;
  background-position: center top !important;
  background-attachment: fixed !important;
  background-repeat: repeat !important;
}

.mirapackage-header .section-title {
  color: #99c8f0;
}

.miralizer-header {
  background-image:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.6) 0%,
      rgba(10, 10, 10, 0.5) 100%
    ),
    url("images/20240829_161203.jpg") !important;
  background-size: cover !important;
  background-position: center top !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
}

.miralizer-header .section-title {
  color: #99c8f0;
}

.miralizer-header .highlight {
  color: #99c8f0;
}

.miralizer-header .page-subtitle {
  color: #eeeeee;
  font-weight: 600;
}

.miralabel-header {
  background-image:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.6) 0%,
      rgba(10, 10, 10, 0.5) 100%
    ),
    url("images/2023-06-27 21.47.05.jpg") !important;
  background-size: cover !important;
  background-position: center top !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
}

.miralabel-header .section-title {
  color: #99c8f0;
}

.miralabel-header .highlight {
  color: #99c8f0;
}

.miralabel-header .page-subtitle {
  color: #eeeeee;
  font-weight: 600;
}

.page-header .page-subtitle {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.material-handling-header {
  background-image:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.5) 0%,
      rgba(10, 10, 10, 0.4) 100%
    ),
    url("images/solutions-header.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
}

.contact-header {
  background-image:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.6) 0%,
      rgba(10, 10, 10, 0.5) 100%
    ),
    url("images/Contact-header.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
}

.contact-header .section-title {
  color: #99c8f0;
}

.contact-header .highlight {
  color: #99c8f0;
}

.contact-header .page-subtitle {
  color: #eeeeee;
  font-weight: 600;
}

.mirasert-header {
  background-image:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.6) 0%,
      rgba(10, 10, 10, 0.5) 100%
    ),
    url("images/Picture4.png") !important;
  background-size: cover !important;
  background-position: center top !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
}

.mirastore-header {
  background-image:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.6) 0%,
      rgba(10, 10, 10, 0.5) 100%
    ),
    url("images/3.png") !important;
  background-size: cover !important;
  background-position: center top !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
}

/* Pain Points Section */
.pain-section {
  padding: 100px 0;
  background: var(--light-bg);
}

/* Default pain-item styles apply to all pages */
.pain-item {
  padding: 35px 30px;
  background: var(--light-secondary);
  border: 1px solid var(--border-dark);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.pain-item:hover {
  border-color: var(--accent-blue);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(67, 121, 189, 0.15);
}

.pain-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
  text-align: center;
}

.pain-item p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

.pain-section.dark {
  background: var(--dark-bg);
  color: var(--text-light);
}

.pain-section.dark .pain-item {
  background: var(--dark-secondary);
  border-color: var(--dark-tertiary);
}

.pain-section.dark .pain-item h3 {
  color: var(--text-light);
}

.pain-section.dark .pain-item p {
  color: #bbbbbb;
}

.pain-section.dark h2 {
  color: var(--text-light);
}

.page-header .section-title {
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-blue);
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.newspaper-header .section-title {
  color: #7ab4e0;
}

.material-handling-header .section-title {
  color: #8ac0e6;
}

.mirasert-header .section-title {
  color: #99c8f0;
}

.mirapackage-header .section-title {
  color: #99c8f0;
}

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

.pain-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
  max-width: 800px;
  color: var(--text-dark);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.pain-item {
  padding: 35px 30px;
  background: var(--light-secondary);
  border: 1px solid var(--border-dark);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.pain-item:hover {
  border-color: var(--accent-blue);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(67, 121, 189, 0.15);
}

.pain-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
  text-align: center;
}

.pain-item p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* Four Pillars */
.pillars-section {
  padding: 60px 0;
}

.pillars-header {
  margin-bottom: 50px;
}

.pillars-header h2 {
  font-size: clamp(24px, 5vw, 32px);
}

.pillars-header p {
  font-size: 15px;
}

.pillars-section.dark {
  background: var(--dark-bg);
}

.pillars-section.dark .pillars-header h2 {
  color: var(--text-light);
}

.pillars-section.dark .pillars-header p {
  color: #bbbbbb;
}

.pillars-header {
  text-align: center;
  margin-bottom: 80px;
}

.pillars-header .section-title {
  display: block;
  margin-bottom: 15px;
}

.pillars-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: var(--text-dark);
}

.pillars-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-gray);
  font-size: 18px;
  line-height: 1.8;
}

.pillars-header p.small {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-blue);
}

.pillars-desc {
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--text-gray);
  font-size: 18px;
  line-height: 1.8;
}

.pillars-tagline {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 50px;
}

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

.pillars-grid-center {
  display: flex;
  justify-content: center;
}

.pillars-grid-center .pillar-card {
  max-width: 500px;
}

.pillar-card {
  background: var(--light-bg);
  border: 1px solid var(--border-dark);
  padding: 50px 40px;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
}

.pillar-card.placeholder-card {
  background: var(--light-secondary);
  border-style: dashed;
  opacity: 0.7;
}

.pillar-card.placeholder-card .learn-more {
  display: none;
}

.pillar-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(67, 121, 189, 0.15);
}

.pillar-number {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 60px;
  font-weight: 700;
  color: rgba(67, 121, 189, 0.15);
  line-height: 1;
}

.pillar-card h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--accent-blue);
  text-align: center;
}

.pillar-card h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  text-align: center;
}

.pillar-card p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 25px;
}

.pillar-card a {
  color: var(--accent-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.pillar-card a:hover {
  background: var(--accent-blue);
  color: #ffffff;
  text-decoration: none;
}

.learn-more {
  color: var(--accent-blue);
  font-weight: 600;
  display: inline-block;
  margin-top: 15px;
}

.learn-more:hover {
  text-decoration: underline;
}

.pillar-card .pain-solved {
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
}

.pillar-card .pain-solved span {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-blue);
}

.pillar-card .pain-solved p {
  font-size: 14px;
  color: var(--text-dark);
  margin-top: 10px;
  margin-bottom: 0;
}

/* Insight Sections */
.insight-section {
  padding: 100px 0;
  background: var(--light-bg);
}

.insight-section.dark {
  background: var(--dark-bg);
  color: var(--text-light);
}

.insight-section.dark .section-title {
  color: var(--accent-blue);
}

.insight-section.dark h2 {
  color: var(--text-light);
}

.insight-section.dark p {
  color: #bbbbbb;
}

.insight-section.dark ul li {
  color: #bbbbbb;
  border-bottom-color: #333333;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

.insight-content h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.insight-content p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.insight-content ul {
  list-style: none;
  margin-top: 30px;
}

.insight-content ul li {
  padding: 15px 0;
  border-bottom: 1px solid var(--border-dark);
  font-size: 15px;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 15px;
}

.insight-content ul li::before {
  content: "→";
  color: var(--accent-blue);
  font-weight: 600;
}

.insight-visual {
  background: var(--dark-tertiary);
  border: 1px solid var(--border-dark);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.insight-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.insight-visual::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid var(--accent-blue);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse 3s infinite;
}

.insight-visual::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(67, 121, 189, 0.2);
  transform: rotate(45deg);
  animation: rotate 10s linear infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.5; }
}

@keyframes rotate {
  from { transform: rotate(45deg); }
  to { transform: rotate(405deg); }
}

.mirasert-visual {
  background-image: url("images/MiraSert_screen2-768x430.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  width: 100% !important;
  height: 350px !important;
}

.mirasert-visual::before,
.mirasert-visual::after {
  display: none !important;
}

.mirastore-visual {
  background-image: url("images/Picture2.png") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  width: 100% !important;
  height: 350px !important;
}

.mirastore-visual::before,
.mirastore-visual::after {
  display: none !important;
}

.mirapackage-visual {
  background-image: url("images/Picture2.png") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  width: 100% !important;
  height: 350px !important;
}

.mirapackage-visual::before,
.mirapackage-visual::after {
  display: none !important;
}

.miralizer-visual {
  background-image: url("images/20240829_161039.jpg") !important;
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  width: 100% !important;
  height: 350px !important;
}

.miralizer-visual::before,
.miralizer-visual::after {
  display: none !important;
}

.miralabel-visual {
  background-image: url("images/2023-06-27 21.48.19.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  width: 100% !important;
  height: 350px !important;
  object-fit: cover;
}

.miralabel-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.miralabel-visual::before,
.miralabel-visual::after {
  display: none !important;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: var(--light-bg);
  text-align: center;
  border-top: 1px solid var(--border-dark);
}

.cta-section.dark {
  background: var(--dark-bg);
  color: var(--text-light);
}

.cta-section.dark h2 {
  color: var(--text-light);
}

.cta-section.dark p {
  color: #bbbbbb;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: var(--text-dark);
}

.cta-section p {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Products Page */
.products-section {
  padding: 100px 0;
  background: var(--dark-bg);
  color: var(--text-light);
}

.products-section .section-title {
  color: var(--accent-blue);
}

.products-section.dark {
  background: var(--dark-secondary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.product-card {
  background: var(--dark-tertiary);
  border: 1px solid var(--border-dark);
  padding: 40px;
  transition: all 0.4s ease;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue-hover));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.product-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  color: var(--text-light);
  text-align: center;
}

.product-card .product-type {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-blue);
  margin-bottom: 20px;
}

.product-card p {
  font-size: 14px;
  color: #bbbbbb;
  line-height: 1.7;
  margin-bottom: 25px;
}

.product-card a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-card a:hover {
  gap: 15px;
  text-decoration: underline;
}

/* About Page */
.about-hero {
  padding: 180px 0 100px;
  background: var(--dark-secondary);
  border-bottom: 1px solid var(--border-dark);
  color: var(--text-light);
}

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

.about-content h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: -1px;
  color: var(--text-light);
}

.about-content p {
  font-size: 16px;
  color: #bbbbbb;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-visual {
  background: var(--dark-tertiary);
  border: 1px solid var(--border-dark);
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-stats {
  padding: 80px 0;
  background: var(--dark-bg);
  color: var(--text-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 14px;
  color: #aaaaaa;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Contact Page */
.contact-section {
  padding: 100px 0;
  background: var(--light-bg);
  color: var(--text-dark);
}

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

.contact-info h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}

.contact-info.white-bg h2 {
  color: var(--text-dark);
}

.contact-info.white-bg p {
  color: var(--text-gray);
}

.contact-info.white-bg .contact-details li {
  border-bottom-color: var(--border-dark);
}

.contact-info.white-bg .contact-details li p {
  color: var(--text-dark);
}

.contact-info.white-bg .contact-details li p a {
  color: var(--accent-blue);
}

.contact-info.white-bg .contact-details li div span {
  color: var(--accent-blue);
}

.contact-info p {
  font-size: 16px;
  color: #bbbbbb;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.contact-details li:hover {
  padding-left: 10px;
}

.contact-details li i {
  font-size: 24px;
  color: var(--accent-blue);
  min-width: 24px;
  margin-top: 3px;
  transition: all 0.3s ease;
}

.contact-details li:hover i {
  transform: scale(1.1);
}

.contact-details li div {
  flex: 1;
}

.contact-details li span {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-blue);
  display: block;
  margin-bottom: 8px;
}

.contact-details li p {
  margin: 0;
  font-size: 15px;
  color: var(--text-light);
}

.contact-details li p a {
  color: var(--accent-blue);
}

.contact-details li p a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--accent-blue);
  border-radius: 16px;
  padding: 50px;
  color: var(--text-light);
  box-shadow: 0 20px 60px rgba(67, 121, 189, 0.3);
}

.contact-form h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ffffff;
  text-align: center;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: #ffffff;
  border: none;
  color: var(--text-dark);
  font-size: 15px;
  border-radius: 8px;
  min-height: 50px;
  font-family: inherit;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.contact-form .form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: #888888;
}

.contact-form .form-group select {
  color: var(--text-dark);
  cursor: pointer;
}

.contact-form .form-group select option {
  background: #ffffff;
  color: var(--text-dark);
}

.contact-section .btn-primary {
  width: 100%;
  padding: 18px 40px;
  background: #ffffff;
  color: var(--accent-blue);
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.contact-section .btn-primary:hover {
  background: var(--dark-bg);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.contact-form h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--text-light);
}

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaaaaa;
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: var(--dark-bg);
  border: 1px solid var(--border-dark);
  color: var(--text-light);
  font-size: 15px;
  transition: border-color 0.3s ease;
  border-radius: 4px;
  min-height: 44px;
  font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666666;
}

.form-group select {
  color: var(--text-light);
  cursor: pointer;
}

.form-group select option {
  background: var(--dark-bg);
  color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  padding: 80px 0 40px;
  background: var(--dark-tertiary);
  color: var(--text-light);
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue-hover), var(--accent-blue));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 20px;
  display: inline-block;
  color: var(--text-light);
}

.footer-brand p {
  font-size: 14px;
  color: #aaaaaa;
  line-height: 1.8;
  max-width: 300px;
}

.footer-logo {
  max-width: 180px;
  height: auto;
  margin-top: 20px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
}

.footer-column h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: var(--text-light);
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-blue);
}

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

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  font-size: 14px;
  font-weight: 600;
  color: #aaaaaa;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: var(--accent-blue);
  transform: translateX(5px);
}

.footer-contact-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #aaaaaa;
  transition: all 0.3s ease;
}

.footer-contact-list li a i {
  font-size: 16px;
  color: var(--accent-blue);
  min-width: 16px;
  transition: all 0.3s ease;
}

.footer-contact-list li a:hover {
  color: var(--accent-blue);
}

.footer-contact-list li a:hover i {
  transform: scale(1.1);
}

.footer-contact-list li a:hover i {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #888888;
}

/* Responsive */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }

  .hero h1 {
    font-size: clamp(32px, 5vw, 56px);
  }

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

  .pillars-grid .pillar-card > div {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 1024px) {
  .pathways-grid,
  .pillars-grid,
  .insight-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .pain-section h2 {
    font-size: clamp(22px, 4vw, 32px);
  }

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

  .pain-item {
    padding: 25px;
  }

  .pain-item-image {
    order: -1;
    padding: 0;
  }

  .pain-item-image img {
    width: 100%;
    border-radius: 8px;
  }

  .page-header h1 {
    font-size: clamp(28px, 4vw, 44px);
  }

  .insight-section .insight-grid {
    grid-template-columns: 1fr;
  }

  .insight-section .insight-grid .insight-visual {
    order: -1;
  }
}

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

  .nav-container {
    padding: 15px 20px;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.99);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    display: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links a {
    display: block;
    padding: 15px 0;
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    min-height: 44px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
  }

  .nav-links a:hover {
    color: var(--accent-blue);
  }

  .nav-links a.active {
    color: var(--accent-blue);
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 13px;
  }

  .nav-links a.logo {
    color: var(--text-light);
  }

  .nav-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .nav-toggle span {
    min-height: 3px;
    min-width: 24px;
  }

  .hero {
    padding: 120px 20px 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(28px, 7vw, 42px);
  }

  .hero .subheadline {
    font-size: 16px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 13px;
  }

  .pathways {
    padding: 60px 0;
  }

  .pathways-grid {
    gap: 20px;
  }

  .pathway-card {
    padding: 30px 25px;
  }

  .pathway-card h2 {
    font-size: 22px;
  }

  .pathway-card .pathway-subtext {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .pathway-card .cta-btn {
    padding: 12px 24px;
    font-size: 11px;
  }

  .page-header {
    padding: 140px 0 60px;
  }

  .mirapackage-header {
    background-size: 120% 120% !important;
    background-repeat: repeat !important;
  }

  .page-header h1 {
    font-size: clamp(24px, 6vw, 36px);
  }

  .page-header .page-subtitle {
    font-size: 15px;
  }

  .pain-section,
  .pillars-section,
  .insight-section,
  .products-section,
  .cta-section,
  .contact-section {
    padding: 60px 0;
  }

  .pain-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .pain-item {
    padding: 25px;
  }

  .pain-item h3 {
    font-size: 16px;
  }

  .pain-item p {
    font-size: 13px;
  }

  .pillars-header h2 {
    font-size: clamp(24px, 5vw, 32px);
  }

  .pillar-card {
    padding: 30px 25px;
  }

  .pillar-number {
    font-size: 48px;
    top: 20px;
    right: 20px;
  }

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

  .pillar-card h4 {
    font-size: 16px;
  }

  .pillar-card > div {
    grid-template-columns: 1fr !important;
  }

  .section-title {
    font-size: 18px;
  }

  .insight-content h2 {
    font-size: clamp(22px, 4vw, 28px);
  }

  .insight-content p {
    font-size: 14px;
  }

  .insight-content ul li {
    font-size: 13px;
    padding: 12px 0;
  }

  .insight-visual {
    height: 250px;
  }

  .products-section .product-card,
  .products-section.dark .product-card {
    padding: 25px;
  }

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

  .product-card p {
    font-size: 13px;
  }

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

  .stat-item h3 {
    font-size: 36px;
  }

  .about-grid {
    gap: 40px;
  }

  .about-content h1 {
    font-size: clamp(24px, 5vw, 32px);
  }

  .about-content p {
    font-size: 14px;
  }

  .about-visual {
    height: 300px;
  }

  .contact-grid {
    gap: 40px;
  }

  .contact-form {
    padding: 30px 25px;
  }

  .contact-info h2 {
    font-size: 24px;
  }

  .contact-details li {
    flex-direction: column;
    gap: 5px;
  }

  .contact-details li span {
    min-width: auto;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .cta-section h2 {
    font-size: clamp(22px, 4vw, 30px);
  }

  .cta-section p {
    font-size: 14px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .pillars-grid .pillar-card {
    padding: 30px 25px;
  }

  .pillars-grid .pillar-card > div {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

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

  html {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero {
    padding: 100px 15px 40px;
  }

  .hero-content {
    padding: 0;
  }

  .hero-logo {
    height: 60px;
    margin-bottom: 20px;
  }

  .hero .subheadline {
    font-size: 14px;
    line-height: 1.5;
  }

  .btn {
    padding: 12px 24px;
    font-size: 12px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pathway-card h2 {
    font-size: 18px;
  }

  .pathway-card {
    padding: 20px 15px;
  }

  .pathway-card .cta-btn {
    padding: 10px 20px;
    font-size: 11px;
    min-height: 44px;
  }

  .pillar-card {
    padding: 20px 15px;
  }

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

  .pillar-number {
    font-size: 40px;
  }

  .pain-item {
    padding: 20px 15px;
  }

  .insight-visual {
    height: 180px;
  }

  .about-visual {
    height: 220px;
  }

  .stat-item h3 {
    font-size: 28px;
  }

  .contact-info h2,
  .contact-form h3 {
    font-size: 20px;
  }

  .contact-details li {
    flex-direction: column;
    gap: 8px;
    padding: 15px 0;
  }

  .contact-details li i {
    font-size: 20px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 12px;
    font-size: 16px;
    min-height: 44px;
    border-radius: 4px;
  }

  .form-group textarea {
    min-height: 120px;
  }

  .contact-form {
    padding: 20px 15px;
  }

  .footer-brand p {
    font-size: 13px;
    margin-top: 15px;
  }

  .footer-column h4 {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .footer-column ul li {
    margin-bottom: 10px;
  }

  .footer-column ul li a,
  .footer-contact-list li a {
    font-size: 13px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .footer-contact-list li a {
    gap: 10px;
  }

  .footer-contact-list li a i {
    font-size: 14px;
  }

  .footer-bottom {
    padding: 20px 0;
    gap: 15px;
    font-size: 12px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .contact-details li span {
    min-width: auto;
  }

  .cta-section {
    padding: 50px 0;
  }

  .cta-section h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .cta-section p {
    font-size: 13px;
    margin-bottom: 25px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .section-title {
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .page-header {
    padding: 120px 0 50px;
  }

  .page-header .page-subtitle {
    font-size: 14px;
    margin-top: 15px;
  }

  .product-card h3 {
    font-size: 16px;
  }

  .product-card p {
    font-size: 12px;
  }

  nav {
    position: fixed;
    z-index: 1000;
  }

  .nav-toggle span {
    min-height: 4px;
    min-width: 24px;
  }

  .nav-links {
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav-links a {
    padding: 15px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .dropdown-menu {
    position: static;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    margin: 0;
    padding: 10px 20px;
    display: none;
  }

  .nav-links li.has-dropdown a::after {
    content: " ▼";
    font-size: 10px;
  }

  .dropdown-menu li {
    margin-bottom: 0;
  }

  .dropdown-menu li a {
    padding: 12px 0;
    font-size: 13px;
  }
}

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

  html {
    font-size: 13px;
  }

  .hero h1 {
    font-size: 20px;
  }

  .hero {
    padding: 80px 12px 30px;
  }

  .hero-logo {
    height: 50px;
  }

  .hero .subheadline {
    font-size: 13px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 11px;
  }

  .pathway-card,
  .pillar-card,
  .pain-item {
    padding: 15px 12px;
  }

  .footer-column h4 {
    font-size: 11px;
  }

  .footer-column ul li a {
    font-size: 12px;
  }

  .contact-form {
    padding: 15px 12px;
  }

  .page-header h1 {
    font-size: 20px;
  }
}
