* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-overflow-scrolling: touch;
}

body,
html {
  touch-action: pan-x pan-y pinch-zoom;
}

body {
  background-color: #fff;
  color: #2d3748;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Roboto,
    sans-serif;
  line-height: 1.6;
  overflow-y: visible !important;
  transition: opacity 0.5s ease;
  -webkit-overflow-scrolling: touch;
}

.form-control.select-compact {
  height: 30px !important;
  padding: 0 8px !important;
  font-size: 12px !important;
  line-height: 1 !important;
}

.form-control.select-compact option {
  padding: 2px 4px !important;
  font-size: 12px !important;
}

body.loaded {
  opacity: 1;
}

.feature-section,
.pricing-card,
.stats-section,
.video-feature {
  opacity: 1;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1a202c;
  font-family: Caveat, cursive;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 6rem;
}

h2 {
  font-size: 4rem;
}

h3,
h4,
h5,
h6 {
  font-size: 2rem;
}

.x_wd_yellow_highlight_bold_05 {
  animation: highlightSweep 2s ease-in-out forwards;
  background: linear-gradient(120deg,
      transparent,
      transparent 40%,
      #ffe066 0,
      #ffeb3b 60%,
      transparent 0);
  background-position: 200% 0;
  background-size: 200% 100%;
  border-radius: 4px;
  display: inline-block;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  position: relative;
}

.x_wd_yellow_highlight_bold_05:before {
  background: linear-gradient(45deg, #ffeb3b, #ffc107, #ffe066);
  border-radius: 4px;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.8;
  position: absolute;
  right: 0;
  top: 0;
  transform: skew(-12deg);
  z-index: -1;
}

@keyframes highlightSweep {
  to {
    background-position: 0 0;
  }
}

.yellow-highlight {
  background: linear-gradient(120deg, #ffeb3b, #ffe066);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(255, 235, 59, 0.3);
  color: #1a202c;
  display: inline-block;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
}

.yellow-highlight-marker {
  background: linear-gradient(180deg, transparent 60%, #ffeb3b 0);
  font-weight: 600;
  padding: 0.1rem 0.2rem;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
}

.header {
  backdrop-filter: blur(10px);
  background: hsla(0, 0%, 100%, 0.95);
  position: fixed;
  top: 0;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.3s ease,
    box-shadow 0.3s ease;
  width: 100%;
  z-index: 1000;
}

.header.nav-hidden {
  transform: translateY(-100%);
}

.header.scrolled {
  backdrop-filter: blur(15px);
  background: hsla(0, 0%, 100%, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav {
  padding: 1rem 0;
}

.nav-container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
}

.logo {
  color: #4a5568;
  font-size: 1.5rem;
  font-weight: 700;
}

.logo svg {
  transition: transform 0.2s ease;
}

.logo:hover svg {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: #4a5568;
  font-weight: 500;
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #714b67;
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.nav-link:after {
  background: #714b67;
  bottom: -5px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transition: width 0.3s ease;
  width: 0;
}

.nav-link:hover:after {
  width: 100%;
}

.nav-item {
  position: relative;
}

.mobile-menu-toggle {
  display: none;
}

.dropdown-menu {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  left: 0;
  margin-top: 1rem;
  min-width: 250px;
  opacity: 0;
  position: absolute;
  top: 100%;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  z-index: 1001;
}

@media (min-width: 750px) {
  .megamenu>.dropdown-menu {
    width: 730px;
  }

  .dropdown-menu.services-menu {
    left: -230px;
    width: 1100px;
  }

  .dropdown-menu.services-menu:after,
  .dropdown-menu.services-menu:before {
    left: 15rem;
  }

  .dropdown-menu.industries-menu {
    width: 730px;
  }

  .dropdown-menu.solutions-menu {
    width: 600px;
  }
}

.apps-menu {
  max-width: 900px;
  min-width: 800px;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.dropdown-container {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding: 2rem;
}

.dropdown-section small {
  display: none;
  padding-left: 5px;
}

.apps-menu .dropdown-container {
  grid-template-columns: repeat(3, 1fr);
}

.dropdown-section h4 {
  border-bottom: 2px solid #714b67;
  color: #1a202c;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

.dropdown-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-section li {
  margin: 0;
}

.dropdown-section a {
  align-items: center;
  border-radius: 6px;
  color: #4a5568;
  display: flex;
  font-size: 0.9rem;
  margin: 0 -0.5rem;
  padding: 0.75rem 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-section a:hover {
  background: #f7fafc;
  color: #714b67;
  transform: translateX(4px);
}

.app-icon {
  align-items: center;
  background: #f3f4f6;
  background: #f8f9fa;
  border-radius: 8px;
  border-radius: 15px;
  display: inline-block;
  display: flex;
  font-size: 1.2rem;
  font-size: 1.5rem;
  font-size: 2.5rem;
  height: 40px;
  height: 60px;
  justify-content: center;
  margin-right: 1rem;
  width: 24px;
  width: 40px;
  width: 60px;
}

.dropdown-footer {
  background: #f8f9fa;
  border-radius: 0 0 12px 12px;
  border-top: 1px solid #e2e8f0;
  padding: 1.5rem 2rem;
  text-align: center;
}

.dropdown-footer .btn-primary {
  padding: 0.75rem 2rem;
}

.dropdown-menu:before {
  border-bottom: 8px solid #fff;
  top: -8px;
  z-index: 1002;
}

.dropdown-menu:after,
.dropdown-menu:before {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  content: "";
  height: 0;
  left: 2rem;
  position: absolute;
  width: 0;
}

.dropdown-menu:after {
  border-bottom: 8px solid #e2e8f0;
  top: -9px;
  z-index: 1001;
}

.btn-primary,
.btn-primary-large,
.btn-secondary,
.btn-secondary-large {
  border: 2px solid #714b67;
  border-radius: 8px;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.industry-card-link {
  text-decoration: none;
}

.btn-primary,
.btn-primary-large {
  background: linear-gradient(135deg, #714b67, #8b5a8c);
  border: 2px solid transparent;
  color: #fff;
}

.btn-secondary,
.btn-secondary-large {
  background: transparent;
  color: #714b67;
}

.btn-primary-large,
.btn-secondary-large {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.btn-primary-large:hover,
.btn-primary:hover,
.btn-secondary-large:hover,
.btn-secondary:hover {
  box-shadow: 0 10px 25px rgba(113, 75, 103, 0.3);
  transform: translateY(-2px);
}

.btn-secondary-large:hover,
.btn-secondary:hover {
  background: #714b67;
  color: #fff;
}

.btn-link {
  border-bottom: 2px solid transparent;
  color: #714b67;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.3s ease;
}

.btn-link:hover {
  border-bottom-color: #714b67;
}

.hero {
  background: #fff;
  padding: 8rem 0 4rem;
  text-align: center;
}

.hero-title {
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: #714b67;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-description {
  color: #4a5568;
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0 auto 2rem;
  max-width: 600px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.hero-note {
  color: #718096;
  font-size: 0.9rem;
}

.hero-stats {
  display: grid;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 3rem;
  gap: 2rem;
  gap: 4rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  justify-items: center;
  margin: 2rem auto 0;
  max-width: 900px;
  max-width: 800px;
}

.hero-stats,
.stat-item {
  align-items: center;
  display: flex;
}

.stat-item {
  color: #1f2937;
  flex-direction: column;
  padding: 2rem 1rem;
  text-align: center;
}

.stat-number {
  color: #714b67;
  color: #875a7b;
  font-size: 2.5rem;
  font-size: 3.5rem;
  font-size: 2rem;
  font-weight: 800;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.stat-label {
  color: #718096;
  color: #4a5568;
  color: #6b7280;
  font-size: 0.875rem;
  font-size: 1.1rem;
  font-weight: 600;
  font-weight: 500;
  margin-top: 0.25rem;
}

.feature-section {
  padding: 5rem 0;
}

.feature-section.alternate {
  background: #f7fafc;
}

.feature-content {
  align-items: center;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
}

.feature-content.reverse {
  direction: rtl;
}

.feature-content.reverse>* {
  direction: ltr;
}

.feature-description,
.feature-title {
  margin-bottom: 1.5rem;
}

.feature-description {
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.8;
}

.feature-highlight {
  color: #714b67;
  font-size: 1.1rem;
  font-weight: 600;
}

.feature-steps {
  margin: 2rem 0;
}

.step {
  gap: 1rem;
  margin: 1rem 0;
}

.step,
.step-number {
  align-items: center;
  display: flex;
}


.step-number {
  /* align-self: flex-start; */
  background: linear-gradient(135deg, #875a7b, #714b67);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin: 0 0 1.5rem; */
  width: 64px;


}

.feature-note {
  color: #718096;
  font-style: italic;
  margin-top: 1rem;
}

.placeholder-image {
  background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  height: 300px;
  height: 100%;
  position: relative;
}

.image-content,
.placeholder-image {
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.image-content {
  flex-direction: column;
  padding: 2rem;
}

.image-content h3 {
  color: #4a5568;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.image-content p {
  color: #718096;
  line-height: 1.5;
  max-width: 300px;
}

.features-grid-section {
  background: #f7fafc;
  padding: 5rem 0;
  text-align: center;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #714b67;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-description {
  color: #4a5568;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-columns: repeat(3, 1fr);
  margin: 2rem 0;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.feature-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.feature-icon {
  display: block;
  font-size: 2.5rem;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.feature-card h4 {
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: #718096;
  color: #6b7280;
  line-height: 1.6;
}

.see-all {
  margin-top: 2rem;
}

.feature-img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: auto;
  width: 100%;
}

.hero-image-section {
  background: #fff;
  overflow: hidden;
  padding: 3rem 0;
}

.hero-image-content {
  position: relative;
  text-align: center;
}

.hero-main-image {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  height: auto;
  max-width: 1000px;
  min-width: 100%;
  transition: transform 0.3s ease;
  width: 100%;
}

.hero-main-image:hover {
  transform: scale(1.02);
}

.hero-image-overlay {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  left: 50%;
  max-width: 500px;
  position: absolute;
  top: 20px;
  transform: translateX(-50%);
  width: 90%;
  z-index: 2;
}

.overlay-badge {
  backdrop-filter: blur(10px);
  background: hsla(0, 0%, 100%, 0.95);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  padding: 1rem 2rem;
  text-align: center;
  width: fit-content;
}

.badge-text {
  color: #1a202c;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

.overlay-stats {
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}

.overlay-stats,
.stat-item-small {
  align-items: center;
  display: flex;
  justify-content: center;
}

.stat-item-small {
  backdrop-filter: blur(10px);
  background: hsla(0, 0%, 100%, 0.9);
  border-radius: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  color: #4a5568;
  font-weight: 600;
  gap: 0.5rem;
  min-width: fit-content;
  padding: 0.75rem 1.5rem;
  text-align: center;
  white-space: nowrap;
}

.stat-icon {
  align-items: center;
  display: flex;
  font-size: 1.2rem;
  justify-content: center;
}

.big-video-section {
  background: #f7fafc;
  padding: 5rem 0;
}

.video-section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.video-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.video-subtitle {
  color: #4a5568;
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 600px;
}

.big-video-container {
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  margin: 3rem 0;
  overflow: hidden;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.big-video-container:hover {
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.25);
  transform: translateY(-10px);
}

.video-preview-image {
  display: block;
  height: auto;
  width: 100%;
}

.video-overlay {
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.7);
  bottom: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 0;
  opacity: 0;
  padding: 1.5rem;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease;
}

.big-video-container:hover .video-overlay {
  opacity: 1;
}

.big-play-button {
  align-items: center;
  background: hsla(0, 0%, 100%, 0.95);
  border-radius: 50%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  height: 100px;
  justify-content: center;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
  width: 100px;
}

.big-play-button:hover {
  transform: scale(1.1);
}

.play-triangle {
  color: #714b67;
  font-size: 2.5rem;
  margin-left: 8px;
}

.video-duration {
  border-radius: 20px;
  border-radius: 4px;
  bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  right: 20px;
  right: 0.5rem;
  top: 20px;
}

.video-duration,
.video-title-overlay {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  position: absolute;
}

.video-title-overlay {
  border-radius: 12px;
  bottom: 20px;
  left: 20px;
  padding: 1.5rem;
  right: 20px;
  text-align: left;
}

.video-title-overlay h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.video-stats {
  color: #a0aec0;
  display: flex;
  font-size: 0.9rem;
  gap: 2rem;
}

.video-features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 3rem;
}

.video-feature {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.video-feature:hover {
  transform: translateY(-5px);
}

.feature-icon-large {
  display: block;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.video-feature h4 {
  color: #1a202c;
  margin-bottom: 1rem;
}

.video-feature p {
  color: #718096;
  line-height: 1.6;
}

.pricing-section {
  background: #f7fafc;
  background: #f9f9f9;
  background: #fff;
  background: #fafbfc;
  padding: 6rem 0;
  text-align: center;
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1000px;
  max-width: 1300px;
  /* padding: 0 2rem;  */
}

.pricing-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: visible;
  padding: 1rem;
  margin-bottom: 50px;
  position: relative;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  transition: all 0.3s ease;
  transition: all 0.3s;
}

.pricing-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
  transform: translateY(-8px);
  transform: translateY(-5px);
}

.pricing-card.standard {
  border: 3px solid #714b67;
  transform: scale(1.05);
}

.plan-badge {
  background: linear-gradient(135deg, #714b67, #8b5a8c);
  border-radius: 20px;
  border-radius: 50px;
  color: #fff;
  font-size: 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  font-weight: 700;
  left: 50%;
  padding: 0.25rem 1rem;
  position: absolute;
  right: 1.5rem;
  text-transform: uppercase;
  top: -15px;
  top: 1.5rem;
  transform: translateX(-50%);
}

.plan-header h3 {
  color: #1f2937;
  font-family: Inter, sans-serif;
  font-size: 1.8rem;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.price {
  margin: 1.5rem 0 1rem;
}

.currency {
  color: #718096;
  color: #6b7280;
  color: #4a5568;
  font-size: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.amount {
  color: #1a202c;
  color: #1f2937;
  color: #2d3748;
  font-size: 3.5rem;
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0.25rem;
}

.period {
  color: #718096;
  color: #6b7280;
  color: #4a5568;
  font-size: 1rem;
}

.contact {
  color: #714b67;
  font-size: 1.5rem;
  font-weight: 600;
}

.plan-description {
  color: #718096;
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.plan-features {
  list-style: none;
  margin: 2rem 0;
  padding: 2rem;
  text-align: left;
}

.plan-features li {
  align-items: center;
  border-bottom: 1px solid #f3f4f6;
  color: #4b5563;
  color: #4a5568;
  display: flex;
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  padding: 0.75rem 0;
  position: relative;
}

.plan-features .feature-list li:before {
  color: #714b67;
  left: 0;
  position: absolute;
}

.stats-section {
  background: #fff;
  padding: 4rem 0;
}

.boxes {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.stats-grid {
  display: grid;
  gap: 2rem;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 2rem;
  text-align: center;
}

.demo-section {
  background: #f7fafc;
  padding: 5rem 0;
}

.demo-content {
  align-items: center;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
}

.demo-title {
  margin-bottom: 1.5rem;
}

.demo-description {
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.demo-features {
  flex-direction: column;
}

.demo-feature,
.demo-features {
  display: flex;
  gap: 1rem;
}

.demo-feature {
  align-items: center;
}

.feature-check {
  background: #714b67;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  height: 24px;
  width: 24px;
}

.feature-check,
.video-placeholder {
  align-items: center;
  color: #fff;
  display: flex;
  justify-content: center;
}

.video-placeholder {
  background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
  background: linear-gradient(135deg, #875a7b, #a67c8a);
  border-radius: 16px;
  cursor: pointer;
  flex-direction: column;
  height: 300px;
  height: 100%;
  position: relative;
  text-align: center;
  transition: transform 0.3s ease;
  width: 100%;
}

.video-placeholder:hover {
  transform: scale(1.02);
}

.play-button {
  align-items: center;
  background: rgba(113, 75, 103, 0.9);
  background: hsla(0, 0%, 100%, 0.9);
  border-radius: 50%;
  color: #875a7b;
  display: flex;
  font-size: 2rem;
  height: 80px;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  transition: all 0.3s;
  width: 80px;
}

.play-button:hover {
  transform: scale(1.1);
}

.play-icon {
  color: #fff;
  font-size: 2rem;
  font-size: 0.875rem;
  margin-left: 4px;
}

.video-info h4 {
  color: #4a5568;
  color: #2d3748;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.video-info p {
  color: #718096;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial-section {
  padding: 5rem 0;
  text-align: center;
}

.testimonial-header {
  margin-bottom: 0.5rem;
}

.testimonial-subheader {
  color: #4a5568;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: #fff;
  background: #f8f9fa;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #875a7b;
  border-radius: 16px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
  max-width: 800px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.testimonial-card blockquote {
  color: #2d3748;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.testimonial-author {
  gap: 1rem;
  margin-bottom: 1rem;
}

.author-avatar,
.testimonial-author {
  align-items: center;
  display: flex;
  justify-content: center;
}

.author-avatar {
  background: linear-gradient(135deg, #875a7b, #714b67);
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  height: 60px;
  height: 50px;
  object-fit: cover;
  overflow: hidden;
  width: 60px;
  width: 50px;
}

.author-info {
  text-align: left;
}

.author-info h4 {
  color: #1a202c;
  color: #2d3748;
  color: #1f2937;
  font-size: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-info p {
  color: #718096;
  font-size: 0.9rem;
}

.cta-section {
  background: #fff;
  background: linear-gradient(135deg, #714b67, #8b5a8c);
  border-radius: 30px;
  border-top: 1px solid #e2e8f0;
  color: #2d3748;
  color: #fff;
  margin: 4rem 20px;
  padding: 5rem 0;
  text-align: center;
}

.cta-section .yellow-highlight {
  background: linear-gradient(120deg, #ffeb3b, #ffe066);
  color: #1a202c;
}

.cta-title {
  color: #2d3748;
  margin-bottom: 2rem;
}

.cta-actions {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 1.5rem;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.cta-note {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer {
  background: #1a202c;
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: #e2e8f0;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin: 0.5rem 0;
}

.footer-section a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #e2e8f0;
}

.footer-bottom {
  align-items: start;
  border-top: 1px solid #4a5568;
  display: grid;
  gap: 2rem;
  grid-template-columns: 2fr 1fr 1fr;
  padding-top: 2rem;
}

.footer-description {
  color: #a0aec0;
  line-height: 1.6;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.footer-legal a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.85rem;
  padding: 4px 12px;
  white-space: nowrap;
}

.footer-legal a+a {
  border-left: 1px solid #4a5568;
}

.footer-legal a:hover {
  color: #e2e8f0;
}


.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.footer-social a {
  font-size: 1.2rem;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .contact-content {
    gap: 3rem;
  }

  .consultation-form {
    max-width: 450px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 6rem 0 3rem;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3rem;
  }

  h3,
  h4,
  h5,
  h6 {
    font-size: 1.8rem;
  }

  .feature-content {
    gap: 2rem;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-content.reverse {
    direction: ltr;
  }

  .hero-actions {
    align-items: center;
    flex-direction: column;
  }

  .contact-content {
    gap: 2rem;
    gap: 3rem;
    grid-template-columns: 1fr;
  }

  .consultation-form {
    max-width: 100%;
  }

  .hero-image-overlay {
    gap: 0.75rem;
    top: 10px;
    width: 95%;
  }

  .overlay-badge {
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
  }

  .overlay-stats {
    align-items: center;
    flex-direction: column;
    gap: 0.75rem;
  }

  .stat-item-small {
    font-size: 0.9rem;
    min-width: 120px;
    padding: 0.5rem 1rem;
  }

  .placeholder-image {
    height: 250px;
  }

  .image-content {
    padding: 1.5rem;
  }

  .image-content h3 {
    font-size: 1.1rem;
  }

  .image-content p {
    font-size: 0.9rem;
  }

  .nav-menu {
    align-items: flex-start;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: flex-start;
    left: -100%;
    overflow-y: auto;
    padding: 6rem 2rem 2rem;
    position: fixed;
    top: 0;
    transition: left 0.3s ease;
    width: 100%;
    z-index: 1000;
  }

  .dropdown-menu {
    background: #f8fafc;
    border: none;
    border-radius: 8px;
    box-shadow: none;
    display: none;
    margin: 0.5rem 0 0;
    opacity: 1;
    padding: 1rem;
    position: static;
    transform: none;
    visibility: visible;
  }

  .dropdown-container {
    flex-direction: column;
    gap: 1rem;
    gap: 1.5rem;
    padding: 1rem;
  }

  .apps-menu .dropdown-container,
  .dropdown-container {
    grid-template-columns: 1fr;
  }

  .dropdown-menu:after,
  .dropdown-menu:before {
    display: none;
  }

  .footer-bottom {
    gap: 1rem;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 6rem 0 3rem;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  h3,
  h4,
  h5,
  h6 {
    font-size: 1.5rem;
  }

  .feature-section {
    padding: 3rem 0;
  }

  .testimonial-author {
    flex-direction: column;
  }

  .author-info,
  .testimonial-author {
    text-align: center;
  }

  .pricing-grid {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .pricing-card.standard {
    transform: scale(1);
  }

  .demo-content {
    gap: 2rem;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .stats-grid {
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .hero-image-overlay {
    margin-top: 2rem;
    position: static;
    transform: none;
  }

  .overlay-stats {
    align-items: center;
    flex-direction: column;
  }

  .video-features-grid {
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
    grid-template-columns: 1fr;
  }

  .big-play-button {
    height: 80px;
    width: 80px;
  }

  .play-triangle {
    font-size: 2rem;
  }

  .video-title-overlay {
    padding: 1rem;
  }

  .video-title-overlay h3 {
    font-size: 1.2rem;
  }

  .video-stats {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-image-section {
    padding: 2rem 0;
  }

  .overlay-badge {
    padding: 0.75rem 1.5rem;
  }

  .badge-text,
  .stat-item-small {
    font-size: 0.9rem;
  }

  .stat-item-small {
    padding: 0.5rem 1rem;
  }

  .big-video-section {
    padding: 3rem 0;
  }

  .video-feature {
    padding: 1.5rem;
  }

  .feature-icon-large {
    font-size: 2.5rem;
  }
}

.pricing-hero {
  background: #fff;
  color: #2d3748;
  margin-top: 170px;
  padding: 120px 0 80px;
  text-align: center;
}

.pricing-hero h1 {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.pricing-toggle {
  align-items: center;
  background: #f7fafc;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  display: flex;
  gap: 1rem;
  gap: 1.5rem;
  justify-content: center;
  margin: 3rem 0;
  padding: 8px;
}

.pricing-toggle button {
  background: transparent;
  border: none;
  border-radius: 40px;
  color: #4a5568;
  cursor: pointer;
  font-weight: 500;
  padding: 12px 24px;
  transition: all 0.3s ease;
}

.pricing-toggle button.active {
  background: #875a7b;
  box-shadow: 0 4px 12px rgba(135, 90, 123, 0.3);
  color: #fff;
}

.pricing-cards {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin: -40px auto 0;
  max-width: 1200px;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.pricing-card.featured {
  border: 2px solid #875a7b;
  box-shadow: 0 20px 40px rgba(135, 90, 123, 0.2);
  position: relative;
  transform: scale(1.05);
  z-index: 5;
}

.pricing-card.featured:before {
  display: none;
  /* Hide old orange bar, we use badges now */
}

.plan-name {
  color: #1f2937;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.plan-price {
  align-items: baseline;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 2rem 0;
}

.original-price {
  color: #9ca3af;
  font-size: 1.2rem;
  margin-left: 0.5rem;
  text-decoration: line-through;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li:before {
  color: #10b981;
  font-size: 1.1rem;
  font-weight: 700;
  margin-right: 0.75rem;
}

.plan-cta {
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
}

.plan-cta.primary {
  background: #875a7b;
  color: #fff;
}

.plan-cta.primary:hover {
  background: #714b67;
}

.plan-cta.secondary {
  background: transparent;
  border: 2px solid #875a7b;
  color: #875a7b;
}

.plan-cta.secondary:hover {
  background: #875a7b;
  color: #fff;
}

.apps-included {
  background: #fff;
  padding: 4rem 0;
}

.apps-grid {
  display: grid;
  gap: 1.5rem;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 2rem;
}

.app-item {
  align-items: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  padding: 1rem;
}

.app-name {
  color: #1f2937;
  font-weight: 600;
}

.cost-comparison {
  background: #f9f9f9;
  padding: 6rem 0;
}

.comparison-calculator {
  margin: 0 auto;
  max-width: 800px;
  padding: 0 2rem;
}

.calculator-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  padding: 2rem;
}

.user-input {
  justify-content: center;
  margin: 2rem 0;
}

.user-counter,
.user-input {
  align-items: center;
  display: flex;
}

.user-counter {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

.counter-btn {
  align-items: center;
  background: #875a7b;
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-weight: 700;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.counter-value {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 2rem;
  min-width: 60px;
  text-align: center;
}

.savings-display {
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 12px;
  color: #fff;
  margin-top: 2rem;
  padding: 2rem;
  text-align: center;
}

.savings-amount {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.faq-section {
  background: #fff;
  padding: 6rem 0;
}

.faq-container {
  margin: 0 auto;
  max-width: 800px;
  padding: 0 2rem;
}

.faq-item {
  background: #f8fafc;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 1rem;
  overflow: hidden;
  padding: 2rem;
  transition: all 0.3s ease;
  transition: all 0.3s;
}

.faq-question {
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  font-weight: 600;
  justify-content: space-between;
  padding: 1.5rem;
  text-align: left;
  width: 100%;
}

.faq-answer {
  color: #6b7280;
  line-height: 1.6;
  padding: 0 1.5rem 1.5rem;
}

.contact-section {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  color: #2d3748;
  padding: 4rem 0;
  text-align: center;
}

.contact-section h2 {
  color: #2d3748;
  margin-bottom: 1rem;
}

.contact-section p {
  color: #4a5568;
  margin-bottom: 2rem;
}

.hidden {
  display: none;
}

.startup-hero {
  align-items: center;
  background: #fff;
  display: flex;
  min-height: 90vh;
  padding: 8rem 0 4rem;
}

.startup-hero .container {
  align-items: center;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
}

.startup-hero-content {
  max-width: 600px;
}

.hero-badge {
  align-items: center;
  background: #f8fafc;
  background: rgba(135, 90, 123, 0.1);
  background: rgba(113, 75, 103, 0.1);
  border: 1px solid #e2e8f0;
  border: 1px solid rgba(113, 75, 103, 0.2);
  border-radius: 25px;
  border-radius: 50px;
  color: #4a5568;
  color: #875a7b;
  color: #714b67;
  display: inline-flex;
  display: inline-block;
  font-size: 0.875rem;
  font-size: 0.9rem;
  font-weight: 500;
  font-weight: 600;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0.5rem 1.5rem;
}

.badge-icon {
  flex-shrink: 0;
  font-size: 1rem;
  font-size: 3rem;
}

.startup-hero-title {
  color: #2d3748;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.highlight-text {
  color: #875a7b;
}

.startup-hero-subtitle {
  color: #4a5568;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.startup-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-startup-primary {
  background: #875a7b;
  border: 2px solid #875a7b;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  padding: 1rem 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-startup-primary:hover {
  background: #714b67;
  box-shadow: 0 8px 25px rgba(135, 90, 123, 0.3);
  transform: translateY(-2px);
}

.btn-startup-secondary {
  align-items: center;
  background: #fff;
  border: 2px solid #875a7b;
  border-radius: 8px;
  color: #875a7b;
  display: flex;
  font-weight: 600;
  gap: 0.5rem;
  padding: 1rem 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-startup-secondary:hover {
  background: #875a7b;
  color: #fff;
  transform: translateY(-2px);
}

.startup-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-stat {
  flex-direction: column;
  text-align: center;
}

.hero-stat,
.startup-hero-visual {
  align-items: center;
  display: flex;
}

.startup-hero-visual {
  justify-content: center;
}

.hero-mockup {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  overflow: hidden;
}

.hero-mockup,
.mockup-screen {
  width: 100%;
}

.screen-header {
  align-items: center;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  gap: 1rem;
  padding: 1rem;
}

.screen-dots {
  display: flex;
  gap: 0.5rem;
}

.screen-dots span {
  background: #cbd5e0;
  border-radius: 50%;
  height: 12px;
  width: 12px;
}

.screen-dots span:first-child {
  background: #f56565;
}

.screen-dots span:nth-child(2) {
  background: #ed8936;
}

.screen-dots span:nth-child(3) {
  background: #48bb78;
}

.screen-title {
  color: #2d3748;
  font-size: 0.875rem;
  font-weight: 600;
}

.screen-content {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
  padding: 2rem;
}

.dashboard-widget {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.5rem;
}

.dashboard-widget h4 {
  color: #2d3748;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.chart-placeholder {
  color: #875a7b;
  font-size: 1.5rem;
  padding: 1rem 0;
  text-align: center;
}

.project-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.project-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  color: #4a5568;
  font-size: 0.75rem;
  padding: 0.75rem;
}

.startup-features {
  background: #f8fafc;
  padding: 6rem 0;
}

.section-header {
  margin-bottom: 4rem;
  text-align: center;
}

.section-header h2 {
  color: #2d3748;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  color: #4a5568;
  font-size: 1.125rem;
  margin: 0 auto;
  max-width: 600px;
}

.feature-item {
  align-items: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  color: #4b5563;
  display: flex;
  font-size: 0.9rem;
  font-weight: 500;
  gap: 0.25rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: #875a7b;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.feature-item h3 {
  color: #2d3748;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-item p {
  color: #4a5568;
  line-height: 1.6;
}

.startup-benefits {
  background: #fff;
  padding: 6rem 0;
}

.benefits-content {
  align-items: center;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
}

.benefits-text h2 {
  color: #2d3748;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  align-items: flex-start;
  background: #f9fafb;
  border-radius: 12px;
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
}

.benefit-icon {
  color: #875a7b;
  display: block;
  filter: grayscale(0.2);
  flex-shrink: 0;
  font-size: 1.25rem;
  font-size: 1.5rem;
  font-size: 4rem;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  margin-top: 0.25rem;
  transition: all 0.3s ease;
}

.benefit-content h4 {
  color: #2d3748;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: #4a5568;
  line-height: 1.6;
}

.benefits-visual {
  display: flex;
  justify-content: center;
}

.benefits-chart {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  padding: 2rem;
  width: 100%;
}

.benefits-chart h4 {
  color: #2d3748;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

.chart-bars {
  align-items: flex-end;
  display: flex;
  gap: 1rem;
  height: 200px;
  justify-content: space-between;
}

.chart-bar {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
}

.bar-fill {
  background: linear-gradient(180deg, #875a7b, #714b67);
  border-radius: 4px 4px 0 0;
  margin-bottom: 0.5rem;
  transition: height 0.5s ease;
  width: 100%;
}

.bar-label {
  color: #4a5568;
  font-size: 0.75rem;
  margin-top: 0.5rem;
  text-align: center;
  transform: rotate(-45deg);
}

.startup-use-cases {
  background: #f8fafc;
  padding: 6rem 0;
}

.use-cases-grid {
  display: grid;
  gap: 2rem;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-template-columns: repeat(2, 1fr);
  margin: 2rem 0;
}

.use-case-card {
  background: #fff;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #875a7b;
  border-radius: 12px;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.use-case-card:hover {
  border-color: #875a7b;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.use-case-icon {
  display: block;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.use-case-card h3 {
  color: #2d3748;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.use-case-card p {
  color: #4a5568;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.use-case-metrics {
  background: #f0fff4;
  border: 1px solid #059669;
  border-radius: 20px;
  color: #059669;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
}

.startup-pricing {
  background: #fff;
  padding: 6rem 0;
}

.toggle-btn {
  background: #f8fafc;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 0;
  border-radius: 50px;
  color: #4a5568;
  color: #6b7280;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
  transition: all 0.3s;
}

.toggle-btn:first-child {
  border-radius: 8px 0 0 8px;
}

.toggle-btn:last-child {
  border-radius: 0 8px 8px 0;
}

.toggle-btn.active {
  background: #875a7b;
  background: linear-gradient(135deg, #875a7b, #714b67);
  border-color: #875a7b;
  color: #fff;
}

.startup-pricing-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin: 0 auto;
  max-width: 1000px;
}

.startup-pricing-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.startup-pricing-card:hover {
  border-color: #875a7b;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.startup-pricing-card.popular {
  border-color: #875a7b;
  transform: scale(1.05);
}

.popular-badge {
  background: #875a7b;
  border-radius: 20px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  left: 50%;
  padding: 0.5rem 1rem;
  position: absolute;
  top: -12px;
  transform: translateX(-50%);
}

.pricing-header {
  margin-bottom: 2rem;
  text-align: center;
}

.pricing-header h3 {
  color: #2d3748;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-header p {
  color: #4a5568;
  margin-bottom: 0;
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
  text-align: left;
}

.pricing-features li {
  align-items: center;
  border-bottom: 1px solid #f1f5f9;
  color: #4a5568;
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  position: relative;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li:before {
  display: none;
  /* Avoid duplication with HTML checkmarks */
}

.pricing-cta {
  background: #875a7b;
  border: 2px solid #875a7b;
  border-radius: 8px;
  color: #fff;
  display: block;
  font-weight: 600;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
}

.pricing-cta:hover {
  background: #714b67;
  transform: translateY(-2px);
}

.startup-testimonials {
  background: #f8fafc;
  padding: 6rem 0;
}

.testimonials-grid {
  margin-bottom: 20px;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(3, 1fr);
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  margin-top: 4rem;
}

.testimonial-card:hover {
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
  transform: translateX(10px);
}

.testimonial-content {
  /* margin-bottom: 2rem; */
  padding: 2rem;
}

.quote-icon {
  color: #875a7b;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-content p {
  color: #4a5568;
  color: #4b5563;
  font-style: italic;
  line-height: 1.7;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.author-avatar img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.author-info span {
  color: #4a5568;
  font-size: 0.875rem;
}

.testimonial-rating {
  color: #f59e0b;
  color: #ffb800;
  font-size: 1.25rem;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.service-features li {
  list-style-type: none;
}

.startup-video-testimonials {
  background: #fff;
  padding: 6rem 0;
}

.video-testimonials-grid {
  display: grid;
  gap: 2rem;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  margin-bottom: 3rem;
}

.video-testimonial {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  transition: all 0.3s;
}

.video-testimonial:hover {
  border-color: #875a7b;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 25px rgba(135, 90, 123, 0.15);
  transform: translateY(-4px);
}

.video-thumbnail {
  align-items: center;
  background: linear-gradient(135deg, #875a7b, #714b67);
  cursor: pointer;
  display: flex;
  height: 240px;
  height: 250px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.video-thumbnail img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.video-play-btn {
  align-items: center;
  background: rgba(135, 90, 123, 0.9);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 1.25rem;
  height: 60px;
  justify-content: center;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  width: 60px;
}

.video-thumbnail:hover .video-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
  padding: 1.5rem;
}

.video-author {
  color: #875a7b;
  font-size: 0.875rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
  opacity: 0.9;
}

.video-modal {
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: all 0.3s ease;
  visibility: hidden;
  width: 100%;
  z-index: 1000;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-content {
  background: #fff;
  border-radius: 16px;
  max-height: 90vh;
  max-width: 800px;
  overflow: auto;
  padding: 2rem;
  width: 90%;
}

.video-modal-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.video-modal-header h3 {
  color: #2d3748;
  margin: 0;
}

.modal-close {
  align-items: center;
  background: #f1f5f9;
  background: none;
  border: none;
  border-radius: 50%;
  color: #4a5568;
  color: #6b7280;
  color: #718096;
  cursor: pointer;
  display: flex;
  font-size: 2rem;
  font-size: 1.5rem;
  height: 40px;
  justify-content: center;
  line-height: 1;
  padding: 0.5rem;
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  transition: color 0.3s ease;
  transition: all 0.3s;
  width: 40px;
}

.modal-close:hover {
  background: #e2e8f0;
  color: #875a7b;
  color: #1f2937;
}

.video-container {
  border-radius: 8px;
  overflow: hidden;
}

.startup-contact {
  background: #f8fafc;
  padding: 6rem 0;
}

.contact-content {
  align-items: flex-start;
  align-items: start;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
}

.contact-info h2 {
  color: #2d3748;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-benefit {
  align-items: center;
  color: #4a5568;
  display: flex;
  gap: 0.75rem;
}

.contact-benefit .benefit-icon {
  color: #875a7b;
}

.contact-stats {
  display: flex;
  gap: 2rem;
}

.contact-stat {
  text-align: center;
}

.contact-stat .stat-number {
  color: #875a7b;
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-stat .stat-label {
  color: #4a5568;
  font-size: 0.875rem;
}

.contact-form-container {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
}

.form-header {
  margin-bottom: 3rem;
  text-align: center;
}

.form-header h3 {
  color: #2d3748;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: #4a5568;
  color: #6b7280;
  font-size: 1.1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.startup-contact-form {
  display: block;
}

.form-row {
  display: grid;
  gap: 1rem;
  gap: 1.5rem;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-template-columns: 1fr 1fr;
}

.form-group,
.form-row {
  margin-bottom: 0.50rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: #2d3748;
  color: #1f2937;
  color: #4b5563;
  color: #374151;
  color: #4a5568;
  display: block;
  font-size: 0.95rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-input {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  padding: 0.875rem 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: #875a7b;
  box-shadow: 0 0 0 3px rgba(135, 90, 123, 0.1);
  outline: none;
}

.checkbox-group {
  align-items: center;
  display: grid;
  flex-direction: row;
  gap: 0.75rem;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

.checkbox-label {
  align-items: flex-start;
  align-items: center;
  border-radius: 6px;
  color: #4a5568;
  color: #4b5563;
  cursor: pointer;
  display: flex;
  font-size: 0.875rem;
  font-weight: 400;
  font-weight: 500;
  gap: 0.75rem;
  gap: 0.5rem;
  line-height: 1.5;
  padding: 0.5rem;
  transition: background 0.2s ease;
}

.checkbox-label input[type="checkbox"] {
  accent-color: #875a7b;
  cursor: pointer;
  height: 16px;
  height: 20px;
  height: 18px;
  margin: 0;
  width: 16px;
  width: 20px;
  width: 18px;
}

.form-submit-btn {
  align-items: center;
  background: #875a7b;
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  font-weight: 600;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
  width: 100%;
}

.form-submit-btn:hover {
  background: #714b67;
  box-shadow: 0 8px 25px rgba(135, 90, 123, 0.3);
  transform: translateY(-2px);
}

.form-disclaimer {
  color: #4a5568;
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: center;
}

.form-disclaimer a {
  color: #875a7b;
  text-decoration: none;
}

.form-disclaimer a:hover {
  text-decoration: underline;
}

.form-success {
  display: none;
  padding: 2rem;
  text-align: center;
}

.success-icon {
  font-size: 3rem;
  font-size: 4rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  color: #2d3748;
  margin-bottom: 1rem;
}

.form-success p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.success-cta {
  background: #875a7b;
  border-radius: 8px;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 1rem 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.success-cta:hover {
  background: #714b67;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .startup-hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .startup-hero-title {
    font-size: 2.5rem;
  }

  .startup-hero-actions,
  .startup-hero-stats {
    justify-content: center;
  }

  .benefits-content,
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-row {
    gap: 1rem;
  }

  .startup-pricing-grid {
    grid-template-columns: 1fr;
  }

  .startup-pricing-card.popular {
    transform: none;
  }

  .contact-stats {
    justify-content: center;
  }

  .screen-content {
    grid-template-columns: 1fr;
  }

  .chart-bars {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .startup-hero {
    padding: 4rem 0 2rem;
  }

  .section-header h2,
  .startup-hero-title {
    font-size: 2rem;
  }

  .features-grid,
  .testimonials-grid,
  .use-cases-grid,
  .video-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 1.5rem;
  }

  .video-modal-content {
    padding: 1rem;
    width: 95%;
  }
}

.section-divider {
  background: linear-gradient(90deg, #f9f9f9 0, #fff 50%, #f9f9f9);
  height: 1px;
  margin: 0;
}

.pricing-section .container {
  position: relative;
}

.pricing-note {
  background: rgba(135, 90, 123, 0.05);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin: 3rem auto 0;
  max-width: 800px;
  padding: 1.5rem;
}

.pricing-note,
.testimonial-highlight {
  border-left: 4px solid #875a7b;
  border-radius: 8px;
}

.testimonial-highlight {
  background: linear-gradient(135deg, #f9f9f9, #fff);
  margin: 2rem 0;
  padding: 1rem;
}

@media (max-width: 768px) {
  .pricing-hero h1 {
    font-size: 2.5rem;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    margin-top: -20px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .apps-grid {
    grid-template-columns: 1fr;
  }
}

.top-bar {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.875rem;
  padding: 0.5rem 0;
}

.top-bar-content {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.contact-info {
  color: #4a5568;
  display: flex;
  gap: 2rem;
}

.contact-info span {
  gap: 0.5rem;
}

.contact-info span,
.top-bar-links {
  align-items: center;
  display: flex;
}

.top-bar-links {
  gap: 1.5rem;
}

.top-link {
  color: #4a5568;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-link:hover {
  color: #875a7b;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-left: 1rem;
}

.social-links a {
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
}

.nav-link.active {
  color: #875a7b;
  font-weight: 600;
}

.hero-highlights {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin: 2rem 0;
}

.highlight-item {
  background: rgba(135, 90, 123, 0.1);
  border-left: 4px solid #875a7b;
  border-radius: 8px;
  gap: 0.75rem;
  padding: 1rem;
}

.highlight-icon,
.highlight-item {
  align-items: center;
  display: flex;
}

.highlight-icon {
  background: #875a7b;
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.highlight-item span:last-child {
  color: #2d3748;
  font-weight: 500;
}

.services-overview {
  background: #f8fafc;
  padding: 2rem 0;
}

.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-bottom: 3rem;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(135, 90, 123, 0.1);
  border-radius: 12px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: rgba(135, 90, 123, 0.3);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}

.service-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h4 {
  color: #2d3748;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-card p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-link {
  align-items: center;
  color: #875a7b;
  display: inline-flex;
  font-weight: 500;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #6b4c57;
  transform: translateX(4px);
}

.industries-section {
  background: #fff;
  padding: 2rem 0;
}

.hosting {
  text-decoration: none;
}

.industries-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-bottom: 3rem;
}

.industry-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  border-radius: 16px;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  padding: 1rem;
  position: relative;
  text-align: center;
  text-align: left;
  transition: all 0.3s ease;
}

.industry-card:hover {
  border-color: #875a7b;
  box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(135, 90, 123, 0.15);
  transform: translateY(-2px);
  transform: translateY(-8px);
  transform: translateY(-5px);
}

.industry-icon {
  display: block;
  font-size: 2rem;
  font-size: 3rem;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.industry-card h4 {
  color: #2d3748;
  color: #1f2937;
  font-size: 1.1rem;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.industry-card p {
  color: #6b7280;
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.5;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.why-choose-us {
  background: #f8fafc;
  padding: 2rem 0;
}

.feature-stats {
  border-top: 1px solid #e2e8f0;
  margin-top: 1rem;
  padding-top: 1rem;
}

.feature-stats .stat {
  background: rgba(135, 90, 123, 0.1);
  border-radius: 20px;
  color: #875a7b;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
}

.success-stories {
  background: #fff;
  padding: 2rem 0;
}

.video-testimonial .video-thumbnail {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.video-content h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.video-content p {
  color: #fff;
  font-size: 0.9rem;
  opacity: 0.9;
}

.video-testimonial .video-info {
  padding: 1.5rem;
}

.video-testimonial .video-info h4 {
  color: #2d3748;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.video-testimonial .video-info p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.5;
}

.hosting-expertise {
  background: #f8fafc;
  padding: 2rem 0;
}

.hosting-partners {
  margin-bottom: 4rem;
}

.hosting-partners h3 {
  color: #2d3748;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.partners-grid {
  display: grid;
  gap: 2rem;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-template-columns: 1fr 1fr;
  margin-bottom: 4rem;
}

.partner-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.partner-card:hover {
  box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.partner-logo {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  color: #875a7b;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.marketplace-section,
.partner-logo {
  text-align: center;
}

.marketplace-section h3 {
  color: #2d3748;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.marketplace-section p {
  color: #6b7280;
  margin-bottom: 2rem;
}

.marketplace-cta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.blog-section {
  background: #fff;
  padding: 6rem 0;
}

.blog-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-bottom: 3rem;
}

.blog-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  transition: all 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.blog-meta {
  color: #6b7280;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.875rem;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-card h4 {
  color: #2d3748;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.blog-card p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-link {
  align-items: center;
  color: #875a7b;
  display: inline-flex;
  font-weight: 500;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: #6b4c57;
  transform: translateX(4px);
}

.contact-cta {
  background: #f8fafc;
  padding: 6rem 0;
}

.contact-form-side h2 {
  color: #2d3748;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  padding-right: 10px;
}

.contact-form-side p {
  color: #6b7280;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  padding-right: 10px;
}

.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
  width: 100%;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  padding: 0.875rem;
  transition: all 0.3s ease;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  border-color: #875a7b;
  box-shadow: 0 0 0 3px rgba(135, 90, 123, 0.1);
  outline: none;
}

/* Consolidated into first .select-compact definition */

.contact-info-side h3 {
  color: #2d3748;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  font-size: 2rem;
  margin-top: 0.2rem;
}

.contact-item strong {
  color: #2d3748;
  display: block;
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.additional-ctas h3 {
  color: #2d3748;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.cta-button {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #2d3748;
  display: block;
  font-weight: 500;
  margin-bottom: 0.75rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: rgba(135, 90, 123, 0.1);
  border-color: #875a7b;
  color: #875a7b;
}

.footer-newsletter {
  border-bottom: 1px solid #e2e8f0;
  border-top: 1px solid #e2e8f0;
  margin: 2rem 0;
  padding: 2rem 0;
}

.footer-newsletter h4 {
  color: #2d3748;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
}

.newsletter-form input {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  flex: 1;
  padding: 0.75rem;
}

.newsletter-form input:focus {
  border-color: #875a7b;
  box-shadow: 0 0 0 3px rgba(135, 90, 123, 0.1);
  outline: none;
}

.section-cta {
  margin-top: 3rem;
  text-align: center;
}

.mobile-menu-toggle {
  cursor: pointer;
  display: none;
  flex-direction: column;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  background: #2d3748;
  border-radius: 2px;
  height: 3px;
  margin: 3px 0;
  transition: 0.3s;
  width: 25px;
}

.mobile-menu-toggle.active span:first-child {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

body.menu-open {
  overflow: hidden;
}

.process-timeline {
  align-content: flex-start;
  display: grid;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin: 2rem auto 0;
  max-width: 1200px;
}

section.services-hero {
  margin-top: 9rem;
}

section.features-section {
  margin-top: 50px;
}

.tech-categories {
  display: flex;
  gap: 10px;
}

.tech-category {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {

  .process-timeline,
  .tech-categories {
    display: inherit;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .mobile-menu-toggle {
    display: flex !important;
    position: relative;
    z-index: 1002;
  }

  .nav-menu.mobile-active {
    display: flex;
    left: 0;
  }

  .nav-menu li {
    margin-bottom: 1rem;
    width: 100%;
  }

  .nav-link {
    border-bottom: 1px solid #e2e8f0;
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem 0;
  }

  .nav-item.dropdown {
    width: 100%;
  }

  .nav-item.active .dropdown-menu,
  .nav-item:hover .dropdown-menu {
    display: block;
  }

  .dropdown-section {
    margin-bottom: 1rem;
  }

  .dropdown-section h4 {
    color: #875a7b;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .dropdown-section ul {
    gap: 0.5rem;
  }

  .dropdown-section a {
    font-size: 0.95rem;
    padding: 0.5rem 0;
  }

  .nav-actions {
    bottom: 6.5rem;
    display: none;
    left: 2rem;
    opacity: 0;
    position: fixed;
    right: 2rem;
    transition: all 0.3s ease;
    visibility: hidden;
    z-index: 1001;
  }

  .nav-menu.mobile-active~.nav-actions {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .nav-actions .btn-primary {
    font-size: 1.1rem;
    padding: 1rem;
    text-align: center;
    width: 100%;
  }

  .top-bar-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .industries-grid,
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .blog-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .marketplace-cta {
    align-items: center;
    flex-direction: column;
  }

  .newsletter-form {
    flex-direction: column;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-form-side h2 {
    font-size: 2rem;
  }

  .industries-grid,
  .partners-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .consultation-form .btn-primary-large {
    width: 100%;
  }
}

.industries-hero {
  background: #fff;
  color: #2d3748;
  margin-top: 80px;
  padding: 50px 0 80px;
  text-align: center;
}

.industries-hero h1 {
  color: #2d3748;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.industries-hero-stats {
  display: flex;
  flex-direction: column;
}

.industries-hero p {
  color: #4a5568;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}

.industries-showcase {
  background: #f8fafc;
  padding: 6rem 0;
}

.industry-visual {
  margin-bottom: 1.5rem;
  text-align: center;
}

.industry-image {
  align-items: center;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 12px;
  display: flex;
  height: 180px;
  justify-content: center;
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.industry-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.industry-challenges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.challenge-tag {
  background: rgba(135, 90, 123, 0.1);
  background: #edf2f7;
  border-radius: 20px;
  border-radius: 50px;
  color: #875a7b;
  color: #4a5568;
  font-size: 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
}

.industry-badge {
  background: linear-gradient(135deg, #875a7b, #714b67);
  border-radius: 20px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 10;
}

.industry-image svg {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.industry-card h3 {
  color: #2d3748;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.industry-metrics {
  background: #f8fafc;
  border-radius: 8px;
  border-top: 1px solid #e2e8f0;
  display: grid;
  display: flex;
  gap: 1rem;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  margin: 1.5rem 0;
  padding: 1rem;
}

.metric {
  text-align: center;
}

.metric-value {
  color: #875a7b;
  color: #0f172a;
  display: block;
  font-size: 3rem;
  font-size: 1.5rem;
  font-size: 18px;
  font-weight: 700;
  font-weight: 600;
  margin-bottom: 6px;
}

.metric-label {
  color: #6b7280;
  color: #718096;
  color: #94a3b8;
  display: block;
  font-size: 0.75rem;
  font-size: 1.1rem;
  font-size: 0.85rem;
  font-size: 11px;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.industry-cta {
  align-items: center;
  align-self: flex-start;
  background: transparent;
  border: 2px solid #875a7b;
  border-radius: 8px;
  color: #875a7b;
  display: inline-flex;
  font-weight: 600;
  gap: 0.5rem;
  margin-top: auto;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.industry-features {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  text-align: left;
}

.industry-features li {
  color: #4a5568;
  color: #4b5563;
  font-size: 0.9rem;
  font-size: 0.95rem;
  line-height: 1.5;
  line-height: 1.6;
  padding: 0.5rem 0;
  position: relative;
}

.industry-cta:hover {
  background: #875a7b;
  color: #fff;
  transform: translateY(-2px);
}

.success-stories-grid {
  display: grid;
  gap: 2rem;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  margin-bottom: 3rem;
  margin-top: 4rem;
}

.success-story {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.story-industry {
  margin-bottom: 1rem;
}

.industry-badge.fintech {
  background: linear-gradient(135deg, #875a7b, #714b67);
}

.industry-badge.fintech,
.industry-badge.manufacturing {
  border-radius: 20px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
}

.industry-badge.manufacturing {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.industry-badge.education {
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 20px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
}

.story-challenge {
  color: #ef4444;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 1rem;
}

.story-solution {
  color: #4a5568;
  margin-bottom: 1.5rem;
}

.story-results {
  border-top: 1px solid #e2e8f0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: auto;
  padding-top: 1.5rem;
}

.success-story:hover {
  border-color: rgba(135, 90, 123, 0.2);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.success-story h4 {
  color: #2d3748;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.success-story .company-info {
  color: #875a7b;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.success-story p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.result-item {
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  text-align: center;
}

.result-number {
  color: #10b981;
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.result-label {
  color: #6b7280;
  color: #4b5563;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.success-metrics {
  border-top: 1px solid #e2e8f0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  padding-top: 1.5rem;
}

.success-metric {
  text-align: center;
}

.success-metric .metric-number {
  color: #10b981;
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.success-metric .metric-label {
  color: #6b7280;
  font-size: 0.8rem;
  line-height: 1.3;
}

.implementation-process {
  background: #f8fafc;
  padding: 6rem 0;
}

.process-steps {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-bottom: 3rem;
}

.process-step {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  border-radius: 16px;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  /* padding: 2.5rem 2rem; */
  padding: 1em;
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: rgba(135, 90, 123, 0.2);
  box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  transform: translateY(-5px);
}

.process-number {
  align-items: center;
  background: linear-gradient(135deg, #875a7b, #714b67);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 1.1rem;
  font-weight: 700;
  height: 40px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: -15px;
  transform: translateX(-50%);
  width: 40px;
}

.process-step h4 {
  color: #2d3748;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1rem 0;
}

.process-step p {
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.6;
}

.fintech-bg {
  background-image: url(assets/images/fintech-hero.svg);
}

.fintech-bg,
.manufacturing-bg {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.manufacturing-bg {
  background-image: url(assets/images/manufacturing-hero.svg);
}

.government-bg {
  background-image: url(assets/images/government-hero.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.automotive-bg,
.consulting-bg,
.education-bg,
.import-export-bg,
.insurance-bg,
.marketplace-bg,
.online-education-bg,
.retail-bg,
.wholesale-bg {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  color: #64748b;
  font-weight: 600;
}

.image-text {
  font-size: 0.9rem;
  opacity: 0.8;
  padding: 1rem;
  text-align: center;
}

.industry-card.featured {
  border: 2px solid #875a7b;
  box-shadow: 0 8px 25px -5px rgba(135, 90, 123, 0.25);
}

@media (max-width: 768px) {
  .industries-hero {
    padding: 100px 0 60px;
  }

  .industries-hero h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    display: grid;
    gap: 1.5rem;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industry-image {
    height: 160px;
  }

  .industry-metrics {
    gap: 0.5rem;
    grid-template-columns: 1fr;
  }

  .challenge-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }

  .story-results,
  .success-stories-grid {
    grid-template-columns: 1fr;
  }

  .story-results {
    gap: 0.75rem;
  }

  .success-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .industries-hero {
    padding: 90px 0 50px;
  }

  .industries-hero h1 {
    font-size: 2rem;
  }

  .industries-hero p {
    font-size: 1.1rem;
  }

  .hero-stats {
    gap: 1rem;
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .industry-card {
    padding: 1.5rem;
  }

  .industry-image {
    height: 140px;
  }

  .industry-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }

  .challenge-tag {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
  }

  .process-step,
  .success-story {
    padding: 1.5rem;
  }

  .process-step {
    padding: 2rem 1.5rem;
  }
}

.cta-content {
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
}

.cta-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.cta-assurance span {
  color: #10b981;
  font-size: 0.95rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .cta-assurance {
    gap: 0.75rem;
  }

  .cta-actions,
  .cta-assurance {
    align-items: center;
    flex-direction: column;
  }
}

.company-hero {
  background: #fff;
  color: #1f2937;
  /* margin-top: 10px; */
  overflow: hidden;
  padding: 8rem 0 6rem;
  position: relative;
}

.company-hero:before {
  background-image:
    radial-gradient(circle at 20% 30%,
      rgba(135, 90, 123, 0.05) 0,
      transparent 50%),
    radial-gradient(circle at 80% 70%,
      rgba(135, 90, 123, 0.03) 0,
      transparent 50%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.company-hero .container {
  position: relative;
  z-index: 2;
}

.company-hero .hero-content {
  margin: 0 auto 4rem;
  max-width: 900px;
  padding: 0 1rem;
  text-align: center;
}

.company-hero h1 {
  color: #1f2937;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.company-hero p {
  color: #4b5563;
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.8;
}

.hero-stats .stat-item {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 2px solid rgba(135, 90, 123, 0.1);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(135, 90, 123, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
  padding: 2rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
}

.hero-stats .stat-item:hover {
  border-color: rgba(135, 90, 123, 0.2);
  box-shadow: 0 8px 30px rgba(135, 90, 123, 0.15);
  transform: translateY(-4px);
}

.hero-stats .stat-number {
  color: #875a7b;
  color: #714b67;
  display: block;
  font-family: Caveat, cursive;
  font-size: 2.5rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
  color: #6b7280;
  color: #718096;
  font-size: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
}

.company-story-grid {
  align-items: start;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 400px;
}

.story-content {
  position: relative;
}

.story-content:before {
  background: linear-gradient(180deg, #875a7b, #ffe066, #875a7b);
  bottom: 0;
  content: "";
  left: -20px;
  position: absolute;
  top: 0;
  width: 2px;
}

.story-item {
  gap: 2rem;
  margin-bottom: 3rem;
}

.story-item,
.story-year {
  display: flex;
  position: relative;
}

.story-year {
  align-items: center;
  background: linear-gradient(135deg, #875a7b, #714b67);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(135, 90, 123, 0.3);
  color: #fff;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 700;
  height: 80px;
  justify-content: center;
  width: 80px;
  z-index: 2;
}

.story-text {
  flex: 1;
  padding-top: 0.5rem;
}

.story-text h4 {
  color: #875a7b;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.story-text p {
  color: #6b7280;
  line-height: 1.6;
}

.mission-vision {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mission-card,
.vision-card {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
  box-shadow: 0 12px 40px rgba(135, 90, 123, 0.15);
  transform: translateY(-4px);
}

.mission-card .card-icon,
.vision-card .card-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.mission-card h3,
.vision-card h3 {
  color: #875a7b;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
  color: #6b7280;
  line-height: 1.6;
}

.leadership-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.leader-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.leader-card:hover {
  box-shadow: 0 20px 40px rgba(135, 90, 123, 0.15);
  transform: translateY(-8px);
}

.leader-image {
  height: 200px;
  overflow: hidden;
}

.ceo-avatar {
  background: linear-gradient(135deg, #875a7b, #714b67);
}

.cto-avatar {
  background: linear-gradient(135deg, #4f46e5, #3b82f6);
}

.operations-avatar {
  background: linear-gradient(135deg, #059669, #10b981);
}

.leader-info {
  padding: 2rem;
}

.leader-info h4 {
  color: #1f2937;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.leader-title {
  color: #875a7b;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.leader-experience {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.leader-bio {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.leader-achievements {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.achievement {
  background: #f3f4f6;
  background: linear-gradient(135deg,
      rgba(16, 185, 129, 0.1),
      rgba(5, 150, 105, 0.15));
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  border-radius: 20px;
  color: #374151;
  color: #059669;
  font-size: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
}

.departments-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.department-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  transition: all 0.3s ease;
}

.department-card:hover {
  box-shadow: 0 12px 40px rgba(135, 90, 123, 0.15);
  transform: translateY(-4px);
}

.department-header {
  margin-bottom: 2rem;
  text-align: center;
}

.department-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.department-header h3 {
  color: #875a7b;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.department-header p {
  color: #6b7280;
  font-size: 0.875rem;
}

.team-member {
  align-items: center;
  background: #f9fafb;
  border-radius: 12px;
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
}

.member-avatar {
  border-radius: 50%;
  flex-shrink: 0;
  height: 50px;
  width: 50px;
}

.dev-lead-avatar {
  background: linear-gradient(135deg, #10b981, #059669);
}

.impl-manager-avatar {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.design-lead-avatar {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.support-manager-avatar {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.member-info h5 {
  color: #1f2937;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.member-info p {
  color: #6b7280;
  font-size: 0.875rem;
}

.department-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.specialty-tag {
  background: #ede9fe;
  border-radius: 6px;
  color: #7c3aed;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
}

.department-stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.department-stats .stat-item {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.department-stats .stat-number {
  color: #875a7b;
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.department-stats .stat-label {
  color: #6b7280;
  font-size: 0.75rem;
}

.culture-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.culture-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.culture-card:hover {
  box-shadow: 0 12px 40px rgba(135, 90, 123, 0.15);
  transform: translateY(-4px);
}

.culture-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.culture-card h4 {
  color: #875a7b;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.culture-card p {
  color: #6b7280;
  line-height: 1.6;
}

.careers-content {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 2fr;
}

.careers-benefits h3 {
  color: #875a7b;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.benefits-grid {
  display: flex;
  display: grid;
  flex-direction: column;
  gap: 1.5rem;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  margin-top: 4rem;
}

.benefit-item h4 {
  color: #1f2937;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
}

.current-openings h3 {
  color: #875a7b;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.openings-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.opening-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.opening-item:hover {
  box-shadow: 0 8px 25px rgba(135, 90, 123, 0.1);
  transform: translateY(-2px);
}

.opening-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.opening-header h4 {
  color: #1f2937;
  font-size: 1.125rem;
  font-weight: 600;
}

.opening-type {
  background: #ede9fe;
  border-radius: 6px;
  color: #7c3aed;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
}

.opening-item>p {
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.opening-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.opening-tags .tag {
  background: #f3f4f6;
  border-radius: 6px;
  color: #374151;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
}

.careers-cta {
  background: #f9fafb;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.careers-note {
  color: #6b7280;
  font-size: 0.875rem;
  margin-top: 1rem;
}

.partnership-highlight {
  margin-bottom: 4rem;
}

.partnership-badge {
  align-items: center;
  background: linear-gradient(135deg, #875a7b, #714b67);
  border-radius: 20px;
  color: #fff;
  display: flex;
  gap: 2rem;
  padding: 2rem 3rem;
  text-align: left;
}

.badge-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.badge-content p {
  font-size: 1.125rem;
  opacity: 0.9;
}

.partner-category h3 {
  color: #875a7b;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

.partner-logos {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.partner-logo:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.contabo-logo {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.aws-logo,
.contabo-logo {
  border-radius: 8px;
  height: 80px;
  margin-bottom: 1rem;
}

.aws-logo {
  background: linear-gradient(135deg, #f90, #232f3e);
}

.odoo-sh-logo {
  background: linear-gradient(135deg, #875a7b, #714b67);
}

.odoo-sh-logo,
.payment-gateway-logo {
  border-radius: 8px;
  height: 80px;
  margin-bottom: 1rem;
}

.payment-gateway-logo {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}

.shipping-logo {
  background: linear-gradient(135deg, #059669, #10b981);
  border-radius: 8px;
  height: 80px;
  margin-bottom: 1rem;
}

.partner-logo p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
}

.certifications {
  text-align: center;
}

.certifications h3 {
  color: #875a7b;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.certifications-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.certification-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.certification-item:hover {
  box-shadow: 0 8px 25px rgba(135, 90, 123, 0.1);
  transform: translateY(-4px);
}

.cert-badge {
  display: block;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.certification-item h4 {
  color: #1f2937;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.certification-item p {
  color: #6b7280;
  font-size: 0.875rem;
}

.methodology-timeline {
  margin: 0 auto;
  max-width: 800px;
  position: relative;
}

.methodology-timeline:before {
  background: linear-gradient(180deg, #875a7b, #ffe066, #875a7b);
  bottom: 0;
  content: "";
  left: 30px;
  position: absolute;
  top: 0;
  width: 2px;
}

.timeline-item {
  align-items: flex-start;
  background: linear-gradient(135deg, #fff, #fafbfc);
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
}

.timeline-item,
.timeline-number {
  display: flex;
  position: relative;
}

.timeline-number {
  align-items: center;
  background: linear-gradient(135deg, #875a7b, #714b67);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(135, 90, 123, 0.3);
  box-shadow: 0 6px 16px rgba(135, 90, 123, 0.35);
  color: #fff;
  flex-shrink: 0;
  font-size: 1.25rem;
  font-size: 1.75rem;
  font-weight: 700;
  height: 60px;
  height: 64px;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 60px;
  width: 64px;
  z-index: 2;
}

.timeline-content {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2rem;
  position: relative;
  top: -10px;
}

.timeline-content h4 {
  color: #875a7b;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.timeline-content p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.timeline-duration {
  background: #f3f4f6;
  border-radius: 6px;
  color: #374151;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
}

@media (max-width: 1024px) {
  .company-story-grid {
    gap: 3rem;
    grid-template-columns: 1fr;
  }

  .mission-vision {
    flex-direction: row;
  }

  .careers-content {
    gap: 3rem;
    grid-template-columns: 1fr;
  }

  .partners-grid {
    gap: 2rem;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .company-hero {
    margin-top: 60px;
    padding: 2rem 0 1.5rem;
  }

  .company-hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .company-hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-stats .stat-item {
    min-height: 100px;
    padding: 1.5rem 1rem;
  }

  .hero-stats .stat-number {
    font-size: 2rem;
  }

  .hero-stats .stat-label {
    font-size: 0.9rem;
  }

  .culture-grid,
  .departments-grid,
  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .story-content:before {
    left: 15px;
  }

  .story-year {
    display: none;
  }

  .timeline-number {
    font-size: 1rem;
    height: 50px;
    width: 50px;
  }

  .methodology-timeline:before {
    left: 25px;
  }

  .mission-vision,
  .partnership-badge {
    flex-direction: column;
  }

  .partnership-badge {
    gap: 1rem;
    text-align: center;
  }

  .benefits-grid {
    gap: 1rem;
    grid-template-columns: 1fr;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .company-hero {
    margin-top: 60px;
    padding: 1.5rem 0 1rem;
  }

  .company-hero h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .company-hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }

  .hero-actions {
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
  }

  .hero-stats .stat-item {
    min-height: 90px;
    padding: 1.25rem 1rem;
  }

  .hero-stats .stat-number {
    font-size: 1.8rem;
  }

  .hero-stats .stat-label {
    font-size: 0.85rem;
  }

  .story-item {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .methodology-timeline:before,
  .story-content:before {
    display: none;
  }

  .timeline-item {
    flex-direction: column;
    text-align: center;
  }

  .timeline-content {
    top: 0;
  }
}

.jobs-hero {
  color: #1f2937;
  padding: 120px 0 80px;
  position: relative;
  text-align: center;
}



.jobs-hero .container {
  position: relative;
  z-index: 2;
}

.jobs-hero h1 {
  color: #1f2937;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.jobs-hero p {
  color: #4b5563;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 700px;
}

.jobs-hero .hero-stats,
.jobs-hero p {
  margin-left: auto;
  margin-right: auto;
}

.jobs-hero .hero-stats {
  background: #fff;
  border: 1px solid rgba(135, 90, 123, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3rem;
  max-width: 800px;
  padding: 2rem;
}

.jobs-hero .stat-item {
  background: linear-gradient(135deg,
      rgba(135, 90, 123, 0.05),
      rgba(113, 75, 103, 0.08));
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.jobs-hero .stat-item:hover {
  box-shadow: 0 8px 15px -3px rgba(135, 90, 123, 0.2);
  transform: translateY(-4px);
}

.jobs-hero .stat-number {
  color: #875a7b;
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.jobs-hero .stat-label {
  color: #6b7280;
  font-size: 0.95rem;
  font-weight: 500;
}

.jobs-filter-section {
  background: #f8fafc;
  padding: 4rem 0 2rem;
}


.jobs-filter {
  display: flex;
  justify-content: center;
}

.hero-stats {
  display: flex;
  flex-direction: row;
}




.filter-group {
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1.5rem;
  gap: 0.5rem;
}

.filter-select {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  border-radius: 8px;
  color: #374151;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  min-width: 200px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.filter-select:focus {
  box-shadow: 0 0 0 3px rgba(135, 90, 123, 0.1);
  outline: none;
}

.filter-select:focus,
.filter-select:hover {
  border-color: #875a7b;
}

.jobs-grid-section {
  background: #f8fafc;
  padding: 2rem 0 6rem;
}

.jobs-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  margin-bottom: 3rem;
}

.job-card {
  background: #fff;
  border: 1px solid rgba(135, 90, 123, 0.1);
  border-radius: 16px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.job-card:before {
  background: linear-gradient(135deg, #875a7b, #714b67);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.job-card:hover {
  border-color: rgba(135, 90, 123, 0.3);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-8px);
}

.job-header {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.job-title-group h3 {
  color: #1f2937;
  font-family: inter, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.job-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-size: 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
}

.badge-department {
  background: rgba(135, 90, 123, 0.1);
  color: #875a7b;
}

.badge-experience {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.badge-remote {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}

.badge-fresh {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

.badge-growth {
  background: rgba(236, 72, 153, 0.1);
  color: #be185d;
}

.badge-leadership {
  background: rgba(139, 69, 19, 0.1);
  color: #92400e;
}

.badge-modern {
  background: rgba(99, 102, 241, 0.1);
  color: #5b21b6;
}

.badge-mobile {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.badge-communication {
  background: rgba(168, 85, 247, 0.1);
  color: #7c3aed;
}

.badge-innovation {
  background: rgba(20, 184, 166, 0.1);
  color: #0f766e;
}

.job-salary {
  color: #875a7b;
  font-size: 1.25rem;
  font-weight: 700;
  white-space: nowrap;
}

.job-description {
  margin-bottom: 2rem;
}

.job-description>p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.job-requirements h5 {
  color: #1f2937;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.job-requirements ul {
  list-style: none;
  margin-bottom: 1.5rem;
  padding: 0;
}

.job-requirements li {
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
}

.job-requirements li:before {
  color: #875a7b;
  content: "•";
  font-size: 1.2rem;
  font-weight: 700;
  left: 0;
  position: absolute;
}

.job-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.skill-tag {
  background: rgba(135, 90, 123, 0.08);
  border: 1px solid rgba(135, 90, 123, 0.2);
  border-radius: 20px;
  color: #875a7b;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: rgba(135, 90, 123, 0.15);
  transform: translateY(-1px);
}

.job-footer {
  align-items: center;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 1.5rem;
}

.job-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.job-location,
.job-posted {
  color: #6b7280;
  font-size: 0.875rem;
}

.btn-apply {
  background: linear-gradient(135deg, #875a7b, #714b67);
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  transition: all 0.3s ease;
}

.btn-apply:hover {
  box-shadow: 0 8px 15px -3px rgba(135, 90, 123, 0.4);
  transform: translateY(-2px);
}

.no-results {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 4rem 2rem;
  text-align: center;
}

.no-results-content h3 {
  color: #1f2937;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.no-results-content p {
  color: #6b7280;
  margin-bottom: 2rem;
}

.application-modal {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: all 0.3s ease;
  visibility: hidden;
  width: 100%;
  z-index: 9999;
}

.application-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  background: transparent;
  cursor: pointer;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.modal-content {
  background: #fff;
  border-radius: 20px;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  max-height: 90vh;
  max-width: 700px;
  max-width: 600px;
  max-width: 500px;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  width: 90%;
  z-index: 10;
  z-index: 2001;
}

.modal-header {
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 2rem 2rem 1rem;
}

.modal-header h3 {
  color: #1f2937;
  font-size: 1.5rem;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
}

.modal-body {
  padding: 2rem;
}

.application-form {
  display: grid;
  gap: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  color: #1f2937;
  font-family: Inter, sans-serif;
  font-size: 0.95rem;
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  transition: all 0.3s ease;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #714b67;
  box-shadow: 0 0 0 3px rgba(135, 90, 123, 0.1);
  box-shadow: 0 0 0 3px rgba(113, 75, 103, 0.1);
  outline: none;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group small {
  color: #6b7280;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.form-actions {
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 1rem;
  padding-top: 1rem;
}

.application-success {
  padding: 3rem 2rem;
  text-align: center;
}

.application-success h3 {
  color: #1f2937;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.application-success p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .jobs-hero h1 {
    font-size: 2.5rem;
  }

  .jobs-hero p {
    font-size: 1.2rem;
  }

  .jobs-hero .hero-stats {
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2rem;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .filter-group {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .filter-select {
    min-width: auto;
    width: 100%;
  }

  .job-footer,
  .job-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .modal-content {
    margin: 1rem;
    width: 95%;
  }

  .modal-body,
  .modal-header {
    padding: 1.5rem;
  }

  .form-actions {
    flex-direction: column-reverse;
  }
}

@media (max-width: 480px) {
  .jobs-hero {
    padding: 100px 0 60px;
  }

  .jobs-hero h1 {
    font-size: 2rem;
  }

  .jobs-hero p {
    font-size: 1.1rem;
  }

  .jobs-hero .hero-stats {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .job-card {
    padding: 2rem 1.5rem;
  }

  .job-badges {
    flex-wrap: wrap;
  }

  .modal-content {
    border-radius: 16px;
    margin: 1rem;
    padding: 2rem 1.5rem;
    width: 95%;
  }

  .modal-header h3 {
    font-size: 1.25rem;
  }

  .application-success {
    padding: 2rem 1rem;
  }
}

.internship-hero {
  background: linear-gradient(135deg, #fff, #f8fafc);
  color: #1f2937;
  margin-top: 80px;
  overflow: hidden;
  padding: 120px 0 80px;
  position: relative;
}

.internship-hero:before {
  animation: heroFloat 20s ease-in-out infinite;
  background: radial-gradient(circle,
      rgba(135, 90, 123, 0.05) 1px,
      transparent 0);
  background-size: 50px 50px;
  content: "";
  height: 200%;
  left: -50%;
  pointer-events: none;
  position: absolute;
  top: -50%;
  width: 200%;
}

@keyframes heroFloat {

  0%,
  to {
    transform: translate(0) rotate(0deg);
  }

  33% {
    transform: translate(-20px, -10px) rotate(1deg);
  }

  66% {
    transform: translate(10px, -20px) rotate(-1deg);
  }
}

.internship-hero .container {
  align-items: center;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
  position: relative;
  z-index: 2;
}

.internship-hero .hero-content {
  max-width: 100%;
}

.internship-hero .hero-visual {
  align-items: center;
  display: flex;
  justify-content: center;
}

.internship-hero h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.internship-hero p {
  color: #4b5563;
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.8;
}

.internship-hero .btn-primary,
.internship-hero .btn-secondary {
  border-radius: 12px;
  display: inline-block;
  font-weight: 600;
  padding: 1rem 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.internship-hero .btn-secondary {
  background: transparent;
  border: 2px solid #875a7b;
  color: #875a7b;
}

.internship-hero .btn-secondary:hover {
  background: #875a7b;
  color: #fff;
  transform: translateY(-3px);
}

.hero-illustration {
  animation: floatUpDown 6s ease-in-out infinite;
}

.hero-illustration,
.hero-illustration svg {
  height: auto;
  max-width: 100%;
}

@keyframes floatUpDown {

  0%,
  to {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.internship-hero .hero-stats {
  backdrop-filter: blur(10px);
  background: linear-gradient(135deg,
      rgba(135, 90, 123, 0.05),
      rgba(113, 75, 103, 0.08));
  border: 1px solid rgba(135, 90, 123, 0.1);
  border-radius: 20px;
  display: grid;
  gap: 2rem;
  grid-column: 1/-1;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 4rem;
  padding: 2.5rem;
}

.internship-hero .stat-item {
  background: #fff;
  border: 1px solid rgba(135, 90, 123, 0.1);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.internship-hero .stat-item:hover {
  background: #fff;
  border-color: rgba(135, 90, 123, 0.2);
  box-shadow: 0 15px 35px rgba(135, 90, 123, 0.15);
  transform: translateY(-8px);
}

.internship-hero .stat-number {
  color: #875a7b;
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.internship-hero .stat-label {
  color: #4b5563;
  font-size: 1rem;
  font-weight: 500;
}

.internship-programs-section {
  background: #f8fafc;
  padding: 8rem 0;
}

.program-categories {
  margin-top: 4rem;
}

.program-categories h3 {
  border-bottom: 3px solid #875a7b;
  color: #1f2937;
  font-size: 2rem;
  font-weight: 700;
  margin: 4rem 0 2rem;
  padding-bottom: 1rem;
  position: relative;
}

.program-categories h3:before {
  background: linear-gradient(135deg, #875a7b, #714b67);
  bottom: -3px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 80px;
}

.program-categories h3:first-child,
.programs-grid {
  margin-top: 2rem;
}

.programs-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  margin-bottom: 3rem;
}

.program-card {
  background: #fff;
  border: 1px solid rgba(135, 90, 123, 0.1);
  border-radius: 16px;
  box-shadow:
    0 8px 25px -5px rgba(0, 0, 0, 0.1),
    0 4px 10px -3px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  overflow: hidden;
  padding: 2rem;
  position: relative;
  transition: all 0.4s ease;
}

.program-card:before {
  background: linear-gradient(135deg, #875a7b, #714b67);
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.program-card.featured {
  border: 2px solid rgba(135, 90, 123, 0.3);
  transform: scale(1.02);
}

.program-card.featured:before {
  animation: shimmer 2s ease-in-out infinite;
  background: linear-gradient(135deg, #875a7b, #ffe066 50%, #714b67);
  height: 8px;
}

@keyframes shimmer {

  0%,
  to {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }
}

.program-card:hover {
  border-color: rgba(135, 90, 123, 0.3);
  box-shadow:
    0 25px 50px -5px rgba(0, 0, 0, 0.15),
    0 10px 20px -5px rgba(0, 0, 0, 0.08);
  transform: translateY(-12px) scale(1.01);
}

.program-badge {
  background: linear-gradient(135deg, #875a7b, #714b67);
  border-radius: 20px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.25rem;
  position: absolute;
  right: 2rem;
  text-transform: uppercase;
  top: 2rem;
}

.program-header {
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.program-categories .program-header {
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.program-categories .program-header h3 {
  font-family: Inter;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.program-categories .program-duration {
  font-size: 0.9rem;
}

.program-icon {
  animation: iconPulse 3s ease-in-out infinite;
  flex-shrink: 0;
  position: relative;
  top: 60px;
}

@keyframes iconPulse {

  0%,
  to {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.program-header h3 {
  color: #1f2937;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.program-duration {
  color: #875a7b;
  font-size: 1.1rem;
  font-weight: 600;
}

.program-description p {
  color: #4b5563;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.program-highlights h5 {
  color: #1f2937;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.program-highlights ul {
  list-style: none;
  margin-bottom: 2.5rem;
  padding: 0;
}

.program-highlights li {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.6;
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.program-highlights li:before {
  align-items: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  color: #10b981;
  content: "✓";
  display: flex;
  font-size: 1.2rem;
  font-weight: 700;
  height: 1.5rem;
  justify-content: center;
  left: 0;
  position: absolute;
  width: 1.5rem;
}

.program-highlights li:hover {
  color: #1f2937;
  padding-left: 2.5rem;
}

.program-details {
  background: rgba(135, 90, 123, 0.03);
  border: 1px solid rgba(135, 90, 123, 0.1);
  border-radius: 12px;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin: 2rem 0;
  padding: 2rem;
}

.detail-item {
  align-items: center;
  color: #718096;
  display: flex;
  font-size: 0.9rem;
  gap: 0.5rem;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.detail-label {
  color: #4b5563;
  font-size: 0.95rem;
  font-weight: 600;
}

.detail-value {
  color: #1f2937;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: right;
}

.program-tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0;
}

.tech-tag {
  background: linear-gradient(135deg,
      rgba(135, 90, 123, 0.1),
      rgba(113, 75, 103, 0.15));
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  border: 1px solid #d1d5db;
  border-radius: 25px;
  border-radius: 8px;
  color: #875a7b;
  color: #1f2937;
  font-size: 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  transition: all 0.2s ease;
}

.tech-tag:hover {
  background: linear-gradient(135deg, #875a7b, #714b67);
  box-shadow: 0 5px 15px rgba(135, 90, 123, 0.4);
  box-shadow: 0 4px 8px rgba(135, 90, 123, 0.3);
  color: #fff;
  transform: translateY(-2px);
}

.program-footer {
  align-items: center;
  border-top: 1px solid #e2e8f0;
  display: flex;
  gap: 1.5rem;
  margin-top: auto;
  padding-top: 2rem;
}

.program-categories .program-description {
  flex-grow: 1;
  margin-bottom: 1rem;
}

.program-categories .program-description p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.program-categories .program-tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.program-categories .tech-tag {
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
}

.program-categories .program-footer {
  justify-content: center;
  padding-top: 1.5rem;
}

.program-categories .btn-apply-program {
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  width: 100%;
}

.btn-apply-program {
  background: linear-gradient(135deg, #875a7b, #714b67);
  border: none;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 1rem 2rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-apply-program:hover {
  background: linear-gradient(135deg, #714b67, #875a7b);
  box-shadow: 0 12px 25px rgba(135, 90, 123, 0.4);
  transform: translateY(-3px);
}

.btn-secondary-outline {
  background: transparent;
  border: 2px solid #fff;
  border-radius: 12px;
  border-radius: 8px;
  color: #875a7b;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 1.5rem;
  padding: 1rem 2rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-secondary-outline:hover {
  background: #875a7b;
  background: #fff;
  box-shadow: 0 4px 12px rgba(135, 90, 123, 0.3);
  color: #fff;
  color: #714b67;
  transform: translateY(-3px);
  transform: translateY(-2px);
}

.learning-journey-section {
  background: #fff;
  padding: 8rem 0;
}

.journey-timeline {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 4rem;
  position: relative;
}

.journey-step {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  opacity: 0;
  padding: 3rem 2.5rem;
  position: relative;
  text-align: center;
  transform: translateY(30px);
  transition: all 0.4s ease;
}

.journey-step.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.journey-step:hover {
  background: #fff;
  border-color: rgba(135, 90, 123, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.journey-step .step-number {
  align-items: center;
  background: linear-gradient(135deg, #875a7b, #714b67);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(135, 90, 123, 0.3);
  color: #fff;
  display: flex;
  font-size: 1.5rem;
  font-weight: 700;
  height: 60px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: -25px;
  transform: translateX(-50%);
  width: 60px;
}

.journey-step h4 {
  color: #1f2937;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
}

.journey-step p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.step-duration {
  background: rgba(135, 90, 123, 0.1);
  border-radius: 20px;
  color: #875a7b;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
}

.step-illustration {
  margin: 1.5rem 0;
  opacity: 0.8;
}

.internship-benefits-section {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  padding: 8rem 0;
}

.benefit-card {
  background: #fff;
  border: 1px solid rgba(135, 90, 123, 0.05);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  opacity: 0;
  padding: 3rem;
  text-align: center;
  transform: translateY(30px);
  transition: all 0.4s ease;
}

.benefit-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card:hover {
  border-color: rgba(135, 90, 123, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-15px);
}

.benefit-card:hover .benefit-icon {
  filter: none;
  transform: scale(1.1);
}

.benefit-card h4 {
  color: #1f2937;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.benefit-card p {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.7;
}

.success-stories-section {
  background: #fff;
  padding: 8rem 0;
}

.success-story-card {
  background: linear-gradient(135deg, #f8fafc, #fff);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  opacity: 0;
  padding: 3rem;
  transform: translateY(30px);
  transition: all 0.4s ease;
}

.success-story-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.success-story-card:hover {
  border-color: rgba(135, 90, 123, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-10px);
}

.story-profile {
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

.profile-avatar {
  flex-shrink: 0;
}

.profile-info h4 {
  color: #1f2937;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.profile-role {
  color: #875a7b;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.profile-program {
  color: #6b7280;
  font-size: 0.9rem;
}

.story-content p {
  color: #4b5563;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.story-achievements {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.application-process-section {
  background: linear-gradient(135deg,
      rgba(135, 90, 123, 0.05),
      rgba(113, 75, 103, 0.08));
  padding: 8rem 0;
}

.application-cta {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin-top: 5rem;
  padding: 4rem;
  text-align: center;
}

.application-cta h3 {
  color: #1f2937;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.application-cta p {
  color: #4b5563;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.btn-primary-large {
  align-items: center;
  background: linear-gradient(135deg, #875a7b, #714b67);
  border: none;
  border-radius: 15px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(135, 90, 123, 0.3);
  box-shadow: 0 4px 15px rgba(135, 90, 123, 0.3);
  color: #fff;
  cursor: pointer;
  display: flex;
  display: inline-flex;
  font-size: 1.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  font-weight: 600;
  gap: 0.5rem;
  gap: 0.75rem;
  justify-content: center;
  letter-spacing: 0.1em;
  padding: 1.25rem 2.5rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
  transition: all 0.3s ease;
}

.btn-primary-large:hover {
  background: linear-gradient(135deg, #714b67, #875a7b);
  box-shadow: 0 15px 40px rgba(135, 90, 123, 0.4);
  box-shadow: 0 8px 25px rgba(135, 90, 123, 0.25);
  box-shadow: 0 6px 20px rgba(135, 90, 123, 0.4);
  transform: translateY(-5px);
  transform: translateY(-2px);
}

.application-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.application-notes span {
  background: rgba(135, 90, 123, 0.1);
  border: 1px solid rgba(135, 90, 123, 0.2);
  border-radius: 25px;
  color: #875a7b;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
}

.faq-grid {
  display: grid;
  gap: 2.5rem;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  grid-template-columns: repeat(2, 1fr);
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  margin-top: 3rem;
}

.faq-item:hover {
  background: #fff;
  border-color: #875a7b;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 25px rgba(135, 90, 123, 0.15);
}

.faq-item h4 {
  color: #1f2937;
  font-size: 1.3rem;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #6b7280;
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.7;
  line-height: 1.6;
  margin: 0;
}

.internship-application-modal {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: all 0.3s ease;
  visibility: hidden;
  width: 100%;
  z-index: 9999;
}

.internship-application-modal.active {
  opacity: 1;
  visibility: visible;
}

.internship-application-modal .modal-content {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  max-height: 90vh;
  max-width: 800px;
  overflow-y: auto;
  position: relative;
  width: 90%;
  z-index: 10;
}

@media (max-width: 768px) {
  .internship-hero {
    padding: 100px 0 60px;
  }

  .internship-hero .container {
    gap: 2rem;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .internship-hero h1 {
    font-size: 2.5rem;
  }

  .internship-hero p {
    font-size: 1.1rem;
  }

  .internship-hero .hero-stats {
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem;
  }

  .programs-grid {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .program-categories h3 {
    font-size: 1.5rem;
    margin: 3rem 0 1.5rem;
  }

  .program-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .journey-timeline,
  .program-details {
    grid-template-columns: 1fr;
  }

  .story-profile {
    flex-direction: column;
    text-align: center;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .application-notes {
    align-items: center;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .internship-hero {
    padding: 100px 0 60px;
  }

  .internship-hero h1 {
    font-size: 2rem;
  }

  .internship-hero .hero-stats {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .program-card {
    min-height: 280px;
    padding: 1.5rem;
  }

  .program-categories h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
  }

  .program-categories .program-header h3 {
    font-size: 1.1rem;
  }

  .program-categories .program-description p {
    font-size: 0.9rem;
  }

  .programs-grid {
    gap: 1rem;
    grid-template-columns: 1fr;
  }

  .journey-step {
    padding: 2rem 1.5rem;
  }

  .application-cta,
  .benefit-card,
  .success-story-card {
    padding: 2rem;
  }

  .application-cta h3 {
    font-size: 1.8rem;
  }

  .btn-primary-large {
    font-size: 1rem;
    padding: 1.25rem 2rem;
  }
}

.app-details-hero {
  background: linear-gradient(135deg, #fff, #f8fafc);
  margin-top: 80px;
  padding: 120px 0 80px;
}

.app-breadcrumb {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.app-breadcrumb a {
  color: #875a7b;
  text-decoration: none;
}

.app-hero-main {
  align-items: start;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
}

.app-icon-large {
  align-items: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  font-size: 3.5rem;
  font-size: 4rem;
  height: 100px;
  justify-content: center;
  width: 100px;
}

.store-hero {
  /* margin-top: 80px; */
  overflow: hidden;
  padding: 10rem 0 6rem;
  position: relative;
  text-align: center;
}

.store-search-bar {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 10px;
  margin: 0 auto 3rem;
  max-width: 700px;
  max-width: 800px;
  padding: 10px;
}

.quick-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  gap: 15px;
  justify-content: center;
}

.hosting-hero {
  background: linear-gradient(135deg, #fff, #f8fafc);
  color: #1f2937;
}

.hosting-hero h1 {
  color: #1f2937;
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.hosting-hero p {
  color: #6b7280;
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.hosting-hero-stats {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 5rem;
}

.hosting-hero-stats .stat-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 2rem;
}

.hosting-hero-stats .stat-number {
  color: #875a7b;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hosting-hero-stats .stat-label {
  color: #6b7280;
}

@media (max-width: 768px) {

  .app-hero-main,
  .hosting-hero-stats {
    grid-template-columns: 1fr;
  }
}

.app-hero-info h1 {
  color: #1f2937;
  font-family: Caveat, cursive;
  font-size: 4rem;
  margin-bottom: 1rem;
}

.app-tagline {
  color: #6b7280;
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.app-rating-info {
  align-items: center;
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.app-rating-stars {
  color: #ffb800;
  display: flex;
  font-size: 1.5rem;
  gap: 0.5rem;
}

.app-rating-stats {
  color: #6b7280;
  display: flex;
  gap: 1rem;
}

.app-meta {
  color: #a0aec0;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.85rem;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.app-meta-item {
  align-items: center;
  color: #6b7280;
  display: flex;
  gap: 0.5rem;
}

.app-cta-buttons {
  display: flex;
  gap: 1rem;
}

.app-cta-buttons .btn-primary {
  background: linear-gradient(135deg, #875a7b, #714b67);
  border: none;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  transition: transform 0.3s;
}

.app-cta-buttons .btn-primary:hover {
  transform: translateY(-2px);
}

.app-cta-buttons .btn-secondary {
  background: #fff;
  border: 2px solid #875a7b;
  border-radius: 50px;
  color: #875a7b;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  transition: all 0.3s;
}

.app-cta-buttons .btn-secondary:hover {
  background: #f8fafc;
}

.app-screenshot-preview {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
}

.app-screenshot-preview img {
  display: block;
  height: auto;
  width: 100%;
}

.screenshot-overlay {
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50px;
  bottom: 1.5rem;
  color: #fff;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  position: absolute;
  right: 1.5rem;
  transition: background 0.3s;
}

.screenshot-overlay:hover {
  background: rgba(0, 0, 0, 0.85);
}

.app-quick-stats {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3rem;
}

.stat-badge {
  align-items: center;
  background: #fff;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-badge-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.app-nav-tabs {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 80px;
  z-index: 100;
}

.tab-nav-list {
  display: flex;
  list-style: none;
  margin: 0 auto;
  max-width: 1300px;
  padding: 0 2rem;
}

.tab-nav-list li {
  margin: 0;
}

.tab-nav-list a {
  border-bottom: 3px solid transparent;
  color: #6b7280;
  display: block;
  font-weight: 500;
  padding: 1.5rem 2rem;
  text-decoration: none;
  transition: all 0.3s;
}

.tab-nav-list a.active,
.tab-nav-list a:hover {
  border-bottom-color: #875a7b;
  color: #875a7b;
}

.app-content-layout {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 380px;
  margin: 0 auto;
  max-width: 1300px;
  padding: 4rem 2rem;
}

.app-main-content {
  min-width: 0;
}

.app-content-section {
  margin-bottom: 4rem;
}

.app-content-section h2 {
  color: #1f2937;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.app-description {
  color: #4b5563;
  color: #4a5568;
  font-size: 1.1rem;
  font-size: 1rem;
  line-height: 1.8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.special-list {
  list-style: none;
  margin: 2rem 0;
}

.special-list li {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.special-list li:before {
  color: #10b981;
  content: "✓";
  font-size: 1.3rem;
  font-weight: 700;
  left: 0;
  position: absolute;
}

.use-case-card h4 {
  color: #1f2937;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.feature-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: #1f2937;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.screenshots-gallery {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
  margin: 2rem 0;
}

.screenshot-thumb {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s;
}

.screenshot-thumb:hover {
  transform: scale(1.05);
}

.screenshot-thumb img {
  display: block;
  height: auto;
  width: 100%;
}

.pricing-card.popular {
  border-color: #875a7b;
  box-shadow: 0 10px 30px rgba(135, 90, 123, 0.2);
  position: relative;
  transform: scale(1.05);
}

.pricing-badge {
  background: linear-gradient(135deg, #875a7b, #714b67);
  border-radius: 50px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  left: 50%;
  padding: 0.5rem 1.5rem;
  position: absolute;
  top: -15px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.pricing-card h3 {
  color: #1f2937;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.pricing-price {
  color: #875a7b;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-period {
  color: #6b7280;
  margin-bottom: 2rem;
}

.pricing-features .check {
  color: #10b981;
  font-size: 1.2rem;
}

.pricing-features .cross {
  color: #dc2626;
  font-size: 1.2rem;
}

.reviews-summary {
  background: #f8fafc;
  border-radius: 20px;
  margin: 2rem 0 3rem;
  padding: 3rem;
}

.reviews-header {
  align-items: start;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr 2fr;
}

.overall-rating {
  text-align: center;
}

.rating-number {
  color: #875a7b;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
}

.rating-stars {
  color: #ffb800;
  font-size: 1.8rem;
  margin: 1rem 0;
}

.total-reviews {
  color: #6b7280;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rating-bar-item {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.rating-bar-label {
  color: #6b7280;
  min-width: 60px;
}

.rating-bar {
  background: #e2e8f0;
  border-radius: 10px;
  flex: 1;
  height: 12px;
  overflow: hidden;
}

.rating-bar-fill {
  background: linear-gradient(90deg, #ffb800, #ffa000);
  border-radius: 10px;
  height: 100%;
}

.rating-bar-count {
  color: #6b7280;
  min-width: 50px;
  text-align: right;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 2rem;
}

.review-header {
  align-items: start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.reviewer-info {
  gap: 1rem;
}

.reviewer-avatar,
.reviewer-info {
  align-items: center;
  display: flex;
}

.reviewer-avatar {
  background: linear-gradient(135deg, #875a7b, #714b67);
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  height: 50px;
  justify-content: center;
  width: 50px;
}

.reviewer-details h4 {
  color: #1f2937;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.reviewer-role {
  color: #6b7280;
  font-size: 0.9rem;
}

.verified-badge {
  align-items: center;
  background: #d1fae5;
  border-radius: 50px;
  color: #059669;
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 500;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
}

.review-rating-date {
  align-items: center;
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-stars {
  color: #ffb800;
  font-size: 1.2rem;
}

.review-date {
  color: #9ca3af;
  font-size: 0.9rem;
}

.review-text {
  color: #4b5563;
  line-height: 1.7;
}

.app-sidebar {
  position: sticky;
  top: 200px;
}

.sidebar-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.sidebar-card h3 {
  color: #1f2937;
  font-family: Inter, sans-serif;
  font-size: 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.publisher-info {
  text-align: center;
}

.publisher-logo {
  align-items: center;
  background: linear-gradient(135deg, #875a7b, #714b67);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 2rem;
  height: 80px;
  justify-content: center;
  margin: 0 auto 1rem;
  width: 80px;
}

.publisher-name {
  color: #1f2937;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.publisher-stats {
  border-bottom: 1px solid #e2e8f0;
  border-top: 1px solid #e2e8f0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  margin: 1.5rem 0;
  padding: 1.5rem 0;
}

.publisher-stat {
  text-align: center;
}

.publisher-stat-value {
  color: #875a7b;
  font-size: 1.5rem;
  font-weight: 700;
}

.publisher-stat-label {
  color: #6b7280;
  font-size: 0.9rem;
}

.support-links {
  flex-direction: column;
}

.support-link,
.support-links {
  display: flex;
  gap: 0.75rem;
}

.support-link {
  align-items: center;
  background: #f8fafc;
  border-radius: 10px;
  color: #4b5563;
  padding: 1rem;
  text-decoration: none;
  transition: all 0.3s;
}

.support-link:hover {
  background: #e2e8f0;
  color: #875a7b;
}

.compatibility-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.compatibility-item {
  align-items: center;
  background: #f8fafc;
  border-radius: 8px;
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
}

.integrations-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.integration-badge {
  background: #f8fafc;
  border-radius: 10px;
  color: #6b7280;
  font-size: 0.9rem;
  padding: 1rem;
  text-align: center;
}

.similar-apps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.similar-app-card {
  background: #f8fafc;
  border-radius: 10px;
  display: flex;
  gap: 1rem;
  padding: 1rem;
  text-decoration: none;
  transition: all 0.3s;
}

.similar-app-card:hover {
  background: #e2e8f0;
  transform: translateX(5px);
}

.similar-app-icon {
  align-items: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  font-size: 1.5rem;
  height: 50px;
  justify-content: center;
  width: 50px;
}

.similar-app-info h4 {
  color: #1f2937;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.similar-app-price {
  color: #875a7b;
  font-size: 0.9rem;
  font-weight: 600;
}

.app-modal {
  align-items: center;
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.7);
  display: none;
  height: 100%;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}

.app-modal.active {
  display: flex;
}

.modal-content h2 {
  color: #1f2937;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group input,
.form-group select {
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  padding: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #875a7b;
  outline: none;
}

.modal-form button[type="submit"] {
  background: linear-gradient(135deg, #875a7b, #714b67);
  border: none;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  transition: transform 0.3s;
}

.modal-form button[type="submit"]:hover {
  transform: translateY(-2px);
}

.demo-options {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 2rem;
}

.demo-option {
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  cursor: pointer;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.demo-option:hover {
  background: #f8fafc;
  border-color: #875a7b;
}

.demo-option-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.demo-option h3 {
  color: #1f2937;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.demo-option p {
  color: #6b7280;
  font-size: 0.95rem;
}

.store-hero h1 {
  color: #1f2937;
  font-size: 4rem;
  font-size: 6rem;
  margin-bottom: 1.5rem;
}

.store-hero p {
  color: #6b7280;
  color: #4a5568;
  font-size: 1.3rem;
  font-size: 1.2rem;
  margin: 0 auto 3rem;
  max-width: 700px;
}

.store-search-bar input {
  border: none;
  border-radius: 50px;
  flex: 1;
  font-size: 1.1rem;
  padding: 1rem 1.5rem;
}

.store-search-bar input:focus {
  outline: none;
}

.search-btn {
  background: linear-gradient(135deg, #875a7b, #714b67);
  background: #875a7b;
  background: #714b67;
  border: none;
  border-radius: 50px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 15px 30px;
  transition: transform 0.3s;
  transition: background 0.3s;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: #714b67;
  background: #8b5a8c;
  transform: scale(1.05);
  transform: translateY(-2px);
}

.quick-categories .category-btn {
  background: #fff;
  border: 2px solid #875a7b;
  border-radius: 50px;
  color: #875a7b;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s;
}

.quick-categories .category-btn:hover {
  background: #875a7b;
  color: #fff;
}

.store-stats-banner {
  border-bottom: 1px solid #e2e8f0;
  border-radius: 20px;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 20px 50px rgba(113, 75, 103, 0.3);
  margin-left: auto;
  margin-right: auto;
  margin-top: -30px;
  max-width: 1200px;
  /* padding: 3rem 0; */
  position: relative;
  width: 90%;
  z-index: 2;
}

.stat-value {
  color: #875a7b;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.featured-apps-section {
  padding: 6rem 0;
}

.featured-apps-slider {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  margin-top: 3rem;
}

.featured-app-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  position: relative;
  text-align: center;
  transition: transform 0.3s;
  transition: all 0.3s ease;
}

.featured-app-card:hover {
  border-color: rgba(113, 75, 103, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.featured-badge {
  background: linear-gradient(135deg, #ffb800, #ffa000);
  background: linear-gradient(135deg, #ffe066, #fbbf24);
  background: #ffeb3b;
  border-radius: 8px 8px 0 0;
  border-radius: 50px;
  color: #fff;
  color: #1f2937;
  color: #1a202c;
  font-size: 0.85rem;
  font-size: 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  font-weight: 700;
  left: 50%;
  letter-spacing: 0.05em;
  padding: 5px 15px;
  position: absolute;
  right: 1.5rem;
  right: 20px;
  text-align: center;
  text-transform: uppercase;
  top: 1.5rem;
  top: 0;
  top: 20px;
  transform: translateX(-50%);
}

.featured-app-icon {
  align-items: center;
  background: linear-gradient(135deg, #875a7b, #714b67);
  border-radius: 20px;
  color: #fff;
  display: flex;
  font-size: 3rem;
  height: 100px;
  justify-content: center;
  margin: 0 auto 1.5rem;
  width: 100px;
}

.featured-app-card h3 {
  color: #1f2937;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.featured-app-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.app-rating {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.stars {
  color: #ffb800;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.rating-count {
  color: #9ca3af;
  font-size: 0.95rem;
}

.categories-section {
  background: #f8fafc;
  padding: 6rem 0;
}

.categories-grid {
  display: grid;
  gap: 2rem;
  gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 3rem;
  margin-bottom: 50px;
}

.category-card {
  background: #f8f9fa;
  border: 1px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 5px;
  padding: 2rem 2.5rem;
  position: relative;
  text-align: center;
  text-decoration: none;
}

.category-card:hover {
  background: #fff;
  border-color: #714b67;
  border-color: rgba(113, 75, 103, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  box-shadow: 0 10px 25px rgba(113, 75, 103, 0.1);
  box-shadow: 0 25px 60px rgba(113, 75, 103, 0.1);
  transform: translateY(-5px);
  transform: translateY(-10px);
}

.category-icon {
  display: block;
  font-size: 2.5rem;
  font-size: 3rem;
  margin-bottom: 2rem;
}

.category-card h3 {
  color: #1f2937;
  font-size: 1.4rem;
  font-size: 1.3rem;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.category-count {
  color: #9ca3af;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.category-card .arrow {
  color: #875a7b;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.category-card:hover .arrow {
  opacity: 1;
}

.apps-listing {
  padding: 6rem 0;
}

.apps-layout {
  display: grid;
  gap: 3rem;
  grid-template-columns: 280px 1fr;
  margin: 4rem auto 0;
  max-width: 1400px;
  /* padding: 0 2rem; */
}

.filters-sidebar {
  align-self: start;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  height: fit-content;
  padding: 2rem;
  position: sticky;
  top: 120px;
  top: 100px;
}

.filter-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 2.5rem;
  padding: 2rem;
}

.filter-section h3 {
  align-items: center;
  color: #1f2937;
  display: flex;
  font-size: 1.2rem;
  font-size: 1.5rem;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.filter-options {
  flex-direction: column;
}

.filter-option,
.filter-options {
  display: flex;
  gap: 0.75rem;
}

.filter-option {
  align-items: center;
}

.filter-option input[type="checkbox"] {
  cursor: pointer;
  height: 18px;
  width: 18px;
}

.filter-option label {
  color: #4b5563;
  cursor: pointer;
}

.clear-filters {
  background: #f1f5f9;
  border: none;
  border-radius: 8px;
  color: #875a7b;
  cursor: pointer;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  transition: background 0.3s;
  width: 100%;
}

.clear-filters:hover {
  background: #e2e8f0;
}

.apps-content {
  min-width: 0;
}

.apps-toolbar {
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
}

.results-count {
  color: #6b7280;
  font-size: 1.1rem;
}

.sort-dropdown {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.sort-dropdown select {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
}

.app-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 2rem;
  transition: all 0.3s;
  transition: all 0.3s ease;
}

.app-card:hover {
  border-color: rgba(113, 75, 103, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.app-card-header {
  gap: 1.5rem;
  gap: 20px;
  margin-bottom: 1.5rem;
}

.app-card-header,
.app-card-icon {
  align-items: center;
  display: flex;
}

.app-card-icon {
  background: linear-gradient(135deg, #875a7b, #714b67);
  border-radius: 16px;
  color: #fff;
  flex-shrink: 0;
  font-size: 2rem;
  height: 70px;
  justify-content: center;
  width: 70px;
}

.app-card-info {
  flex: 1;
  min-width: 0;
}

.app-badges {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.5rem;
  gap: 5px;
  left: 15px;
  margin-bottom: 0.75rem;
  position: absolute;
  top: 15px;
}

.badge.verified {
  background: #d1fae5;
  color: #059669;
}

.badge.popular {
  background: #fef3c7;
  color: #d97706;
}

.badge.new {
  background: #dbeafe;
  color: #2563eb;
}

.badge.free {
  background: #e0e7ff;
  color: #6366f1;
}

.app-card-info h3 {
  color: #1f2937;
  font-size: 1.4rem;
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.app-publisher {
  color: #6b7280;
  color: #718096;
  font-size: 0.95rem;
  font-size: 0.9rem;
}

.app-card-body p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.app-card-meta {
  align-items: center;
  color: #718096;
  display: flex;
  font-size: 0.9rem;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.app-installs {
  color: #6b7280;
  font-size: 0.95rem;
}

.app-card-footer {
  align-items: center;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.5rem;
}

.app-price {
  color: #875a7b;
  color: #1a202c;
  font-size: 1.5rem;
  font-weight: 700;
}

.app-price.free {
  color: #10b981;
}

.view-app-btn {
  background: linear-gradient(135deg, #875a7b, #714b67);
  border: none;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition: transform 0.3s;
}

.view-app-btn:hover {
  transform: scale(1.05);
}

.pagination {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  gap: 8px;
  justify-content: center;
  margin-top: 3rem;
}

.pagination a,
.pagination button {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  color: #4b5563;
  cursor: pointer;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  transition: all 0.3s;
}

.pagination a:hover,
.pagination button:hover {
  border-color: #875a7b;
  color: #875a7b;
}

.pagination a.active {
  background: linear-gradient(135deg, #875a7b, #714b67);
  border-color: #875a7b;
  color: #fff;
}

.pagination .dots {
  border: none;
  cursor: default;
}

.pagination .dots:hover {
  border: none;
  color: #4b5563;
}

.developer-cta-section {
  background: #f8fafc;
  padding: 6rem 0;
}

.developer-cta-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 3rem;
}

.developer-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  text-align: center;
  transition: transform 0.3s;
}

.developer-card:hover {
  transform: translateY(-5px);
}

.developer-card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.developer-card h3 {
  color: #1f2937;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.developer-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.learn-more-btn {
  align-items: center;
  color: #875a7b;
  display: inline-flex;
  font-weight: 600;
  gap: 0.5rem;
  text-decoration: none;
}

.hero-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
}

.hero-feature {
  align-items: center;
  color: #10b981;
  display: inline-flex;
  font-size: 1.1rem;
  font-weight: 500;
  gap: 0.5rem;
}

.hosting-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
}

.hero-feature-badge {
  align-items: center;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  color: #4b5563;
  display: flex;
  font-weight: 500;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
}

.hosting-hero-stats .stat-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
}

.hosting-hero-stats .stat-text {
  color: #6b7280;
  font-size: 1.1rem;
}

.trust-section {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  border-top: 1px solid #e2e8f0;
  padding: 4rem 0;
}

.trust-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 2rem;
}

.trust-item {
  text-align: center;
}

.trust-icon {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  font-size: 2.5rem;
  height: 80px;
  justify-content: center;
  margin: 0 auto 1rem;
  width: 80px;
}

.trust-item h3 {
  color: #1f2937;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.trust-item p {
  color: #6b7280;
  font-size: 0.95rem;
}

.infrastructure-section {
  padding: 6rem 0;
}

.infrastructure-showcase {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-top: 3rem;
  padding: 4rem;
}

.infrastructure-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(3, 1fr);
}

.infrastructure-item h3 {
  color: #1f2937;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.data-centers,
.provider-logos,
.tech-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.data-center-item,
.provider-logo,
.tech-item {
  align-items: center;
  background: #f8fafc;
  border-radius: 10px;
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
}

.performance-metrics {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3rem;
}

.metric-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.metric-card.featured {
  border-color: #875a7b;
  box-shadow: 0 15px 40px rgba(135, 90, 123, 0.1);
}

.metric-card:hover {
  border-color: #875a7b;
  box-shadow: 0 20px 50px rgba(135, 90, 123, 0.15);
  transform: translateY(-10px);
}

.metric-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.metric-value {
  color: #1a202c;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1rem;
}

.metric-label {
  color: #718096;
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.8;
}

.pricing-toggle span {
  color: #6b7280;
  font-size: 1.1rem;
}

.toggle-switch {
  background: #e2e8f0;
  border-radius: 50px;
  cursor: pointer;
  height: 32px;
  position: relative;
  transition: background 0.3s;
  width: 60px;
}

.toggle-switch.active {
  background: #875a7b;
}

.toggle-slider {
  background: #fff;
  border-radius: 50%;
  height: 24px;
  left: 4px;
  position: absolute;
  top: 4px;
  transition: transform 0.3s;
  width: 24px;
}

.toggle-switch.active .toggle-slider {
  transform: translateX(28px);
}

.save-badge {
  background: #10b981;
  border-radius: 50px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  margin-left: 0.5rem;
  vertical-align: middle;
  display: inline-block;
}

.pricing-addons {
  margin: 5rem auto 0;
  max-width: 1200px;
  padding: 0 2rem;
}

.addons-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}

.addon-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.addon-card:hover {
  border-color: #875a7b;
  transform: translateY(-5px);
}

.addon-card h4 {
  color: #1f2937;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.addon-price {
  color: #875a7b;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.addon-period {
  color: #6b7280;
  margin-bottom: 1rem;
}

.comparison-section {
  padding: 6rem 0;
}

.comparison-table {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  max-width: 1300px;
  min-width: 800px;
  overflow: hidden;
}

.comparison-table,
.comparison-table table {
  border-collapse: collapse;
  width: 100%;
}

.comparison-table thead {
  background: linear-gradient(135deg, #875a7b, #714b67);
  color: #fff;
}

.comparison-table th {
  background: #f8fafc;
  color: #4a5568;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1.5rem;
  text-align: left;
}

.comparison-table tbody tr {
  border-bottom: 1px solid #e2e8f0;
}

.comparison-table tbody tr:hover {
  background: #f8fafc;
}

.comparison-table td {
  padding: 1.25rem 1.5rem;
}

.comparison-table .category-header {
  background: #f8fafc;
  color: #875a7b;
  font-weight: 600;
}

.comparison-table .checkmark {
  color: #10b981;
  font-size: 1.5rem;
}

.comparison-table .crossmark {
  color: #dc2626;
  font-size: 1.5rem;
}

.migration-section {
  background: #fff;
  padding: 6rem 0;
}

.migration-process {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
  max-width: 1300px;
  padding: 0 2rem;
}

.migration-step {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  position: relative;
  text-align: center;
}

.migration-step:after {
  color: #875a7b;
  content: "→";
  font-size: 2rem;
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
}

.migration-step:last-child:after {
  display: none;
}

.migration-step h3 {
  color: #1f2937;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.migration-step p {
  color: #6b7280;
  line-height: 1.6;
}

.migration-cta {
  margin-top: 4rem;
  text-align: center;
}

.migration-cta h3 {
  color: #1f2937;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.migration-cta p {
  color: #6b7280;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.testimonials-section {
  background: #fff;
  padding: 8rem 0;
}

.testimonial-text {
  color: #4b5563;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.author-role {
  color: #6b7280;
  font-size: 0.95rem;
}

.faq-item h3 {
  color: #1f2937;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

#contactModal .modal-content {
  max-width: 700px;
}

@media (max-width: 1200px) {

  .categories-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-apps-slider,
  .infrastructure-grid,
  .migration-process,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .migration-step:after {
    display: none;
  }
}

@media (max-width: 768px) {
  .app-details-hero {
    padding: 100px 0 60px;
  }

  .app-hero-main {
    gap: 2rem;
    grid-template-columns: 1fr;
  }

  .app-hero-info h1 {
    font-size: 2.5rem;
  }

  .app-quick-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .tab-nav-list {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tab-nav-list a {
    padding: 1rem 1.5rem;
    white-space: nowrap;
  }

  .app-content-layout {
    gap: 2rem;
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }

  .app-sidebar {
    position: static;
  }

  .demo-options,
  .features-grid,
  .pricing-grid,
  .screenshots-gallery,
  .use-cases-grid {
    grid-template-columns: 1fr;
  }

  .store-hero {
    padding: 100px 0 60px;
  }

  .store-hero h1 {
    font-size: 2.5rem;
  }

  .store-search-bar {
    flex-direction: column;
    gap: 1rem;
  }

  .apps-layout,
  .categories-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .filters-sidebar {
    position: static;
  }

  .developer-cta-grid {
    grid-template-columns: 1fr;
  }

  /* .hosting-hero {
    padding: 100px 0 60px;
  } */

  .hosting-hero h1 {
    font-size: 2.5rem;
  }

  .addons-grid,
  .hosting-hero-stats,
  .performance-metrics,
  .pricing-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: none;
  }

  .comparison-table {
    overflow-x: auto;
  }
}

@media (max-width: 480px) {

  .app-hero-info h1,
  .hosting-hero h1,
  .store-hero h1 {
    font-size: 2rem;
  }

  .app-tagline,
  .hosting-hero p,
  .store-hero p {
    font-size: 1.1rem;
  }

  .app-cta-buttons {
    flex-direction: column;
  }
}

.hosting-hero-content {
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
}

.infra-row {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(3, 1fr);
}

.infra-item h3 {
  color: #1f2937;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.provider-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.provider-badge {
  align-items: center;
  background: #f8fafc;
  border-radius: 10px;
  font-weight: 500;
  padding: 1rem 1.5rem;
}

.provider-badge,
.tech-stack {
  display: flex;
  gap: 0.75rem;
}

.tech-stack {
  flex-direction: column;
  list-style: none;
}

.tech-stack li {
  background: #f8fafc;
  border-radius: 8px;
  padding: 0.75rem;
}

.datacenter-map {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1.5rem;
}

.datacenter-map p {
  margin-bottom: 0.5rem;
}

.performance-metrics-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3rem;
}

.toggle-btn:hover {
  border-color: #875a7b;
}

.pricing-badge.basic {
  background: #dbeafe;
  color: #2563eb;
}

.pricing-badge.premium {
  background: linear-gradient(135deg, #f59e0b, #ea580c) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.pricing-features li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.75rem !important;
  padding: 0.5rem 0 !important;
  text-align: left !important;
  color: #4b5563 !important;
}

.pricing-badge.enterprise {
  background: #1f2937;
  color: #fff;
}

.price-display {
  align-items: baseline;
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.price-display .currency {
  color: #6b7280;
  font-size: 1.5rem;
}

.price-display .amount {
  color: #875a7b;
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0 0.25rem;
}

.price-display .period {
  color: #6b7280;
  font-size: 1.2rem;
}

.pricing-description {
  color: #6b7280;
  margin-bottom: 2rem;
}

.trial-note {
  color: #6b7280;
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
}

.pricing-addons h3 {
  color: #1f2937;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.addon-item {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.addon-item:hover {
  border-color: #875a7b;
  transform: translateY(-5px);
}

.addon-item strong {
  color: #1f2937;
  font-size: 1.2rem;
}

.addon-item span {
  color: #875a7b;
  font-size: 1.5rem;
  font-weight: 700;
}

.comparison-table-wrapper {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-top: 3rem;
  overflow-x: auto;
}

.comparison-table .feature-col {
  width: 40%;
}

.comparison-table .popular-col {
  background: hsla(0, 0%, 100%, 0.1);
}

.comparison-table .category-row td {
  background: #f8fafc;
  color: #875a7b;
  font-weight: 600;
  padding: 1rem 1.5rem;
}

@media (max-width: 1200px) {

  .addons-grid,
  .infra-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hosting-hero p {
    font-size: 1.1rem;
  }

  .hero-features-list {
    align-items: center;
    flex-direction: column;
  }

  .comparison-table-wrapper {
    overflow-x: scroll;
  }
}

.timelog-hero {
  margin-top: 50px;
  padding: 120px 0 80px;
  text-align: center;
}

.timelog-hero h1 {
  color: #1f2937;
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.timelog-hero p {
  color: #6b7280;
  font-size: 1.3rem;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}

.highlight {
  color: #875a7b;
  position: relative;
}

.hero-stat .stat-number {
  color: #875a7b;
  display: block;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-stat .stat-label {
  color: #6b7280;
  font-size: 1.1rem;
}

.time-entry-section {
  background: #fff;
  padding: 6rem 0;
}

.time-entry-layout {
  align-items: start;
  display: grid;
  gap: 4rem;
  grid-template-columns: 2fr 1fr;
}

.time-entry-form-wrapper {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 3rem;
}

.form-header h2 {
  color: #1f2937;
  font-family: Inter, sans-serif;
  font-size: 2.5rem;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.time-entry-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-control {
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  border-radius: 8px;
  font-size: 1rem;
  padding: 0.875rem;
  transition: all 0.3s;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #875a7b;
  box-shadow: 0 0 0 3px rgba(135, 90, 123, 0.1);
  outline: none;
}

.form-control:disabled {
  background: #f8fafc;
  color: #9ca3af;
  cursor: not-allowed;
}

.btn-icon {
  font-size: 1.2rem;
}

.quick-timer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timer-card {
  background: linear-gradient(135deg, #875a7b, #714b67);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(135, 90, 123, 0.25);
  color: #fff;
  padding: 2.5rem;
  text-align: center;
}

.timer-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.timer-display {
  font-family: monospace;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.timer-controls {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.btn-timer {
  backdrop-filter: blur(10px);
  background: hsla(0, 0%, 100%, 0.2);
  border: 2px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s;
}

.btn-timer:hover:not(:disabled) {
  background: hsla(0, 0%, 100%, 0.3);
  border-color: hsla(0, 0%, 100%, 0.5);
}

.btn-timer:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.current-task {
  align-items: center;
  background: hsla(0, 0%, 100%, 0.1);
  border-radius: 10px;
  display: flex;
  font-size: 0.95rem;
  gap: 0.5rem;
  padding: 1rem;
}

.task-indicator {
  font-size: 1.2rem;
}

.today-summary {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 2rem;
}

.today-summary h4 {
  color: #1f2937;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.summary-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.summary-item {
  align-items: center;
  background: #f8fafc;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
}

.summary-label {
  color: #6b7280;
  font-weight: 500;
}

.summary-value {
  color: #875a7b;
  font-size: 1.1rem;
  font-weight: 700;
}

.time-logs-section {
  background: #fff;
  padding: 6rem 0;
}

.logs-toolbar {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 2rem;
}

.logs-toolbar,
.search-controls {
  align-items: center;
  display: flex;
}

.search-controls {
  gap: 1rem;
}

.search-bar {
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  overflow: hidden;
}

.search-input {
  border: none;
  flex: 1;
  font-size: 1rem;
  font-size: 1.1rem;
  min-width: 300px;
  padding: 15px 25px;
}

.search-input,
.search-input:focus {
  outline: none;
}

.btn-export,
.btn-filters {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  color: #4b5563;
  cursor: pointer;
  font-weight: 500;
  padding: 1rem 1.5rem;
  transition: all 0.3s;
}

.btn-export:hover,
.btn-filters:hover {
  border-color: #875a7b;
  color: #875a7b;
}

.view-controls {
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
}

.view-btn {
  background: transparent;
  border: none;
  border-radius: 50px;
  border-radius: 6px;
  color: #6b7280;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: all 0.3s;
  transition: all 0.3s ease;
}

.view-btn.active {
  background: linear-gradient(135deg, #875a7b, #714b67);
  background: #875a7b;
  color: #fff;
}

.filters-panel {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: none;
  margin-bottom: 2rem;
  padding: 2rem;
}

.filters-panel.active {
  display: block;
}

.filters-grid {
  align-items: end;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 2rem;
}

.filter-group label {
  color: #4b5563;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.date-range,
.hours-range {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.date-range span,
.hours-range span {
  color: #6b7280;
  font-weight: 500;
}

.filter-actions {
  display: flex;
  gap: 1rem;
}

.btn-apply-filters,
.btn-clear-filters {
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  padding: 1rem 2rem;
  transition: all 0.3s;
}

.btn-apply-filters {
  background: linear-gradient(135deg, #875a7b, #714b67);
  border: none;
  color: #fff;
}

.btn-apply-filters:hover {
  transform: translateY(-2px);
}

.btn-clear-filters {
  background: #fff;
  background: none;
  border: none;
  color: #6b7280;
  color: #714b67;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: underline;
}

.btn-clear-filters:hover {
  border-color: #875a7b;
  color: #875a7b;
}

.logs-container {
  min-height: 600px;
}

.logs-view {
  display: none;
}

.logs-view.active {
  display: block;
}

.logs-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.time-entry {
  animation: fadeInUp 0.3s ease-out;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}

.time-entry:hover {
  border-color: #875a7b;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.entry-header {
  align-items: start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.entry-main {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.task-name {
  color: #1f2937;
  font-size: 1.4rem;
  margin: 0;
}

.project-badge {
  background: linear-gradient(135deg, #875a7b, #714b67);
  border-radius: 50px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  width: fit-content;
}

.entry-time {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: right;
}

.hours-worked {
  color: #875a7b;
  font-size: 1.5rem;
  font-weight: 700;
}

.entry-date {
  color: #6b7280;
  font-size: 0.95rem;
}

.entry-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.entry-description {
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.entry-meta {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.entry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  color: #6b7280;
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
}

.entry-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-delete,
.btn-edit {
  background: transparent;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s;
}

.btn-edit {
  color: #875a7b;
}

.btn-edit:hover {
  background: #875a7b;
  border-color: #875a7b;
  color: #fff;
}

.btn-delete {
  color: #dc2626;
}

.btn-delete:hover {
  background: #dc2626;
  border-color: #dc2626;
  color: #fff;
}

.timeline-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-date {
  align-items: center;
  background: #f8fafc;
  border-left: 4px solid #875a7b;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}

.timeline-date h4 {
  color: #1f2937;
  margin: 0;
}

.date-summary {
  color: #875a7b;
  font-weight: 600;
}

.timeline-entries {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 2rem;
}

.timeline-entry {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  display: grid;
  gap: 2rem;
  grid-template-columns: 150px 1fr;
  padding: 1.5rem;
}

.timeline-time {
  color: #6b7280;
  font-size: 0.95rem;
  font-weight: 600;
}

.timeline-content h5 {
  color: #1f2937;
  font-size: 1.2rem;
  margin: 0;
}

.timeline-project {
  color: #875a7b;
  font-size: 0.9rem;
  font-weight: 600;
}

.timeline-hours {
  color: #6b7280;
  font-size: 0.9rem;
}

.summary-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.summary-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.summary-card:hover {
  border-color: #875a7b;
  transform: translateY(-5px);
}

.summary-card h4 {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.summary-value-large {
  color: #875a7b;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.summary-change {
  color: #6b7280;
  font-size: 0.9rem;
}

.summary-change.positive {
  color: #10b981;
}

.pagination-section {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.pagination-btn {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #4b5563;
  color: #4a5568;
  cursor: pointer;
  font-weight: 600;
  padding: 10px 18px;
  transition: all 0.3s;
  transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
  background: #fcf8fa;
  border-color: #714b67;
  color: #875a7b;
  color: #714b67;
}

.pagination-btn.active {
  background: linear-gradient(135deg, #875a7b, #714b67);
  background: #714b67;
  border-color: #714b67;
  color: #fff;
}

.pagination-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

@media (max-width: 1200px) {

  .hero-stats,
  .time-entry-layout {
    gap: 2rem;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .timelog-hero h1 {
    font-size: 2.5rem;
  }

  .timelog-hero p {
    font-size: 1.1rem;
  }

  .logs-toolbar {
    align-items: stretch;
  }

  .logs-toolbar,
  .search-controls {
    flex-direction: column;
    gap: 1rem;
  }

  .search-input {
    min-width: auto;
  }

  .filters-grid {
    grid-template-columns: 1fr;
  }

  .entry-header {
    flex-direction: column;
    gap: 1rem;
  }

  .entry-time {
    text-align: left;
  }

  .entry-meta {
    align-items: start;
    flex-direction: column;
    gap: 1rem;
  }

  .timeline-entry {
    gap: 1rem;
  }

  .summary-grid,
  .timeline-entry {
    grid-template-columns: 1fr;
  }

  .timer-controls {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .timelog-hero h1 {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .modal-body,
  .modal-header,
  .time-entry-form-wrapper,
  .timer-card,
  .today-summary {
    padding: 1.5rem;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading:after {
  animation: spin 0.8s linear infinite;
  border: 2px solid #875a7b;
  border-radius: 50%;
  border-top-color: transparent;
  content: "";
  height: 20px;
  left: 50%;
  margin: -10px 0 0 -10px;
  position: absolute;
  top: 50%;
  width: 20px;
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}

.seo-hero {
  background: linear-gradient(135deg, #fff, #f8fafc);
  margin-top: 80px;
  padding: 120px 0 80px;
  text-align: center;
}

.seo-hero .hero-badge {
  background: linear-gradient(135deg, #875a7b, #714b67);
  border-radius: 50px;
  color: #fff;
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2rem;
  padding: 0.75rem 1.5rem;
}

.seo-hero h1 {
  color: #1f2937;
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.seo-hero .hero-subtitle {
  color: #6b7280;
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}

.hero-stats-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.stat-pill {
  align-items: center;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
  transition: all 0.3s;
}

.stat-pill:hover {
  border-color: #875a7b;
  box-shadow: 0 8px 25px rgba(135, 90, 123, 0.15);
  transform: translateY(-5px);
}

.stat-pill .stat-number {
  color: #875a7b;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-pill .stat-label {
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-trust-badges {
  margin-top: 3rem;
  text-align: center;
}

.hero-trust-badges p {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.trust-badge {
  background: #fff;
  border: 2px solid #875a7b;
  border-radius: 50px;
  color: #875a7b;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.feature-list li {
  color: #4b5563;
  font-size: 0.95rem;
  padding: 0.5rem 0;
}

.states-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 3rem;
}

.state-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.state-card:hover {
  border-color: #875a7b;
  box-shadow: 0 8px 25px rgba(135, 90, 123, 0.15);
  transform: translateY(-5px);
}

.state-icon {
  font-size: 3rem;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.state-card h4 {
  color: #1f2937;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.state-card p {
  color: #875a7b;
  font-weight: 600;
  margin: 0;
}

.states-cta {
  margin-top: 3rem;
  text-align: center;
}

.states-note {
  color: #6b7280;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.video-thumbnail:hover .play-button {
  background: #fff;
  transform: scale(1.1);
}

.rating {
  color: #f59e0b;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.testimonial-stats .stat {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  color: #875a7b;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
}

.brands-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.brand-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s;
}

.brand-card:hover {
  border-color: #875a7b;
  transform: translateY(-5px);
}

.brand-logo {
  color: #1f2937;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.brand-industry {
  color: #6b7280;
  font-size: 0.9rem;
  margin: 0;
}

.process-step:nth-child(2),
.process-step:nth-child(5) {
  border: 1px solid #714b67;
  box-shadow: 0 8px 20px rgba(113, 75, 103, 0.08);
}

.step-content,
.step-content h4 {
  display: block;
  width: 100%;
}

.step-content h4 {
  color: #1f2937;
  font-family: Caveat, cursive;
  font-size: 1.5rem;
  line-height: 1.2;
  /* margin: 0 0 1rem; */
  max-width: none;
  text-align: left;
}

.step-content p {
  color: #4b5563;
  display: block;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

.highlight-card {
  background: linear-gradient(135deg, #875a7b, #714b67);
}

.highlight-card,
.highlight-card h4,
.highlight-card p {
  color: #111;
}

.trust-indicators {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
}

.trust-indicators .trust-badge {
  background: none;
  border: none;
  color: #4b5563;
  display: block;
  font-weight: 500;
  padding: 0.5rem 0;
}

@media (max-width: 1200px) {
  .seo-hero h1 {
    font-size: 3rem;
  }

  .hero-stats-inline {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .seo-hero {
    padding: 80px 0 60px;
  }

  .seo-hero h1 {
    font-size: 2.5rem;
  }

  .seo-hero .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-stats-inline {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-pill {
    flex-direction: row;
    justify-content: space-between;
    padding: 1.5rem;
    width: 100%;
  }

  .stat-pill .stat-number {
    font-size: 1rem;
  }

  .states-grid {
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .video-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .brands-grid {
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .process-step {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin: 0 auto;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .seo-hero h1 {
    font-size: 2rem;
  }

  .seo-hero .hero-subtitle {
    font-size: 1rem;
  }

  .btn-primary-large,
  .btn-secondary-large {
    width: 100%;
  }

  .trust-logos {
    flex-direction: column;
    gap: 0.75rem;
  }

  .video-thumbnail {
    height: 200px;
  }

  .play-button {
    font-size: 1.5rem;
    height: 60px;
    width: 60px;
  }
}

.erp-hero {
  background: linear-gradient(135deg, #fff, #f8fafc);
  padding: 120px 0 80px;
  text-align: center;
}

.erp-hero .hero-badge {
  background: linear-gradient(135deg, #875a7b, #714b67);
  border-radius: 50px;
  color: #fff;
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2rem;
  padding: 0.75rem 1.5rem;
}

.erp-hero h1 {
  color: #1f2937;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.erp-hero h1 .highlight {
  color: #875a7b;
  position: relative;
}

.erp-hero .hero-subtitle {
  color: #6b7280;
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 0 auto 3rem;
  max-width: 900px;
}

.industries-detailed-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  margin-bottom: 3rem;
}

.industry-card>p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.industry-stat {
  border-top: 2px solid #e2e8f0;
  color: #875a7b;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.usa-coverage-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-bottom: 3rem;
}

.state-coverage-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  transition: all 0.3s ease;
  padding: 1rem;
}

.state-coverage-card:hover {
  border-color: #875a7b;
  box-shadow: 0 10px 30px rgba(135, 90, 123, 0.15);
  transform: translateY(-5px);
}

.state-header {
  align-items: center;
  border-bottom: 2px solid #e2e8f0;
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  padding-bottom: 1rem;
}

.state-header h4 {
  color: #1f2937;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.city-badge {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  color: #875a7b;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.city-badge:hover {
  background: #875a7b;
  border-color: #875a7b;
  color: #fff;
}

.state-stats {
  border-top: 2px solid #e2e8f0;
  display: flex;
  gap: 0.5rem;
  padding-top: 1rem;
}

.state-stats .stat-item {
  color: #4b5563;
  font-size: 0.9rem;
  font-weight: 500;
}

.state-stats .stat-item:before {
  color: #875a7b;
  content: "✓ ";
  font-weight: 700;
}

.coverage-cta {
  margin-top: 4rem;
  text-align: center;
}

.coverage-note {
  color: #6b7280;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-primary-large .btn-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.btn-primary-large:hover .btn-icon {
  transform: translateX(5px);
}

.btn-secondary-large {
  align-items: center;
  background: #fff;
  border: 2px solid #875a7b;
  border-radius: 50px;
  color: #875a7b;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.1rem;
  font-weight: 600;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary-large:hover {
  background: #875a7b;
  color: #fff;
  transform: translateY(-2px);
}

.cta-buttons {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.form-note {
  color: #6b7280;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-top: 1rem;
  text-align: center;
}

@media (max-width: 1200px) {
  .erp-hero h1 {
    font-size: 3rem;
  }

  .industries-detailed-grid,
  .usa-coverage-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .erp-hero {
    padding: 80px 0 60px;
  }

  .erp-hero h1 {
    font-size: 2.5rem;
  }

  .erp-hero .hero-subtitle {
    font-size: 1.1rem;
  }

  .industries-detailed-grid,
  .usa-coverage-grid {
    grid-template-columns: 1fr;
  }

  .state-header {
    flex-direction: column;
    text-align: center;
  }

  .cities-list {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .erp-hero h1 {
    font-size: 2rem;
  }

  .erp-hero .hero-subtitle {
    font-size: 1rem;
  }

  .city-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

.realestate-hero-white {
  background: #fff;
  margin-top: 80px;
  overflow: hidden;
  padding: 120px 0 100px;
  position: relative;
}

.realestate-hero-white .hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.realestate-hero-white h1 {
  color: #1f2937;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.realestate-hero-white h1 .highlight {
  color: #875a7b;
}

.realestate-hero-white .hero-subtitle {
  color: #6b7280;
  font-size: 1.3rem;
  margin-bottom: 3rem;
}

.property-search-bar {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin-bottom: 3rem;
  padding: 2rem;
}

.search-tabs {
  border-bottom: 2px solid #e2e8f0;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.search-tab {
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.search-tab.active {
  color: #875a7b;
}

.search-tab.active:after {
  background: #875a7b;
  bottom: -2px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.search-input-group {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: 2fr 1fr 1fr auto;
}

.search-input,
.search-select {
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
}

.search-input:focus,
.search-select:focus {
  border-color: #875a7b;
  outline: none;
}

.search-button {
  align-items: center;
  background: linear-gradient(135deg, #875a7b, #714b67);
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  font-weight: 600;
  gap: 0.5rem;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.search-button:hover {
  box-shadow: 0 4px 15px rgba(135, 90, 123, 0.3);
  transform: translateY(-2px);
}

.advanced-filters-toggle {
  align-items: center;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  color: #875a7b;
  cursor: pointer;
  display: flex;
  font-weight: 600;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.75rem;
  transition: all 0.3s ease;
}

.advanced-filters-toggle:hover {
  background: #875a7b;
  border-color: #875a7b;
  color: #fff;
}

.stat-badge:hover {
  border-color: #875a7b;
  box-shadow: 0 4px 15px rgba(135, 90, 123, 0.15);
  transform: translateY(-2px);
}

.stat-badge .stat-number {
  color: #875a7b;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-badge .stat-label {
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 500;
}

.advanced-filters-panel {
  background: #f8fafc;
  border-bottom: 2px solid #e2e8f0;
  display: none;
  padding: 3rem 0;
}

.advanced-filters-panel.active {
  display: block;
}

.filters-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
}

.filters-header {
  align-items: center;
  border-bottom: 2px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

.filters-header h3 {
  color: #1f2937;
  font-size: 1.5rem;
  margin: 0;
}

.clear-filters-btn {
  background: #ef4444;
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.clear-filters-btn:hover {
  background: #dc2626;
}

.filter-label {
  color: #1f2937;
  font-size: 0.95rem;
  font-weight: 600;
}

.amenities-section {
  margin-bottom: 2rem;
}

.amenities-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin-top: 1rem;
}

.filters-actions {
  border-top: 2px solid #e2e8f0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 2rem;
}

.properties-listing-section {
  padding: 4rem 0;
}

.listing-header {
  align-items: center;
  border-bottom: 2px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

.listing-info h2 {
  color: #1f2937;
  font-size: 2rem;
  margin: 0 0 0.5rem;
}

.listing-info p {
  color: #6b7280;
  margin: 0;
}

.listing-controls {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.sort-select {
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
}

.view-toggle {
  background: #f8fafc;
  border-radius: 8px;
  display: flex;
  gap: 0.5rem;
  padding: 0.25rem;
}

.properties-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  margin-bottom: 3rem;
}

.properties-grid.list-view {
  grid-template-columns: 1fr;
}

.properties-grid.list-view .property-card {
  display: flex;
  flex-direction: row;
}

.properties-grid.list-view .property-image {
  flex-shrink: 0;
  width: 300px;
}

.properties-grid.list-view .property-content {
  flex: 1;
}

.property-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.property-card:hover {
  border-color: #875a7b;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.property-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.property-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
}

.property-card:hover .property-image img {
  transform: scale(1.1);
}

.property-placeholder {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  transition: transform 0.3s ease;
  width: 100%;
}

.property-card:hover .property-placeholder {
  transform: scale(1.05);
}

.placeholder-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.placeholder-text {
  font-size: 1.5rem;
  font-weight: 600;
  opacity: 0.95;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.property-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  left: 1rem;
  position: absolute;
  top: 1rem;
}

.badge-sale {
  background: rgba(16, 185, 129, 0.9);
  color: #fff;
}

.badge-rent {
  background: rgba(59, 130, 246, 0.9);
  color: #fff;
}

.badge-featured {
  background: rgba(245, 158, 11, 0.9);
  color: #fff;
}

.badge-new {
  background: rgba(239, 68, 68, 0.9);
  background: #ed8936;
  border-radius: 4px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
}

.badge-luxury {
  background: rgba(135, 90, 123, 0.9);
  color: #fff;
}

.favorite-btn {
  align-items: center;
  background: hsla(0, 0%, 100%, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  font-size: 1.5rem;
  height: 40px;
  justify-content: center;
  position: absolute;
  right: 1rem;
  top: 1rem;
  transition: all 0.3s ease;
  width: 40px;
}

.favorite-btn:hover {
  background: #fff;
  transform: scale(1.1);
}

.favorite-btn.active {
  color: #ef4444;
}

.property-content {
  padding: 1.5rem;
}

.property-price {
  color: #875a7b;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.price-period {
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  font-weight: 600;
}

.property-title {
  color: #1f2937;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.property-location {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.property-features {
  border-bottom: 1px solid #e2e8f0;
  gap: 1rem;
  padding-bottom: 1rem;
}

.property-amenities,
.property-features {
  display: flex;
  margin-bottom: 1rem;
}

.property-amenities {
  flex-wrap: wrap;
  gap: 0.5rem;
}

.amenity-tag {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  color: #4b5563;
  font-size: 0.85rem;
  padding: 0.25rem 0.75rem;
}

.property-footer {
  border-top: 1px solid #e2e8f0;
  justify-content: space-between;
  padding-top: 1rem;
}

.agent-info,
.property-footer {
  align-items: center;
  display: flex;
}

.agent-info {
  gap: 0.75rem;
}

.agent-avatar {
  border-radius: 50%;
  height: 40px;
  object-fit: cover;
  width: 40px;
}

.agent-name {
  color: #1f2937;
  font-size: 0.9rem;
  font-weight: 600;
}

.btn-view-details {
  background: linear-gradient(135deg, #875a7b, #714b67);
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-view-details:hover {
  box-shadow: 0 4px 15px rgba(135, 90, 123, 0.3);
  transform: translateY(-2px);
}

.page-btn {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  color: #4b5563;
  cursor: pointer;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  transition: all 0.3s ease;
}

.page-btn:hover:not(:disabled) {
  background: #f8fafc;
  border-color: #875a7b;
  color: #875a7b;
}

.page-btn.active {
  background: #875a7b;
  border-color: #875a7b;
  color: #fff;
}

.page-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

@media (max-width: 1200px) {
  .realestate-hero-white h1 {
    font-size: 3rem;
  }

  .search-input-group {
    grid-template-columns: 1fr;
  }

  .properties-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .realestate-hero-white {
    padding: 80px 0 60px;
  }

  .realestate-hero-white h1 {
    font-size: 2.5rem;
  }

  .realestate-hero-white .hero-subtitle {
    font-size: 1.1rem;
  }

  .property-search-bar {
    padding: 1.5rem;
  }

  .search-tabs {
    flex-direction: column;
  }

  .search-tab {
    padding: 0.75rem 1rem;
    text-align: center;
  }

  .listing-header {
    align-items: flex-start;
    gap: 1rem;
  }

  .listing-controls,
  .listing-header {
    flex-direction: column;
  }

  .listing-controls,
  .sort-select {
    width: 100%;
  }

  .properties-grid {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .realestate-hero-white h1 {
    font-size: 2rem;
  }

  .stat-badge {
    padding: 0.75rem 1rem;
  }

  .stat-badge .stat-number {
    font-size: 2rem;
  }

  .search-button {
    justify-content: center;
    width: 100%;
  }

  .property-features {
    flex-direction: column;
    gap: 0.5rem;
  }

  .property-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
  }

  .btn-view-details {
    width: 100%;
  }
}

.property-detail-header {
  background: #fff;
  border-bottom: 2px solid #e2e8f0;
  padding: 2rem 0 1.5rem;
}

.breadcrumb {
  align-items: center;
  color: #6b7280;
  display: flex;
  font-size: 0.9rem;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: #875a7b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #714b67;
}

.breadcrumb span:last-child {
  color: #1f2937;
  font-weight: 500;
}

.property-header-content {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr auto;
}

.property-badges-header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.badge-verified {
  background: rgba(16, 185, 129, 0.1);
  background: #48bb78;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 4px;
  color: #059669;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
}

.property-detail-header h1 {
  color: #1f2937;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.property-address {
  color: #6b7280;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.property-meta {
  color: #6b7280;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  gap: 1.5rem;
}

.meta-item {
  align-items: center;
  display: flex;
  gap: 0.25rem;
}

.property-price-section {
  text-align: right;
}

.price-tag {
  color: #875a7b;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.price-details {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.icon-btn {
  align-items: center;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  font-size: 1.3rem;
  height: 48px;
  justify-content: center;
  transition: all 0.3s ease;
  width: 48px;
}

.icon-btn:hover {
  border-color: #875a7b;
  box-shadow: 0 4px 12px rgba(135, 90, 123, 0.15);
  color: #875a7b;
  transform: translateY(-2px);
}

.icon-btn.active {
  background: #875a7b;
  border-color: #875a7b;
  color: #fff;
}

.image-gallery-section {
  background: #f8fafc;
  padding: 2rem 0;
}

.gallery-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: 2fr 1fr;
  margin-bottom: 1rem;
}

.main-image {
  border-radius: 12px;
  cursor: pointer;
  height: 500px;
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.gallery-item {
  border-radius: 12px;
  cursor: pointer;
  height: 242px;
  overflow: hidden;
}

.gallery-placeholder {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease;
  width: 100%;
}

.gallery-placeholder:hover {
  transform: scale(1.02);
}

.gallery-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.gallery-label {
  font-size: 1.2rem;
  font-weight: 600;
  opacity: 0.95;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.view-all-photos-btn {
  align-items: center;
  background: linear-gradient(135deg, #875a7b, #714b67);
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  font-weight: 600;
  gap: 0.5rem;
  margin: 0 auto;
  padding: 0.875rem 2rem;
  transition: all 0.3s ease;
}

.view-all-photos-btn:hover {
  box-shadow: 0 8px 20px rgba(135, 90, 123, 0.3);
  transform: translateY(-2px);
}

.property-details-section {
  padding: 3rem 0;
}

.details-layout {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr 400px;
}

.detail-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  margin-bottom: 2rem;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.detail-card:hover {
  border-color: #875a7b;
  box-shadow: 0 8px 24px rgba(135, 90, 123, 0.1);
}

.detail-card .section-title {
  border-bottom: 2px solid #e2e8f0;
  color: #1f2937;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
}

.overview-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.overview-item {
  align-items: center;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.overview-item:hover {
  background: #fff;
  border-color: #875a7b;
  box-shadow: 0 4px 12px rgba(135, 90, 123, 0.1);
  transform: translateY(-2px);
}

.overview-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.overview-content {
  display: flex;
  flex-direction: column;
}

.overview-label {
  color: #6b7280;
  font-size: 0.85rem;
  font-weight: 500;
}

.overview-value {
  color: #1f2937;
  font-size: 1.3rem;
  font-weight: 700;
}

.description-content {
  color: #4b5563;
  line-height: 1.8;
}

.description-content p {
  margin-bottom: 1.25rem;
}

.features-tabs {
  border-bottom: 2px solid #e2e8f0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.feature-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: #6b7280;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: -2px;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
}

.feature-tab.active,
.feature-tab:hover {
  color: #875a7b;
}

.feature-tab.active {
  border-bottom-color: #875a7b;
}

.features-content {
  display: none;
}

.features-content.active {
  display: block;
}

.features-list {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-column h4 {
  color: #1f2937;
  font-family: Inter, sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.feature-column ul {
  list-style: none;
  padding: 0;
}

.feature-column ul li {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0.5rem 0;
}

.details-table {
  display: grid;
  gap: 0;
}

.detail-row {
  border-bottom: 1px solid #e2e8f0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 1rem;
  transition: background 0.2s ease;
}

.detail-row:hover {
  background: #f8fafc;
}

.detail-row:last-child {
  border-bottom: none;
}

.location-content {
  gap: 2rem;
}

.location-content,
.map-placeholder {
  display: flex;
  flex-direction: column;
}

.map-placeholder {
  align-items: center;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  background: #f8f9fa;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  gap: 1rem;
  height: 400px;
  height: 100%;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  width: 100%;
}

.map-icon {
  font-size: 4rem;
}

.map-address {
  color: #1f2937;
  font-weight: 600;
  text-align: center;
}

.nearby-places h3 {
  color: #1f2937;
  font-family: Inter, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.places-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.place-item {
  align-items: center;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  gap: 1rem;
  padding: 1rem;
  transition: all 0.3s ease;
}

.place-item:hover {
  border-color: #875a7b;
  box-shadow: 0 4px 12px rgba(135, 90, 123, 0.1);
  transform: translateY(-2px);
}

.place-icon {
  font-size: 2rem;
}

.place-info {
  display: flex;
  flex-direction: column;
}

.place-name {
  color: #1f2937;
  font-size: 0.95rem;
  font-weight: 600;
}

.place-distance {
  color: #6b7280;
  font-size: 0.85rem;
}

.calculator-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.calculator-inputs {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calc-input-group label {
  color: #4b5563;
  font-size: 0.95rem;
  font-weight: 600;
}

.calc-input {
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  padding: 0.875rem;
  transition: all 0.3s ease;
}

.calc-input:focus {
  border-color: #875a7b;
  box-shadow: 0 0 0 3px rgba(135, 90, 123, 0.1);
  outline: none;
}

.calculator-result {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
}

.result-item:last-child {
  border-bottom: none;
}

.result-value {
  color: #875a7b;
  font-size: 1.5rem;
  font-weight: 700;
}

.details-sidebar {
  align-self: start;
  position: sticky;
  top: 100px;
}

.sidebar-card:hover {
  border-color: #875a7b;
  box-shadow: 0 8px 24px rgba(135, 90, 123, 0.1);
}

.agent-profile {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  text-align: center;
}

.agent-avatar-large {
  margin-bottom: 1rem;
}

.agent-info-large h4 {
  color: #1f2937;
  font-family: Inter, sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.agent-title {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.agent-rating {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.rating-text {
  color: #6b7280;
  font-size: 0.85rem;
}

.agent-stats {
  border-bottom: 2px solid #e2e8f0;
  border-top: 2px solid #e2e8f0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 1.5rem;
  padding: 1.5rem 0;
}

.agent-stats .stat-item {
  text-align: center;
}

.agent-stats .stat-value {
  color: #875a7b;
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.agent-stats .stat-label {
  color: #6b7280;
  display: block;
  font-size: 0.85rem;
}

.agent-contact {
  flex-direction: column;
}

.agent-contact,
.contact-btn {
  display: flex;
  gap: 0.75rem;
}

.contact-btn {
  align-items: center;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  color: #1f2937;
  font-weight: 500;
  padding: 0.875rem 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #fff;
  border-color: #875a7b;
  box-shadow: 0 4px 12px rgba(135, 90, 123, 0.1);
  color: #875a7b;
  transform: translateY(-2px);
}

.full-width {
  width: 100%;
}

.quick-info-list,
.viewing-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  align-items: center;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  display: flex;
  gap: 1rem;
  padding: 0.875rem;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: #fff;
  border-color: #875a7b;
  transform: translateX(4px);
}

.info-icon {
  font-size: 1.8rem;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-label {
  color: #6b7280;
  font-size: 0.85rem;
}

.info-value {
  color: #1f2937;
  font-size: 1.1rem;
  font-weight: 700;
}

.share-buttons {
  flex-direction: column;
}

.share-btn-social,
.share-buttons {
  display: flex;
  gap: 0.75rem;
}

.share-btn-social {
  align-items: center;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  color: #1f2937;
  cursor: pointer;
  font-weight: 500;
  padding: 0.875rem 1rem;
  transition: all 0.3s ease;
}

.share-btn-social:hover {
  background: #f8fafc;
  border-color: #875a7b;
  box-shadow: 0 4px 12px rgba(135, 90, 123, 0.1);
  transform: translateY(-2px);
}

.share-btn-social span {
  font-size: 1.2rem;
}

.gallery-modal {
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}

.gallery-modal.active {
  display: block;
}

.gallery-modal-content {
  height: 100%;
  padding: 4rem;
  position: relative;
  width: 100%;
}

.gallery-close,
.gallery-modal-content {
  align-items: center;
  display: flex;
  justify-content: center;
}

.gallery-close {
  background: hsla(0, 0%, 100%, 0.1);
  border: 2px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  height: 48px;
  position: absolute;
  right: 2rem;
  top: 2rem;
  transition: all 0.3s ease;
  width: 48px;
  z-index: 10001;
}

.gallery-close:hover {
  background: hsla(0, 0%, 100%, 0.2);
  transform: rotate(90deg);
}

.gallery-nav {
  align-items: center;
  background: hsla(0, 0%, 100%, 0.1);
  border: 2px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 2rem;
  height: 56px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  width: 56px;
  z-index: 10001;
}

.gallery-nav:hover {
  background: hsla(0, 0%, 100%, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
  left: 2rem;
}

.gallery-nav.next {
  right: 2rem;
}

.gallery-main-image {
  border-radius: 12px;
  max-height: 80%;
  max-width: 90%;
  overflow: hidden;
}

.gallery-main-image .gallery-placeholder {
  height: 600px;
  width: 800px;
}

.gallery-counter {
  backdrop-filter: blur(10px);
  background: hsla(0, 0%, 100%, 0.1);
  border: 2px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 50px;
  bottom: 2rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  left: 50%;
  padding: 0.75rem 1.5rem;
  position: absolute;
  transform: translateX(-50%);
}

@media (max-width: 1200px) {
  .details-layout {
    gap: 2rem;
    grid-template-columns: 1fr 350px;
  }

  .gallery-layout {
    grid-template-columns: 1.5fr 1fr;
  }

  .property-detail-header h1 {
    font-size: 2rem;
  }

  .price-tag {
    font-size: 2.5rem;
  }
}

@media (max-width: 968px) {
  .property-detail-header {
    padding: 1.5rem 0 1rem;
  }

  .property-header-content {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .property-price-section {
    text-align: left;
  }

  .action-buttons {
    justify-content: flex-start;
  }

  .details-layout {
    gap: 2rem;
    grid-template-columns: 1fr;
  }

  .details-sidebar {
    position: static;
  }

  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .main-image {
    height: 400px;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-item {
    height: 150px;
  }

  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calculator-inputs,
  .features-list {
    grid-template-columns: 1fr;
  }

  .places-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-modal-content {
    padding: 2rem 1rem;
  }

  .gallery-main-image .gallery-placeholder {
    height: 400px;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .property-detail-header h1 {
    font-size: 1.75rem;
  }

  .property-address {
    font-size: 1rem;
  }

  .property-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .price-tag {
    font-size: 2rem;
  }

  .action-buttons {
    flex-direction: column;
  }

  .action-buttons,
  .action-buttons .btn-primary,
  .action-buttons .btn-secondary,
  .icon-btn {
    width: 100%;
  }

  .detail-card {
    padding: 1.5rem;
  }

  .detail-card .section-title {
    font-size: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item {
    height: 120px;
  }

  .main-image {
    height: 300px;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }

  .features-tabs {
    flex-direction: column;
  }

  .feature-tab {
    border-bottom: none;
    border-left: 3px solid transparent;
    text-align: left;
  }

  .feature-tab.active {
    border-bottom-color: transparent;
    border-left-color: #875a7b;
  }

  .detail-row {
    gap: 0.5rem;
    grid-template-columns: 1fr;
  }

  .detail-value {
    font-weight: 600;
    text-align: left;
  }

  .agent-stats,
  .places-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-card {
    padding: 1.5rem;
  }

  .gallery-nav {
    font-size: 1.5rem;
    height: 44px;
    width: 44px;
  }

  .gallery-nav.prev {
    left: 0.5rem;
  }

  .gallery-nav.next {
    right: 0.5rem;
  }

  .gallery-close {
    font-size: 1.5rem;
    height: 40px;
    right: 1rem;
    top: 1rem;
    width: 40px;
  }
}

.realestate2-hero {
  background: linear-gradient(135deg, #875a7b, #714b67 50%, #5a3a54);
  overflow: hidden;
  padding: 140px 0 100px;
  position: relative;
}

.realestate2-hero:before {
  background:
    radial-gradient(circle at 20% 50%,
      hsla(0, 0%, 100%, 0.1) 0,
      transparent 50%),
    radial-gradient(circle at 80% 80%,
      hsla(0, 0%, 100%, 0.05) 0,
      transparent 50%);
  content: "";
  pointer-events: none;
}

.hero-overlay,
.realestate2-hero:before {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.hero-overlay {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2));
}

.hero-content-premium {
  margin: 0 auto;
  max-width: 1000px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.hero-tagline {
  backdrop-filter: blur(10px);
  background: hsla(0, 0%, 100%, 0.15);
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  border-radius: 50px;
  color: #ffe066;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.5rem;
  text-transform: uppercase;
}

.hero-title-premium {
  color: #fff;
  font-family:
    Playfair Display,
    Caveat,
    serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.highlight-gradient {
  background: linear-gradient(135deg, #ffe066, gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(255, 224, 102, 0.3));
}

.hero-subtitle-premium {
  color: hsla(0, 0%, 100%, 0.9);
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.search-bar-premium {
  backdrop-filter: blur(20px);
  background: hsla(0, 0%, 100%, 0.98);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin-bottom: 3rem;
  padding: 2rem;
}

.search-tabs-premium {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.tab-premium {
  align-items: center;
  background: transparent;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  color: #4b5563;
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  font-weight: 600;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  transition: all 0.3s ease;
}

.tab-premium:hover {
  border-color: #875a7b;
  color: #875a7b;
  transform: translateY(-2px);
}

.tab-premium.active {
  background: linear-gradient(135deg, #875a7b, #714b67);
  border-color: #875a7b;
  box-shadow: 0 4px 15px rgba(135, 90, 123, 0.3);
  color: #fff;
}

.tab-icon {
  font-size: 1.2rem;
}

.search-inputs-premium {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.5fr 1fr 1fr auto;
}

.input-with-icon {
  align-items: center;
  display: flex;
  position: relative;
}

.input-icon {
  font-size: 1.2rem;
  left: 1rem;
  position: absolute;
  z-index: 2;
}

.search-input-premium,
.search-select-premium {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  padding: 1rem 1rem 1rem 3rem;
  transition: all 0.3s ease;
  width: 100%;
}

.search-input-premium:focus,
.search-select-premium:focus {
  border-color: #875a7b;
  box-shadow: 0 0 0 4px rgba(135, 90, 123, 0.1);
  outline: none;
}

.search-btn-premium {
  align-items: center;
  background: linear-gradient(135deg, #875a7b, #714b67);
  border: none;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  font-weight: 600;
  gap: 0.75rem;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.search-btn-premium:hover {
  box-shadow: 0 8px 25px rgba(135, 90, 123, 0.4);
  transform: translateY(-2px);
}

.btn-arrow {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.search-btn-premium:hover .btn-arrow {
  transform: translateX(4px);
}

.hero-stats-premium {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.stat-item-premium {
  text-align: center;
}

.stat-number-premium {
  color: #ffe066;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(255, 224, 102, 0.3);
}

.stat-label-premium {
  color: hsla(0, 0%, 100%, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
}

.stat-divider {
  background: hsla(0, 0%, 100%, 0.2);
  height: 40px;
  width: 1px;
}

.quick-filters-section {
  background: #f8fafc;
  border-bottom: 2px solid #e2e8f0;
  padding: 2rem 0;
}

.filters-bar-premium {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.filter-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-chip {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  color: #4b5563;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.filter-chip:hover {
  border-color: #875a7b;
  color: #875a7b;
  transform: translateY(-2px);
}

.filter-chip.active {
  background: linear-gradient(135deg, #875a7b, #714b67);
  border-color: #875a7b;
  box-shadow: 0 4px 15px rgba(135, 90, 123, 0.25);
  color: #fff;
}

.advanced-filter-btn {
  align-items: center;
  background: #fff;
  border: 2px solid #875a7b;
  border-radius: 12px;
  color: #875a7b;
  cursor: pointer;
  display: flex;
  font-weight: 600;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.advanced-filter-btn:hover {
  background: #875a7b;
  box-shadow: 0 4px 15px rgba(135, 90, 123, 0.3);
  color: #fff;
  transform: translateY(-2px);
}

.featured-properties-premium {
  background: linear-gradient(180deg, #f8fafc, #fff);
  padding: 5rem 0;
}

.section-header-premium {
  align-items: flex-end;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.section-header-premium.centered {
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.section-title-group {
  flex: 1;
}

.section-badge {
  background: rgba(135, 90, 123, 0.1);
  border: 1px solid rgba(135, 90, 123, 0.2);
  border-radius: 50px;
  color: #875a7b;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  padding: 0.5rem 1.25rem;
  text-transform: uppercase;
}

.section-title-premium {
  color: #1f2937;
  font-family:
    Playfair Display,
    Caveat,
    serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-subtitle-premium {
  color: #6b7280;
  font-size: 1.1rem;
  line-height: 1.6;
}

.section-controls {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.sort-select-premium {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  color: #4b5563;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.875rem 1.5rem;
  transition: all 0.3s ease;
}

.sort-select-premium:hover {
  border-color: #875a7b;
}

.view-switcher {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  gap: 0.5rem;
  padding: 0.25rem;
}

.view-btn-premium {
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  font-size: 1.2rem;
  height: 40px;
  justify-content: center;
  transition: all 0.3s ease;
  width: 40px;
}

.view-btn-premium:hover {
  background: #f8fafc;
  color: #875a7b;
}

.view-btn-premium.active {
  background: linear-gradient(135deg, #875a7b, #714b67);
  box-shadow: 0 2px 8px rgba(135, 90, 123, 0.3);
  color: #fff;
}

.properties-grid-premium {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  margin-bottom: 3rem;
}

.properties-grid-premium.masonry-view {
  grid-auto-rows: 50px;
  grid-template-columns: repeat(3, 1fr);
}

.properties-grid-premium.masonry-view .property-card-premium {
  grid-row: span 10;
}

.properties-grid-premium.masonry-view .property-card-premium.featured-large {
  grid-row: span 12;
}

.property-card-premium {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-card-premium:hover {
  box-shadow: 0 12px 40px rgba(135, 90, 123, 0.25);
  transform: translateY(-8px);
}

.property-card-premium.featured-large {
  grid-column: span 2;
}

.property-image-premium {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.property-card-premium.featured-large .property-image-premium {
  height: 420px;
}

.image-overlay-premium {
  height: 100%;
  position: relative;
  width: 100%;
}

.property-placeholder-premium {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  transition: transform 0.4s ease;
  width: 100%;
}

.property-card-premium:hover .property-placeholder-premium {
  transform: scale(1.1);
}

.placeholder-icon-premium {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
  font-size: 5rem;
}

.property-tags-premium {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  left: 1.25rem;
  position: absolute;
  top: 1.25rem;
  z-index: 3;
}

.tag-premium {
  backdrop-filter: blur(10px);
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
}

.tag-premium.luxury {
  background: rgba(220, 38, 38, 0.9);
  color: #fff;
}

.tag-premium.featured {
  background: rgba(255, 224, 102, 0.9);
  color: #1f2937;
}

.tag-premium.sale {
  background: rgba(16, 185, 129, 0.9);
  color: #fff;
}

.tag-premium.rent {
  background: rgba(59, 130, 246, 0.9);
  color: #fff;
}

.tag-premium.hot {
  background: rgba(249, 115, 22, 0.9);
  color: #fff;
}

.tag-premium.new {
  background: rgba(139, 92, 246, 0.9);
  color: #fff;
}

.favorite-btn-premium {
  align-items: center;
  backdrop-filter: blur(10px);
  background: hsla(0, 0%, 100%, 0.95);
  border: none;
  border-radius: 50%;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  font-size: 1.5rem;
  height: 48px;
  justify-content: center;
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  transition: all 0.3s ease;
  width: 48px;
  z-index: 3;
}

.favorite-btn-premium:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: scale(1.1);
}

.favorite-btn-premium.active {
  color: #ef4444;
}

.property-overlay-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
  bottom: 0;
  display: flex;
  gap: 0.75rem;
  left: 0;
  opacity: 0;
  padding: 1.5rem;
  position: absolute;
  right: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 2;
}

.property-card-premium:hover .property-overlay-info {
  opacity: 1;
  transform: translateY(0);
}

.quick-view-btn,
.tour-btn {
  backdrop-filter: blur(10px);
  background: hsla(0, 0%, 100%, 0.95);
  border: none;
  border-radius: 10px;
  color: #1f2937;
  cursor: pointer;
  flex: 1;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem;
  transition: all 0.3s ease;
}

.quick-view-btn:hover,
.tour-btn:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.property-content-premium {
  padding: 1.75rem;
}

.property-header-premium {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.price-premium {
  color: #875a7b;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.property-type-badge {
  background: rgba(135, 90, 123, 0.1);
  border-radius: 50px;
  color: #875a7b;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
}

.property-title-premium {
  color: #1f2937;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.property-location-premium {
  align-items: center;
  color: #6b7280;
  display: flex;
  font-size: 0.95rem;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.location-icon {
  font-size: 1.1rem;
}

.property-specs-premium {
  align-items: center;
  background: #f8fafc;
  border-radius: 12px;
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1.25rem;
}

.spec-item-premium {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.25rem;
}

.spec-icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.spec-value {
  color: #1f2937;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}

.spec-label {
  color: #6b7280;
  font-size: 0.85rem;
  font-weight: 500;
}

.spec-divider {
  background: #e2e8f0;
  height: 40px;
  width: 1px;
}

.property-features-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.feature-tag {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  color: #4b5563;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.feature-tag:hover {
  border-color: #875a7b;
  color: #875a7b;
}

.property-footer-premium {
  border-top: 2px solid #f8fafc;
  justify-content: space-between;
  padding-top: 1.25rem;
}

.agent-mini,
.property-footer-premium {
  align-items: center;
  display: flex;
}

.agent-mini {
  gap: 0.75rem;
}

.agent-avatar-mini {
  align-items: center;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 0.9rem;
  font-weight: 700;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.agent-name-mini {
  color: #4b5563;
  font-size: 0.95rem;
  font-weight: 600;
}

.btn-details-premium {
  align-items: center;
  background: linear-gradient(135deg, #875a7b, #714b67);
  border: none;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-weight: 600;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-details-premium:hover {
  box-shadow: 0 6px 20px rgba(135, 90, 123, 0.35);
  transform: translateY(-2px);
}

.btn-details-premium .arrow {
  transition: transform 0.3s ease;
}

.btn-details-premium:hover .arrow {
  transform: translateX(4px);
}

.load-more-section {
  padding-top: 2rem;
  text-align: center;
}

.load-more-btn {
  align-items: center;
  background: #fff;
  border: 2px solid #875a7b;
  border-radius: 12px;
  color: #875a7b;
  cursor: pointer;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 600;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 1rem 2.5rem;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  background: #875a7b;
  box-shadow: 0 6px 20px rgba(135, 90, 123, 0.3);
  color: #fff;
  transform: translateY(-2px);
}

.load-icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.load-more-btn:hover .load-icon {
  transform: translateY(4px);
}

.results-info {
  color: #6b7280;
  color: #4a5568;
  font-size: 0.95rem;
  font-weight: 600;
}

.premium-features-section {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  padding: 5rem 0;
}

.features-grid-premium {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 3rem;
}

.feature-card-premium {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
}

.feature-card-premium:hover {
  box-shadow: 0 12px 40px rgba(135, 90, 123, 0.2);
  transform: translateY(-8px);
}

.feature-icon-premium {
  align-items: center;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(135, 90, 123, 0.3);
  color: #fff;
  display: flex;
  font-size: 2.5rem;
  height: 80px;
  justify-content: center;
  margin: 0 auto 1.5rem;
  width: 80px;
}

.feature-card-premium h3 {
  color: #1f2937;
  font-family: Inter, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-card-premium p {
  color: #6b7280;
  line-height: 1.7;
}

.cta-section-premium {
  background: linear-gradient(135deg, #875a7b, #714b67);
  overflow: hidden;
  padding: 5rem 0;
  position: relative;
}

.cta-section-premium:before {
  background:
    radial-gradient(circle at 30% 50%,
      hsla(0, 0%, 100%, 0.1) 0,
      transparent 50%),
    radial-gradient(circle at 70% 80%,
      hsla(0, 0%, 100%, 0.05) 0,
      transparent 50%);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.cta-content-premium {
  align-items: center;
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.cta-text {
  flex: 1;
}

.cta-text h2 {
  color: #fff;
  font-family:
    Playfair Display,
    Caveat,
    serif;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-text p {
  color: hsla(0, 0%, 100%, 0.9);
  font-size: 1.2rem;
  line-height: 1.6;
}

.cta-btn-primary,
.cta-btn-secondary {
  align-items: center;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  font-size: 1.1rem;
  font-weight: 600;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  transition: all 0.3s ease;
}

.cta-btn-primary {
  background: #fff;
  color: #875a7b;
}

.cta-btn-primary:hover {
  box-shadow: 0 12px 30px hsla(0, 0%, 100%, 0.3);
  transform: translateY(-4px);
}

.cta-btn-secondary {
  backdrop-filter: blur(10px);
  background: hsla(0, 0%, 100%, 0.15);
  border: 2px solid hsla(0, 0%, 100%, 0.3);
  color: #fff;
}

.cta-btn-secondary:hover {
  background: hsla(0, 0%, 100%, 0.25);
  transform: translateY(-4px);
}

@media (max-width: 1400px) {
  .properties-grid-premium {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  }

  .property-card-premium.featured-large {
    grid-column: span 1;
  }
}

@media (max-width: 1200px) {
  .hero-title-premium {
    font-size: 3.5rem;
  }

  .section-title-premium {
    font-size: 2.5rem;
  }

  .properties-grid-premium {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

@media (max-width: 968px) {
  .realestate2-hero {
    padding: 100px 0 60px;
  }

  .hero-title-premium {
    font-size: 2.8rem;
  }

  .hero-subtitle-premium {
    font-size: 1.1rem;
  }

  .search-inputs-premium {
    grid-template-columns: 1fr;
  }

  .search-tabs-premium {
    flex-wrap: wrap;
  }

  .hero-stats-premium {
    gap: 1.5rem;
  }

  .stat-divider {
    display: none;
  }

  .section-header-premium {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-controls {
    justify-content: space-between;
    width: 100%;
  }

  .filters-bar-premium {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-chip-group {
    justify-content: center;
  }

  .properties-grid-premium {
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .property-image-premium {
    height: 280px;
  }

  .cta-content-premium {
    flex-direction: column;
    text-align: center;
  }

  .cta-text h2 {
    font-size: 2.5rem;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .hero-title-premium {
    font-size: 2.2rem;
  }

  .hero-subtitle-premium {
    font-size: 1rem;
  }

  .search-bar-premium {
    padding: 1.5rem;
  }

  .tab-premium {
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
  }

  .search-btn-premium {
    justify-content: center;
    width: 100%;
  }

  .hero-stats-premium {
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number-premium {
    font-size: 2rem;
  }

  .filter-chip {
    font-size: 0.85rem;
    padding: 0.625rem 1.25rem;
  }

  .section-title-premium {
    font-size: 2rem;
  }

  .properties-grid-premium {
    grid-template-columns: 1fr;
  }

  .property-specs-premium {
    gap: 0.75rem;
    padding: 1rem;
  }

  .spec-value {
    font-size: 1.1rem;
  }

  .property-footer-premium {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
  }

  .btn-details-premium {
    justify-content: center;
    width: 100%;
  }

  .cta-text h2 {
    font-size: 2rem;
  }

  .cta-text p {
    font-size: 1rem;
  }
}

.support-coverage-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 3rem;
}

.coverage-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  transition: all 0.3s ease;
}

.coverage-card:hover {
  border-color: #875a7b;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.coverage-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.coverage-card h4 {
  color: #1f2937;
  font-family: Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.coverage-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.coverage-card p strong {
  color: #1f2937;
  font-weight: 600;
}

.sla-definitions {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.sla-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.sla-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.sla-priority {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
}

.sla-card.sla-critical .sla-priority {
  background: linear-gradient(135deg, #dc2626, #991b1b);
  color: #fff;
}

.sla-card.sla-high .sla-priority {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #fff;
}

.sla-card.sla-normal .sla-priority {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
}

.priority-badge {
  backdrop-filter: blur(10px);
  background: hsla(0, 0%, 100%, 0.2);
  border: 2px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
}

.sla-priority h3 {
  font-family: Inter, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}

.sla-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  padding: 2rem;
}

.sla-content h4 {
  color: #875a7b;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.sla-content p {
  color: #4b5563;
  line-height: 1.6;
}

.response-time {
  color: #1f2937;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.response-availability {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 600;
}

.sla-examples ul {
  list-style: none;
  padding: 0;
}

.sla-examples li {
  color: #4b5563;
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
}

.sla-examples li:before {
  color: #875a7b;
  content: "→";
  font-weight: 600;
  left: 0;
  position: absolute;
}

.timeline-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 3rem;
}

.timeline-item:hover {
  background: #fff;
  border-color: #875a7b;
  box-shadow: 0 16px 32px rgba(135, 90, 123, 0.15);
  transform: translateY(-6px);
}

.timeline-item h4 {
  color: #1f2937;
  font-family: Inter, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.875rem;
}

.timeline-item p {
  color: #6b7280;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.tech-stack-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 3rem;
}

.tech-category:hover {
  border-color: #875a7b;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.tech-category h4 {
  color: #1f2937;
  font-family: Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pricing-card.featured:hover {
  transform: scale(1.08);
}

.plan-header {
  border-bottom: 1px solid #e5e7eb;
  padding: 2rem;
  text-align: center;
}

.plan-price .price {
  color: #6b7280;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.plan-price .amount {
  color: #875a7b;
  color: #1a202c;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.plan-features h4,
.plan-price .period {
  color: #6b7280;
  font-size: 1rem;
}

.plan-features h4 {
  font-family: Inter, sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.plan-features ul {
  list-style: none;
  padding: 0;
}

.pricing-note p {
  color: #4b5563;
  line-height: 1.6;
}

.pricing-note strong {
  color: #1f2937;
}

.video-feedback {
  border-top: 2px solid #e5e7eb;
  margin-top: 4rem;
  padding-top: 3rem;
}

.video-feedback h3 {
  color: #1f2937;
  font-family: Inter, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.video-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 2rem;
}

.video-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.video-card iframe {
  border: none;
  height: 200px;
  width: 100%;
}

.video-caption {
  background: #f9fafb;
  color: #1f2937;
  font-weight: 600;
  padding: 1rem;
  text-align: center;
}

@media (max-width: 968px) {

  .pricing-grid,
  .sla-content,
  .support-coverage-grid,
  .tech-stack-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: scale(1.02);
  }

  .plan-price .amount {
    font-size: 2.5rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {

  .coverage-card,
  .tech-category,
  .timeline-item {
    padding: 1.5rem;
  }

  .timeline-grid {
    gap: 1.5rem;
  }

  .timeline-item {
    padding: 2rem 1.5rem;
  }

  .timeline-item h4 {
    font-size: 1.125rem;
  }

  .timeline-item p {
    font-size: 0.875rem;
  }

  .sla-priority {
    align-items: flex-start;
    flex-direction: column;
  }

  .sla-content,
  .sla-priority {
    padding: 1.5rem;
  }

  .timeline-number {
    font-size: 1.375rem;
    height: 52px;
    margin-bottom: 1.25rem;
    width: 52px;
  }

  .plan-header {
    padding: 1.5rem;
  }

  .plan-price .amount {
    font-size: 2rem;
  }

  .plan-features {
    padding: 1.5rem;
  }
}

.wms-hero {
  background: #fff;
  overflow: hidden;
  position: relative;
}

.wms-hero:before {
  background:
    radial-gradient(circle at 20% 50%,
      rgba(135, 90, 123, 0.03) 0,
      transparent 50%),
    radial-gradient(circle at 80% 80%,
      rgba(255, 224, 102, 0.03) 0,
      transparent 50%);
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.wms-hero .container {
  position: relative;
  z-index: 1;
}

.wms-hero .hero-content {
  color: #1f2937;
  padding: 8rem 0 6rem;
}

.wms-hero .hero-badge {
  background: rgba(135, 90, 123, 0.1);
  border: 1px solid rgba(135, 90, 123, 0.2);
  color: #875a7b;
}

.wms-hero .hero-title {
  color: #1f2937;
}

.wms-hero .hero-subtitle {
  color: #4b5563;
}

.wms-hero .hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.wms-hero .highlight-item {
  align-items: center;
  color: #1f2937;
  display: flex;
  font-size: 0.95rem;
  gap: 0.5rem;
}

.wms-hero .highlight-icon {
  align-items: center;
  background: rgba(135, 90, 123, 0.1);
  border-radius: 50%;
  color: #875a7b;
  display: flex;
  font-size: 0.875rem;
  font-weight: 600;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.mobile-app-hero {
  background: #fff;
  overflow: hidden;
  position: relative;
}

.mobile-app-hero:before {
  background:
    radial-gradient(circle at 30% 40%,
      rgba(135, 90, 123, 0.04) 0,
      transparent 50%),
    radial-gradient(circle at 70% 60%,
      rgba(255, 224, 102, 0.03) 0,
      transparent 50%);
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.mobile-app-hero .container {
  position: relative;
  z-index: 1;
}

.mobile-app-hero .hero-content {
  color: #1f2937;
}

.mobile-app-hero .hero-badge {
  background: rgba(135, 90, 123, 0.1);
  border: 1px solid rgba(135, 90, 123, 0.2);
  color: #875a7b;
  font-size: 1rem;
}

.mobile-app-hero .hero-title {
  color: #1f2937;
}

.mobile-app-hero .hero-subtitle {
  color: #4b5563;
}

.mobile-app-hero .hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.mobile-app-hero .highlight-item {
  align-items: center;
  color: #1f2937;
  display: flex;
  font-size: 0.95rem;
  gap: 0.5rem;
}

.mobile-app-hero .highlight-icon {
  align-items: center;
  background: rgba(135, 90, 123, 0.1);
  border-radius: 50%;
  color: #875a7b;
  display: flex;
  font-size: 0.875rem;
  font-weight: 600;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.desktop-app-hero {
  background: #fff;
  overflow: hidden;
  position: relative;
}

.desktop-app-hero:before {
  background:
    radial-gradient(circle at 25% 35%,
      rgba(135, 90, 123, 0.04) 0,
      transparent 50%),
    radial-gradient(circle at 75% 70%,
      rgba(255, 224, 102, 0.03) 0,
      transparent 50%);
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.desktop-app-hero .container {
  position: relative;
  z-index: 1;
}

.desktop-app-hero .hero-content {
  color: #1f2937;
}

.desktop-app-hero .hero-badge {
  background: rgba(135, 90, 123, 0.1);
  border: 1px solid rgba(135, 90, 123, 0.2);
  color: #875a7b;
  font-size: 1rem;
}

.desktop-app-hero .hero-title {
  color: #1f2937;
}

.desktop-app-hero .hero-subtitle {
  color: #4b5563;
}

.desktop-app-hero .hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.desktop-app-hero .highlight-item {
  align-items: center;
  color: #1f2937;
  display: flex;
  font-size: 0.95rem;
  gap: 0.5rem;
}

.desktop-app-hero .highlight-icon {
  align-items: center;
  background: rgba(135, 90, 123, 0.1);
  border-radius: 50%;
  color: #875a7b;
  display: flex;
  font-size: 0.875rem;
  font-weight: 600;
  height: 24px;
  justify-content: center;
  width: 24px;
}

@media (max-width: 968px) {

  .desktop-app-hero .hero-content,
  .mobile-app-hero .hero-content,
  .wms-hero .hero-content {
    padding: 5rem 0 4rem;
  }

  .desktop-app-hero .hero-highlights,
  .mobile-app-hero .hero-highlights,
  .wms-hero .hero-highlights {
    gap: 1rem;
  }

  .desktop-app-hero .highlight-item,
  .mobile-app-hero .highlight-item,
  .wms-hero .highlight-item {
    font-size: 0.875rem;
  }
}

@media (max-width: 600px) {

  .desktop-app-hero .hero-content,
  .mobile-app-hero .hero-content,
  .wms-hero .hero-content {
    padding: 0rem 0 3rem;
  }

  .desktop-app-hero .hero-highlights,
  .mobile-app-hero .hero-highlights,
  .wms-hero .hero-highlights {
    flex-direction: column;
    gap: 0.75rem;
  }

  .desktop-app-hero .highlight-item,
  .mobile-app-hero .highlight-item,
  .wms-hero .highlight-item {
    font-size: 0.8125rem;
  }
}

.contact-form-section {
  background: #fff;
  padding: 6rem 0;
}

.contact-form-grid {
  align-items: start;
  display: grid;
  gap: 3rem;
  gap: 4rem;
  grid-template-columns: 2fr 1fr;
}

.form-container {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  padding: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checkbox-label:hover {
  background: rgba(135, 90, 123, 0.05);
}

.checkbox-label span {
  color: #374151;
  font-size: 0.9375rem;
}

.file-upload-wrapper {
  position: relative;
}

.file-upload-wrapper input[type="file"] {
  height: 0;
  opacity: 0;
  position: absolute;
  width: 0;
}

.file-upload-label {
  align-items: center;
  background: #f9fafb;
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  font-size: 0.9375rem;
  gap: 0.75rem;
  justify-content: center;
  padding: 2rem 1.5rem;
  transition: all 0.2s ease;
}

.file-upload-label:hover {
  background: rgba(135, 90, 123, 0.05);
  border-color: #875a7b;
  color: #875a7b;
}

.upload-icon {
  font-size: 1.5rem;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
}

.info-card h3 {
  color: #1f2937;
  font-family: Inter, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.info-content p {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.info-content strong {
  color: #1f2937;
  font-weight: 600;
}

.info-content ul {
  margin: 0;
  padding: 0;
}

.info-content ul li {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.support-hero {
  background: #fff;
}

.support-hero .hero-content {
  padding: 8rem 0 6rem;
}

.support-hero .hero-badge {
  background: rgba(135, 90, 123, 0.1);
  border: 1px solid rgba(135, 90, 123, 0.2);
  color: #875a7b;
}

.support-hero .hero-title {
  color: #1f2937;
}

.support-hero .hero-subtitle {
  color: #4b5563;
}

.support-hero .hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.support-hero .highlight-item {
  align-items: center;
  color: #1f2937;
  display: flex;
  font-size: 0.95rem;
  gap: 0.5rem;
}

.support-hero .highlight-icon {
  align-items: center;
  background: rgba(135, 90, 123, 0.1);
  border-radius: 50%;
  color: #875a7b;
  display: flex;
  font-size: 0.875rem;
  font-weight: 600;
  height: 24px;
  justify-content: center;
  width: 24px;
}

@media (max-width: 968px) {
  .contact-form-grid {
    gap: 2rem;
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 2rem;
  }

  .form-row {
    gap: 1.5rem;
  }

  .checkbox-group,
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn-primary-large,
  .form-actions .btn-secondary-outline {
    width: 100%;
  }

  .support-hero .hero-content {
    padding: 5rem 0 4rem;
  }

  .support-hero .hero-highlights {
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .contact-form-section {
    padding: 3rem 0;
  }

  .form-container {
    padding: 1.5rem;
  }

  .form-header h2 {
    font-size: 1.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
  }

  .file-upload-label {
    font-size: 0.875rem;
    padding: 1.5rem 1rem;
  }

  .info-card {
    padding: 1.25rem;
  }

  .info-card h3 {
    font-size: 1rem;
  }

  .info-content p {
    font-size: 0.875rem;
  }

  .support-hero .hero-content {
    padding: 4rem 0 3rem;
  }

  .support-hero .hero-highlights {
    flex-direction: column;
    gap: 0.75rem;
  }

  .support-hero .highlight-item {
    font-size: 0.875rem;
  }
}

.contact-hero {
  text-align: center;
  margin-top: 80px;
}

.contact-hero .hero-badge {
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  color: #714b67;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 2rem;
  padding: 0.5rem 1.5rem;
}

.quick-contact-options {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 4rem;
}

.quick-contact-btn {
  align-items: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  color: inherit;
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.quick-contact-btn:hover {
  border-color: #714b67;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.contact-text strong {
  color: #1a202c;
  display: block;
  font-size: 1.1rem;
}

.contact-text span {
  color: #718096;
  font-size: 0.9rem;
}

.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="text"],
.form-group select,
.form-group textarea {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  padding: 0.8rem 1rem;
  transition: all 0.3s ease;
  width: 100%;
}



.support-plans-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 3rem;
}

.support-plan-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 3rem 2rem;
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
}

.support-plan-card.featured {
  border-color: #714b67;
  box-shadow: 0 20px 40px rgba(113, 75, 103, 0.1);
  transform: scale(1.05);
  z-index: 1;
}

.plan-badge.basic {
  background: #e2e8f0;
  color: #4a5568;
}

.plan-badge.premium {
  background: #714b67;
  color: #fff;
}

.plan-badge.enterprise {
  background: #1a202c;
  color: #fff;
}

.map-container {
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  height: 260px;
  margin-top: 3rem;
  overflow: hidden;
}

.callback-modal {
  align-items: center;
  display: none;
  height: 100%;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2000;
}

.callback-modal.active {
  display: flex;
}

@media (max-width: 992px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .support-plan-card.featured {
    transform: none;
  }
}

.service-categories {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 3rem 0;
}

.category-summary {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  transition: transform 0.3s ease;
}

.category-summary:hover {
  transform: translateY(-5px);
}

.cat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.roi-section {
  padding: 5rem 0;
}

.roi-metrics-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 3rem;
}

.roi-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
}

.roi-value {
  color: #875a7b;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.roi-label {
  color: #2d3748;
  font-weight: 700;
  margin-bottom: 1rem;
}

.comparison-table td,
.comparison-table th {
  border-bottom: 1px solid #edf2f7;
  padding: 1.5rem;
  text-align: left;
}

.comparison-table tr:hover td {
  background: #fdf2f8;
}

.grey-bg {
  background-color: #f7fafc;
}

.store-hero:before {
  background:
    radial-gradient(circle at 20% 30%,
      rgba(113, 75, 103, 0.05) 0,
      transparent 50%),
    radial-gradient(circle at 80% 70%,
      rgba(139, 90, 140, 0.05) 0,
      transparent 50%);
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.quick-cat-btn {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  color: #4a5568;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.quick-cat-btn:hover {
  border-color: #714b67;
  box-shadow: 0 8px 15px rgba(113, 75, 103, 0.1);
  color: #714b67;
  transform: translateY(-2px);
}

.store-stats-banner .stats-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.store-stats-banner .stat-item {
  color: #fff;
  text-align: center;
}

.store-stats-banner .stat-number {
  display: block;
  font-family: Caveat, cursive;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.store-stats-banner .stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
}

.app-card-info h3 a {
  color: inherit;
  text-decoration: none;
}

.category-card p {
  color: #718096;
  color: #4a5568;
  flex-grow: 1;
  font-size: 0.9rem;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.category-arrow {
  bottom: 20px;
  font-size: 1.2rem;
  opacity: 0;
  position: absolute;
  right: 20px;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.category-card:hover .category-arrow {
  color: #714b67;
  opacity: 1;
  transform: translateX(0);
}

.filter-section h4 {
  color: #1a202c;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.filter-checkbox {
  align-items: center;
  color: #4a5568;
  cursor: pointer;
  display: flex;
  font-size: 0.95rem;
  gap: 10px;
  margin-bottom: 0.75rem;
}

.filter-checkbox input {
  cursor: pointer;
  height: 18px;
  width: 18px;
}

.sort-controls {
  align-items: center;
  display: flex;
  gap: 15px;
}

.sort-controls select {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #4a5568;
  font-size: 0.9rem;
  outline: none;
  padding: 8px 15px;
}

.app-card-image {
  align-items: center;
  background: #f8f9fa;
  display: flex;
  height: 180px;
  justify-content: center;
  position: relative;
}

.badge-popular {
  background: #714b67;
}

.badge-free,
.badge-popular {
  border-radius: 4px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
}

.badge-free {
  background: #3182ce;
}

.app-card-content {
  padding: 1.5rem;
}

.app-card-content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.app-card-content h4 a {
  color: inherit;
  text-decoration: none;
}

.app-summary {
  color: #718096;
  display: -webkit-box;
  font-size: 0.9rem;
  height: 3rem;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  margin-bottom: 1.2rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.app-card-actions {
  align-items: center;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  padding-top: 1.2rem;
}

.app-card-actions .price {
  color: #1a202c;
  font-weight: 700;
}

.btn-view {
  color: #714b67;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-view:hover {
  color: #8b5a8c;
  transform: translateX(3px);
}

.developer-benefit {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.developer-benefit:hover {
  border-color: #714b67;
  box-shadow: 0 15px 35px rgba(113, 75, 103, 0.05);
}

.developer-benefit h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.developer-benefit p {
  color: #718096;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.link-arrow {
  color: #714b67;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.cta-section h2 {
  color: #fff;
  font-family: Caveat, cursive;
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-family: Inter, sans-serif;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .apps-layout {
    grid-template-columns: 1fr;
  }

  .filters-sidebar {
    margin-bottom: 2rem;
    position: static;
  }

  .store-hero h1 {
    font-size: 4rem;
  }

  .cta-section h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .store-stats-banner .stats-grid {
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .search-btn {
    width: 100%;
  }
}

.resources-hero {
  overflow: hidden;
  /* padding: 10rem 0 6rem; */
  margin-top: 80px;
  position: relative;
  text-align: center;
  width: 100%;
}

.resources-hero:before {
  background:
    radial-gradient(circle at 20% 30%,
      rgba(113, 75, 103, 0.05) 0,
      transparent 50%),
    radial-gradient(circle at 80% 70%,
      rgba(139, 90, 140, 0.05) 0,
      transparent 50%);
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.resources-hero h1 {
  font-size: 6rem;
  margin-bottom: 1.5rem;
}

.resources-hero p {
  color: #4a5568;
  font-size: 1.2rem;
  margin: 0 auto 3rem;
  max-width: 800px;
}

.resources-search {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 10px;
  margin: 0 auto 4rem;
  max-width: 800px;
  padding: 10px;
}

.resources-search .search-input {
  border: none;
  flex: 1;
  font-size: 1.1rem;
  outline: none;
  padding: 15px 25px;
}

.resources-search .search-btn {
  background: #714b67;
  border: none;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  padding: 15px 30px;
  transition: all 0.3s ease;
}

.resources-search .search-btn:hover {
  background: #8b5a8c;
  transform: translateY(-2px);
}

.resource-categories-section {
  background: #fff;
  padding: 4rem 0;
}

.resource-categories-section .categories-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 4rem;
}

.category-card.featured {
  background: linear-gradient(135deg, #714b67, #8b5a8c);
  color: #fff;
}

.category-card.featured .category-link,
.category-card.featured h3,
.category-card.featured p {
  color: #fff;
}

.category-card.featured .category-stats .stat {
  background: hsla(0, 0%, 100%, 0.1);
  color: #fff;
}

.category-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.category-stats .stat {
  background: #edf2f7;
  border-radius: 50px;
  color: #4a5568;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
}

.category-link {
  color: #714b67;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.category-link:hover {
  transform: translateX(5px);
}

.case-studies-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  margin-top: 4rem;
}

.case-study-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.4s ease;
}

.case-study-card:hover {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
  transform: translateY(-12px);
}

.case-study-image {
  background: #f8fafc;
  height: 240px;
  position: relative;
}

.case-study-badge {
  backdrop-filter: blur(10px);
  background: hsla(0, 0%, 100%, 0.9);
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  color: #1a202c;
  font-size: 0.8rem;
  font-weight: 700;
  left: 25px;
  padding: 8px 18px;
  position: absolute;
  top: 25px;
  z-index: 2;
}

.case-study-content {
  padding: 3rem;
}

.case-study-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.case-study-excerpt {
  color: #718096;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.case-study-metrics {
  align-items: center;
  background: #f8fafc;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  padding: 16px 10px;
}

.case-study-metrics .metric {
  flex: 1;
  text-align: center;
}

.case-study-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.case-study-link {
  color: #714b67;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.case-study-link:hover {
  transform: translateX(8px);
}

.guides-section {
  background: #f8fafc;
  padding: 8rem 0;
}

.guides-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 4rem;
}

.guide-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 24px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  padding: 3rem;
  transition: all 0.3s ease;
}

.guide-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transform: translateY(-8px);
}

.guide-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.guide-icon {
  font-size: 2.5rem;
}

.guide-badge {
  background: rgba(113, 75, 103, 0.1);
  border-radius: 50px;
  color: #714b67;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  text-transform: uppercase;
}

.guide-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.guide-card p {
  color: #718096;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.guide-meta {
  color: #a0aec0;
  display: flex;
  font-size: 0.85rem;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.guide-link {
  color: #714b67;
  font-weight: 700;
  text-decoration: none;
}

.white-papers-section {
  background: #fff;
  padding: 8rem 0;
}

.white-papers-section .container {
  max-width: 1400px;
}

.white-papers-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4rem;
  width: 100%;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;

}

.white-paper-card {
  background: #fff;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 24px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: all 0.3s ease;
}

.white-paper-card:hover {
  background: #fff;
  border-color: #875a7b;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 40px rgba(135, 90, 123, 0.1);
  transform: translateY(-8px);
  transform: translateY(-10px);
}

.paper-image {
  align-items: center;
  background: #f8fafc;
  border-radius: 20px;
  display: flex;
  height: 0;
  height: 120px;
  justify-content: center;
}

.paper-content {
  padding: 2rem;
}

.paper-category {
  color: #714b67;
  color: #875a7b;
  display: block;
  display: inline-block;
  font-size: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.paper-content h3 {
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
}

.paper-content p {
  color: #718096;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.paper-meta {
  border-top: 1px solid #edf2f7;
  color: #a0aec0;
  color: #718096;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.8rem;
  font-size: 0.85rem;
  gap: 1rem;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-top: 1.5rem;
}

.webinars-section {
  background: #f8fafc;
  padding: 8rem 0;
}

.webinars-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  margin-top: 4rem;
}

.webinar-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  gap: 2.5rem;
  padding: 2rem;
}

.webinar-date {
  align-items: center;
  background: #f8f9fa;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  height: 80px;
  justify-content: center;
  min-width: 80px;
}

.date-day {
  color: #714b67;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.date-month {
  color: #a0aec0;
  font-size: 0.75rem;
  font-weight: 700;
}

.webinar-content .webinar-badge {
  color: #714b67;
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.webinar-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.webinar-content p {
  color: #718096;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.webinar-details {
  color: #4a5568;
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  font-weight: 600;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.downloads-section {
  background: #fff;
  padding: 8rem 0;
}

.downloads-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 4rem;
}

.download-card {
  background: #f8f9fa;
  border: 1px solid transparent;
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  transition: all 0.3s ease;
}

.download-card:hover {
  background: #fff;
  border-color: rgba(113, 75, 103, 0.2);
  box-shadow: 0 15px 35px rgba(113, 75, 103, 0.05);
  transform: translateY(-5px);
}

.download-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.download-card h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.download-card p {
  color: #718096;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.download-stats {
  color: #a0aec0;
  display: flex;
  font-size: 0.8rem;
  font-weight: 700;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.btn-download {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  color: #1a202c;
  cursor: pointer;
  font-weight: 700;
  padding: 12px 24px;
  transition: all 0.2s ease;
}

.btn-download:hover {
  border-color: #714b67;
  color: #714b67;
}



.hero-stats {
  gap: 2rem;
}

.case-study-content {
  padding: 2rem;
}


@media (max-width: 768px) {

  .resources-search,
  .webinar-card {
    flex-direction: column;
  }
}

@media (max-width: 768px) {

  .guidesh1 {
    font-size: 36px !important;
  }
}

@media (max-width: 768px) {

  .nav {
    height: 70px !important;
  }
}

.featured-case-section {
  background: #fff;
  padding: 8rem 0;
}

.featured-case-card {
  background: #875a7b;
  border-radius: 40px;
  color: #fff;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.featured-case-image {
  align-items: center;
  background: #fff;
  display: flex;
  justify-content: center;
  min-height: 400px;
}

.featured-case-content {
  padding: 4rem;
}

.featured-case-content .badge {
  background: hsla(0, 0%, 100%, 0.2);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 15px;
}

.featured-case-content h2 {
  color: #fff;
  font-size: 3rem;
  margin: 1.5rem 0;
}

.featured-case-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.impact-metrics {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.impact-item span:first-child {
  display: block;
  font-size: 2rem;
  font-weight: 800;
}

.impact-item span:last-child {
  font-size: 0.8rem;
  opacity: 0.8;
  text-transform: uppercase;
}

.methodology-section {
  background: #f8fafc;
  padding: 8rem 0;
}

.methodology-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 4rem;
}

.method-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 3rem;
  text-align: center;
  transition: all 0.3s ease;
}

.method-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.method-card span {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.method-card h3 {
  margin-bottom: 1rem;
}

.method-card p {
  color: #718096;
  font-size: 0.95rem;
}

.testimonial-card p {
  color: #4a5568;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.client-footer strong {
  color: #1a202c;
  display: block;
}

.client-footer span {
  color: #718096;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .featured-case-card {
    grid-template-columns: 1fr;
  }

  .featured-case-content {
    padding: 2rem;
  }

  .featured-case-image {
    min-height: 300px;
  }
}

.white-paper-card h3 {
  color: #1a202c;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.white-paper-card p {
  color: #4a5568;
  flex-grow: 1;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.white-paper-card .btn-primary {
  width: 100%;
}

.feature-card {
  text-align: left;
}

.steps {
  display: inline-block;
}

/* ========================================
   POLICY PAGES — Font & Layout Overrides
   ======================================== */
.policy-page {
  margin-top: 100px;
}

.logo-nav {
  color: #875A7B;
  text-decoration: none;
  font-weight: bold;
}

.policy-page main {
  padding: 0 !important;
}

.policy-page .company-hero {
  padding: 100px 0 50px !important;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #4a5568 100%) !important;
  text-align: center !important;
}

.policy-page .company-hero h1 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-size: 3rem !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1.2 !important;
  margin-bottom: 1rem !important;
  letter-spacing: -0.02em !important;
}

.policy-page .company-hero p {
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem !important;
  color: rgba(255, 255, 255, 0.65) !important;
  margin: 0 !important;
}

.policy-page .features-section {
  background: #f0f4f8 !important;
  padding: 60px 0 80px !important;
}

.policy-page .policy-card {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.policy-page .policy-card-body {
  padding: 48px 52px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.85;
}

.policy-page .policy-card-body h2 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: #1a202c !important;
  margin-top: 2.25rem !important;
  margin-bottom: 0.75rem !important;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e2e8f0;
  letter-spacing: 0 !important;
  line-height: 1.4 !important;
}

.policy-page .policy-card-body h2:first-child {
  margin-top: 0 !important;
}

.policy-page .policy-card-body p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: #4a5568;
}

.policy-page .policy-card-body ul {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.policy-page .policy-card-body li {
  margin-bottom: 0.5rem;
  color: #4a5568;
  font-size: 1rem;
}

.policy-page .policy-card-body strong {
  color: #2d3748;
  font-weight: 600;
}

.policy-page .policy-toc {
  background: #f7fafc;
  border-left: 4px solid #714b67;
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin-bottom: 2rem;
}

.policy-page .policy-toc p {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  color: #714b67 !important;
  margin-bottom: 0.5rem !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.policy-page .policy-toc ol {
  padding-left: 1.2rem;
  margin: 0;
}

.policy-page .policy-toc li {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: #4a5568;
}

.policy-page .policy-toc a {
  color: #714b67;
  text-decoration: none;
  font-weight: 500;
}

.policy-page .policy-toc a:hover {
  text-decoration: underline;
}

.policy-page .policy-card-footer {
  background: #f7fafc;
  border-top: 1px solid #e2e8f0;
  padding: 20px 52px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #718096;
}

.policy-page .policy-card-footer a {
  color: #714b67;
  text-decoration: none;
  font-weight: 600;
}

.policy-page .policy-card-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .policy-page {
    margin-top: 60px;
  }

  .policy-page .company-hero {
    padding: 40px 0 20px !important;
  }

  .policy-page .company-hero h1 {
    font-size: 2rem !important;
  }

  .policy-page .policy-card-body {
    padding: 28px 20px;
  }

  .policy-page .policy-card-footer {
    padding: 20px;
  }
}

/* --- GLOBAL RESPONSIVENESS BY ANTIGRAVITY --- */

/* Base container adjustment */
@media (max-width: 1200px) {

  /* --- CLEAN GLOBAL RESPONSIVENESS BY ANTIGRAVITY --- */

  @media (max-width: 1024px) {
    .header {
      background: #ffffff !important;
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      width: 100% !important;
      z-index: 10000 !important;
      display: block !important;
      visibility: visible !important;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    }

    .top-bar {
      display: none !important;
    }

    .nav-container {
      display: flex !important;
      justify-content: space-between !important;
      align-items: center !important;
      padding: 10px 20px !important;
      height: 60px !important;
    }

    .mobile-menu-toggle {
      display: flex !important;
      flex-direction: column !important;
      justify-content: center !important;
      align-items: center !important;
      width: 40px !important;
      height: 40px !important;
      cursor: pointer !important;
      z-index: 11000 !important;
    }

    .mobile-menu-toggle span {
      display: block !important;
      width: 25px !important;
      height: 3px !important;
      background: #714b67 !important;
      margin: 3px 0 !important;
      border-radius: 3px !important;
    }

    .nav-menu {
      display: none !important;
      position: fixed !important;
      top: 0 !important;
      right: -100% !important;
      width: 300px !important;
      height: 100vh !important;
      background: #ffffff !important;
      z-index: 10500 !important;
      flex-direction: column !important;
      padding: 40px 20px !important;
      gap: 0 !important;
      transition: right 0.3s ease-in-out !important;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1) !important;
      visibility: visible !important;
    }

    .nav-menu.mobile-active {
      display: flex !important;
      right: 0 !important;
    }

    .nav-actions {
      display: none !important;
    }

    .nav-menu li {
      width: 100% !important;
      margin: 0 !important;
      border-bottom: 1px solid #eee !important;
    }

    .nav-menu a {
      font-family: Caveat !important;
      font-size: 28px !important;
      font-weight: 600 !important;
      fill: rgb(135, 90, 123) !important;
      display: block !important;
      padding: 10px 15px !important;
    }

    /* Hide icons and small text in mobile dropdowns */
    .app-icon {
      display: none !important;
    }

    .dropdown-section small {
      display: none !important;
    }

    .dropdown-section h4 {
      margin-bottom: 0.5rem !important;
      padding-bottom: 0.25rem !important;
      font-size: 1.6rem !important;
    }

    .dropdown-section a {
      padding: 6px 0 !important;
      font-size: 1.5rem !important;
      /* font-family: 'Times New Roman', Times, serif !important; */

      font-weight: 800 !important;
    }

    .dropdown-container {
      padding: 0.5rem 1rem !important;
      gap: 0.5rem !important;
    }

    /* Close Button Styles */
    .menu-close-container {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      /* padding: 10px 20px; */
      margin-bottom: 20px;
      /* Reduced negative margin to accommodate logo */
      z-index: 1000001;
    }

    .menu-close-btn {
      background: none;
      border: none;
      font-size: 2rem;
      color: #714b67;
      cursor: pointer;
      padding: 5px;
      line-height: 1;
    }

    body.menu-open {
      overflow: hidden !important;
    }
  }

  @media (min-width: 1025px) {
    .mobile-menu-toggle {
      display: none !important;
    }

    .nav-menu {
      display: flex !important;
      visibility: visible !important;
      opacity: 1 !important;
      position: static !important;
      width: auto !important;
      height: auto !important;
      background: transparent !important;
      box-shadow: none !important;
      padding: 0 !important;
    }
  }

  /* FINAL ATTEMPT AT MOBILE MENU SHOW */
  @media (max-width: 1024px) {
    .nav-menu.mobile-active {
      display: flex !important;
      visibility: visible !important;
      opacity: 1 !important;
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      width: 100vw !important;
      height: 100vh !important;
      background: #ffffff !important;
      z-index: 1000000 !important;
      flex-direction: column !important;
      /* padding: 50px 20px !important; */
      gap: 0 !important;
      overflow-y: auto !important;
    }
  }

  /* --- INNER PAGE RESPONSIVENESS --- */
  @media (max-width: 1024px) {
    .erp-hero h1 {
      font-size: 2.5rem !important;
    }

    .hero-stats-inline {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 15px !important;
    }

    .features-grid,
    .industries-detailed-grid,
    .services-grid,
    .industries-grid {
      grid-template-columns: 1fr !important;
      gap: 20px !important;
    }

    .industry-card,
    .feature-card {
      padding: 1.5rem !important;
    }
  }

  @media (max-width: 768px) {
    .erp-hero h1 {
      font-size: 2rem !important;
    }

    .hero-stats-inline {
      grid-template-columns: 1fr !important;
    }

    .section-title {
      font-size: 2rem !important;
    }

    .container {
      padding: 0 20px !important;
    }

    .hero-content {
      text-align: center !important;
    }

    .hero-actions {
      flex-direction: column !important;
      gap: 10px !important;
    }

    .hero-actions a {
      width: 100% !important;
      text-align: center !important;
      justify-content: center !important;
    }


    .process-step {
      flex-direction: column !important;
      align-items: flex-start !important;
      margin: 5px;
    }

    .footer-grid {
      grid-template-columns: 1fr !important;
      gap: 30px !important;
    }
  }

  /* --- GLOBAL GRID COLLAPSE --- */
  @media (max-width: 768px) {

    .footer-content,
    .footer-bottom,
    .hero-trust-badges .trust-logos {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      text-align: center !important;
      gap: 20px !important;
    }

    .footer-section {
      width: 100% !important;
    }

    .footer-legal {
      flex-wrap: wrap !important;
      justify-content: center !important;
      gap: 10px !important;
    }

    .newsletter-form {
      flex-direction: column !important;
      width: 100% !important;
    }

    .newsletter-form input {
      width: 100% !important;
      margin-bottom: 10px !important;
    }
  }

  /* --- PRICING PAGE RESPONSIVENESS --- */
  @media (max-width: 1024px) {
    .pricing-cards {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 20px !important;
    }

    .apps-grid {
      grid-template-columns: repeat(3, 1fr) !important;
    }
  }

  @media (max-width: 768px) {
    .pricing-cards {
      grid-template-columns: 1fr !important;
    }

    .apps-grid {
      grid-template-columns: repeat(2, 1fr) !important;
    }

    .comparison-calculator {
      padding: 20px !important;
    }

    .user-counter {
      width: 100% !important;
      justify-content: center !important;
    }

    .pricing-hero h1 {
      font-size: 2.5rem !important;
    }

    .section-divider {
      margin: 40px 0 !important;
    }

    .faq-container {
      padding: 0 10px !important;
    }

    .faq-question {
      font-size: 1rem !important;
      padding: 15px !important;
    }
  }

  /* --- CONTACT PAGE RESPONSIVENESS --- */
  @media (max-width: 1024px) {
    .contact-form-grid {
      grid-template-columns: 1fr !important;
      gap: 40px !important;
    }

    .contact-info-side {
      order: -1 !important;
      display: grid !important;
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 20px !important;
    }
  }

  @media (max-width: 768px) {
    .contact-hero h1 {
      font-size: 2.2rem !important;
    }

    .quick-contact-options {
      flex-direction: column !important;
      gap: 15px !important;
    }

    .form-row {
      flex-direction: column !important;
      gap: 0 !important;
    }

    .form-group {
      margin-bottom: 15px !important;
    }

    .contact-info-side {
      grid-template-columns: 1fr !important;
    }

    .checkbox-group {
      grid-template-columns: 1fr 1fr !important;
    }

    .form-container {
      padding: 20px !important;
    }
  }

  /* --- GLOBAL OVERFLOW & LAYOUT SAFETY --- */
  * {
    box-sizing: border-box !important;
  }

  html,
  body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative !important;
  }

  @media (max-width: 768px) {
    .container {
      width: 100% !important;
      max-width: 100% !important;
      padding-left: 10px !important;
      padding-right: 10px !important;
      overflow-x: hidden !important;
      padding: 10px;
      /* margin-top: -15px !important; */
    }

    main {
      padding: 10px !important;
    }

    .form-row {
      display: grid !important;
      grid-template-columns: 1fr !important;
      gap: 1rem !important;
    }

    .form-group {
      width: 100% !important;
      margin-bottom: 1rem !important;
    }

    .contact-content {
      display: flex !important;
      flex-direction: column !important;
      width: 100% !important;
      gap: 20px !important;
    }

    .contact-form-side,
    .contact-info-side {
      width: 100% !important;
    }

    .consultation-form {
      max-width: 100% !important;
      width: 100% !important;
    }

    /* Auto-stack any generic grids */
    .grid,
    .row,
    .services-grid,
    .features-grid,
    .industries-grid,
    .white-papers-grid,
    .performance-metrics-grid,
    .faq-list {
      grid-template-columns: 1fr !important;
    }

    /* Hosting Page Specific Fixes */
    .hosting-hero h1 {
      font-size: 2.5rem !important;
      line-height: 1.2 !important;
    }

    .pricing-grid {
      grid-template-columns: 1fr !important;
      gap: 2rem !important;
      /* padding-top: 3rem !important; */
    }

    /* .pricing-card {
      transform: none !important;
      margin-bottom: 0 !important;
      width: 95%;
    } */

    .pricing-toggle {
      flex-direction: row !important;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem !important;
      padding: 10px !important;
    }

    .pricing-toggle button {
      padding: 8px 16px !important;
      font-size: 0.9rem !important;
    }

    .save-badge {
      padding: 2px 8px !important;
      font-size: 0.7rem !important;
      margin-left: 4px !important;
    }

    .comparison-table-wrapper {
      overflow-x: auto !important;
      margin: 0 -10px !important;
      padding: 0 10px !important;
    }

    .comparison-table {
      min-width: 700px !important;
    }

    img {
      max-width: 100% !important;
      height: auto !important;
    }
  }
}



@media (max-width: 768px) {
  .contact-info-side {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .neel {
    width: 95% !important;
  }

  .hero-title {
    font-size: 40px !important;
  }
}


@media (min-width: 1025px) {
  .mobile-only {
    display: none !important;
  }
}

.hosting-hero {
  margin-top: 70px;
}

.resources-her {
  margin-top: 80px;
}

@media screen and (min-width: 1024px) {

  .hosting-hero,
  .portal-hero {
    margin-top: 160px !important;
  }

  .contact-hero,
  .resources-hero {
    padding: 6rem 0 6rem;
  }

  .resources-her {
    margin-top: 130px;
  }

  .video-gallery-hero {
    margin-top: 75px;

  }

  .features-section {
    margin-top: 120px !important;
  }

}

@media screen and (max-width:768px) {

  .insurance-h2 {
    font-size: 2rem !important;
  }

  .consultation-form {
    width: 140% !important;
  }

  .contact01 {
    width: 95% !important
  }


}

/* ── NAV CLOSING: instantly hide dropdowns when any link is clicked ── */
.nav-closing .dropdown-menu,
.nav-closing .nav-item.active .dropdown-menu {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  display: none !important;
}

.nav-closing .nav-item {
  pointer-events: none !important;
}