/* ============ Base ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --color-primary: #00c896;
  --color-primary-soft: #e6fbf4;
  --color-dark: #111111;
  --color-muted: #666666;
  --color-border: #e5e5e5;
  --max-width: 1120px;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(-50%) translateX(0) scale(1);
  }
  50% {
    transform: translateY(calc(-50% - 10px)) translateX(0) scale(1.01);
  }
}

@keyframes float-mobile {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.01);
  }
}


/* Animation classes */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
}

/* Scroll-triggered animations */
.scroll-section {
  opacity: 1;
}

.scroll-fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  color: var(--color-dark);
  background-color: #ffffff;
  /* Note: Transparent PNG areas will show this background color */
}

body {
  line-height: 1.5;
}

/* Utility containers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section {
  padding: 2rem 0;
  background: transparent;
}

/* Dialog section with overlay and padding */
.dialog-section-wrapper {
  padding: 3rem 0 !important;
  background: linear-gradient(135deg, var(--color-primary-soft) 0%, rgba(255, 255, 255, 0.3) 50%, #ffffff 100%);
  position: relative;
}

.dialog-section-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(1px);
  z-index: 0;
}

/* ============ Header & Nav ============ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 70px;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.9rem;
}

.navbar-links a {
  text-decoration: none;
  color: var(--color-muted);
  position: relative;
  padding-bottom: 0.25rem;
}

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

.navbar-links a.active::after,
.navbar-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  border-radius: 999px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
  margin-left: auto;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  pointer-events: none;
}

.mobile-menu.active {
  pointer-events: all;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.mobile-menu.active .mobile-menu-overlay {
  opacity: 1;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background: white;
  box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active .mobile-menu-content {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.mobile-logo {
  height: 50px;
  width: auto;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: var(--color-dark);
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: color 0.3s ease;
  z-index: 1002;
  position: relative;
  -webkit-tap-highlight-color: rgba(0, 200, 150, 0.2);
}

.mobile-menu-close:hover,
.mobile-menu-close:active {
  color: var(--color-primary);
  transform: scale(1.1);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}

.mobile-menu-nav a {
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: var(--color-dark);
  font-size: 1rem;
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
  display: block;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
  background: var(--color-primary-soft);
  color: var(--color-primary);
  padding-left: 2rem;
}

.mobile-menu-nav a.mobile-menu-btn {
  margin: 1rem 1.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--color-dark);
  color: white;
  border-radius: 999px;
  text-align: center;
  border: none;
}

.mobile-menu-nav a.mobile-menu-btn:hover {
  background: var(--color-primary);
  padding-left: 1.5rem;
}

.btn {
  border-radius: 999px;
  border: 1px solid var(--color-dark);
  padding: 0.5rem 1.3rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  transition: all 0.18s ease-out;
}

.btn:hover {
  background: #ffffff;
  color: #000000;
}

/* Simple cart icon placeholder */
.cart-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--color-dark);
  position: relative;
}

.cart-icon::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 4px;
  border-radius: 4px 4px 0 0;
  border: 1.5px solid var(--color-dark);
  border-bottom: none;
}

/* ============ Hero (home) ============ */

.hero {
  padding: 3rem 0 5rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--color-primary-soft) 100%);
}

.hero-main-words {
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 2rem 0 2.5rem;
}

.hero-main-words.scroll-fade-in {
  opacity: 0;
  transform: translateY(40px);
}

.hero-main-words.scroll-fade-in.animated {
  opacity: 1;
  transform: translateY(0);
}

.hero-main-words span {
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-main-words.scroll-fade-in.animated span {
  opacity: 1;
  transform: translateY(0);
}

.hero-main-words.scroll-fade-in.animated span:nth-child(1) {
  transition-delay: 0.2s;
}

.hero-main-words.scroll-fade-in.animated span:nth-child(2) {
  transition-delay: 0.5s;
}

.hero-main-words.scroll-fade-in.animated span:nth-child(3) {
  transition-delay: 0.8s;
}

.hero-main-words .accent {
  color: var(--color-primary);
  font-weight: 500;
}


/* Hero section with big logo + text */
.hero-secondary {
  padding: 5rem 0 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.hero-logo {
  max-width: 320px;
  width: 100%;
  height: auto;
  margin-bottom: 2.5rem;
  animation: scaleIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, 
             pulse 3s ease-in-out 1.5s infinite;
  opacity: 0;
  transform: scale(0.8);
}

.hero-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.hero-subtitle.scroll-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-subtitle.scroll-fade-in.animated {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}

.hero-subtitle strong {
  color: var(--color-primary);
  font-weight: 600;
}

/* ============ “Medicina se face prin dialog” section ============ */

.dialog-section {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 4rem 3rem;
  position: relative;
  min-height: 550px;
  overflow: hidden;
  background: transparent;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.dialog-section .container {
  background: transparent;
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 100%;
  padding: 0;
}

@media (max-width: 768px) {
  .dialog-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.dialog-text {
  flex: 1;
  position: relative;
  z-index: 2;
  max-width: 50%;
  padding-right: 2rem;
}

.dialog-text.scroll-fade-in {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.dialog-text.scroll-fade-in.animated {
  opacity: 1;
  transform: translateX(0);
}

.dialog-text.scroll-fade-in.animated h2 {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.dialog-text.scroll-fade-in.animated p {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.dialog-text.scroll-fade-in.animated .dialog-logo-tagline {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.dialog-text p,
.dialog-text .dialog-logo-tagline {
  opacity: 0;
}

.dialog-text.scroll-fade-in.animated p,
.dialog-text.scroll-fade-in.animated .dialog-logo-tagline {
  opacity: 1;
}

.dialog-text h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
  line-height: 1.2;
  color: var(--color-dark);
}

.dialog-text h2 span {
  color: var(--color-primary);
  font-weight: 600;
}

.dialog-text p {
  font-size: 1rem;
  color: var(--color-muted);
  margin: 0.5rem 0;
  line-height: 1.7;
}

.dialog-text p strong {
  color: var(--color-dark);
  font-weight: 600;
}

.dialog-logo-tagline {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 1.05rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 200, 150, 0.2);
}

.dialog-logo-tagline img {
  height: 80px;
  width: auto;
  opacity: 0.9;
}

.dialog-logo-tagline span {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.1rem;
}

.dialog-image {
  position: absolute;
  top: 50%;
  right: 0;
  width: 50%;
  height: 90%;
  background-image: url('assets/demo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  background-color: transparent;
  z-index: 1;
  opacity: 0;
  transform: translateY(-50%) translateX(50px) scale(0.95);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}

.dialog-image.scroll-fade-in.animated {
  opacity: 1;
  transform: translateY(-50%) translateX(0) scale(1);
}

.dialog-image-placeholder {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  border: 1px solid var(--color-border);
  background: radial-gradient(circle at top left, var(--color-primary-soft), #ffffff);
  padding: 2.5rem 2rem;
  font-size: 0.9rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dialog-image-placeholder:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 200, 150, 0.15);
}

.dialog-image-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dialog-image-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 80px rgba(0, 200, 150, 0.2);
}

/* ============ How it works / features ============ */

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--color-dark);
  transition: all 0.6s ease-out;
}

.section-title.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
}

.section-title.animate-on-scroll.animated,
.section-title.scroll-fade-in.animated {
  opacity: 1;
  transform: translateY(0);
}

.columns-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
}

.columns-3 > div.animate-on-scroll,
.columns-3 > div.scroll-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.columns-3 > div.animate-on-scroll.animated,
.columns-3 > div.scroll-fade-in.animated {
  opacity: 1;
  transform: translateY(0);
}

.columns-3 > div.animate-on-scroll:nth-child(1),
.columns-3 > div.scroll-fade-in:nth-child(1) {
  transition-delay: 0.1s;
}

.columns-3 > div.animate-on-scroll:nth-child(2),
.columns-3 > div.scroll-fade-in:nth-child(2) {
  transition-delay: 0.2s;
}

.columns-3 > div.animate-on-scroll:nth-child(3),
.columns-3 > div.scroll-fade-in:nth-child(3) {
  transition-delay: 0.3s;
}

.subsection-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

.step-list,
.feature-list,
.safety-list {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.step-list p,
.feature-list p,
.safety-list p {
  margin-bottom: 1rem;
}

.step-list strong,
.feature-list strong,
.safety-list strong {
  color: var(--color-primary);
  font-weight: 600;
}

.ascultai-badge {
  display: inline-block;
  background-color: #333333;
  color: #ffffff;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.icon-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.icon-row img {
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  opacity: 0.9;
}

.icon-row .icon-gdpr {
  height: 200px;
}

.icon-row .icon-iso {
  height: 200px;
}

.icon-row .icon-microsoft {
  height: 70px;
}

.icon-row img:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* ============ Stats Section ============ */
.stats-section {
  background: linear-gradient(135deg, var(--color-primary-soft) 0%, #ffffff 100%);
  padding: 4rem 0;
}

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

.stat-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stat-item.animated,
.stat-item.scroll-fade-in.animated {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============ About Section ============ */
.about-section {
  background: #ffffff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.apolloiq-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Ensure background shows through transparent areas */
  background: transparent;
  isolation: isolate;
}

.apolloiq-logo-img {
  max-width: 300px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  /* No background - let page background show through transparent areas */
  background: none;
  background-color: transparent;
  mix-blend-mode: normal;
  filter: none;
}

.about-text-content {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.8;
}

.about-text-content p {
  margin-bottom: 1.5rem;
}

.about-text-content strong {
  color: var(--color-primary);
  font-weight: 600;
}

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

/* ============ CTA Section ============ */
.cta-section {
  background: linear-gradient(135deg, var(--color-dark) 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 5rem 0;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.cta-content.animated,
.cta-content.scroll-fade-in.animated {
  opacity: 1;
  transform: translateY(0);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #ffffff;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background-color: #00b085;
  border-color: #00b085;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 200, 150, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: var(--color-dark);
  transform: translateY(-2px);
}

.btn {
  transition: all 0.3s ease;
}

/* ============ Pricing cards ============ */

.pricing-hero {
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.pricing-subtitle {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-top: 1rem;
  margin-bottom: 3rem;
}

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

.pricing-card {
  border-radius: 24px;
  border: 2px solid var(--color-border);
  padding: 3rem 2rem;
  text-align: center;
  background: #ffffff;
  transition: all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  min-width: 0;
}

.pricing-card.scroll-fade-in.animated {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 200, 150, 0.15);
  border-color: var(--color-primary);
}

.pricing-card-header {
  margin-bottom: 2rem;
}

.pricing-logo {
  max-width: 120px;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}

.pricing-card h3 {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--color-dark);
}

.pricing-price-wrapper {
  margin: 2rem 0 1rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.pricing-period {
  font-size: 1.2rem;
  color: var(--color-muted);
  font-weight: 400;
}

.price-note {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
  white-space: normal;
}

.pricing-features {
  text-align: left;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.feature-item {
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: var(--color-dark);
  border-bottom: 1px solid var(--color-border);
}

.feature-item:last-child {
  border-bottom: none;
}

.pricing-btn {
  margin-top: 2rem;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

/* ============ About page ============ */

.about-hero {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.about-intro {
  max-width: 800px;
  margin: 3rem auto 4rem;
  text-align: center;
}

.about-intro-text {
  font-size: 1.15rem;
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-intro-text strong {
  color: var(--color-primary);
  font-weight: 600;
}

.about-mission {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--color-primary-soft) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 24px;
}

.about-mission h2 {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-dark);
  margin: 0;
}

.about-mission h2 strong {
  color: var(--color-primary);
  font-weight: 600;
}

.about-content-mixed {
  max-width: 1000px;
  margin: 4rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-text-block {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-text-block.scroll-fade-in.animated {
  opacity: 1;
  transform: translateY(0);
}

.about-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-top: 0;
  margin-bottom: 1rem;
}

.about-text-block p {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-text-block p:last-child {
  margin-bottom: 0;
}

.about-text-block p strong {
  color: var(--color-primary);
  font-weight: 600;
}

.about-logo-block {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-logo-block.scroll-fade-in.animated {
  opacity: 1;
  transform: translateY(0);
}

.about-logo-img {
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: contain;
}

/* ============ Contact page ============ */

.contact-hero {
  padding-top: 4rem;
  padding-bottom: 3rem;
  text-align: center;
}

.contact-intro {
  max-width: 800px;
  margin: 2rem auto 0;
  font-size: 1.05rem;
  color: var(--color-muted);
  line-height: 1.8;
}

.contact-intro p {
  margin-bottom: 1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-info {
  padding: 2rem 0;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--color-dark);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-detail-item strong {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  font-weight: 600;
}

.contact-detail-item a {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.contact-detail-item a:hover {
  color: var(--color-dark);
}

.contact-detail-item span {
  font-size: 1rem;
  color: var(--color-dark);
}

.contact-form {
  border-radius: 18px;
  border: 1px solid var(--color-border);
  padding: 2.5rem 2rem;
  background: #ffffff;
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--color-dark);
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
  width: 100%;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  color: var(--color-muted);
  font-weight: 600;
}

.form-required {
  color: var(--color-primary);
  margin-left: 0.25rem;
}

.form-input,
.form-textarea {
  width: 100%;
  border-radius: 999px;
  border: 1px solid var(--color-dark);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-textarea {
  border-radius: 16px;
  min-height: 160px;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
}

.form-input:invalid:not(:placeholder-shown),
.form-textarea:invalid:not(:placeholder-shown) {
  border-color: #e74c3c;
}

.form-message {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.6;
  display: none;
}

.form-message:not(:empty) {
  display: block;
}

.form-message-success {
  background-color: var(--color-primary-soft);
  color: #00a67e;
  border: 1px solid var(--color-primary);
}

.form-message-error {
  background-color: #fee;
  color: #c33;
  border: 1px solid #e74c3c;
}

#submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ============ Footer ============ */

.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2rem 0 2.5rem;
  margin-top: 3rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-text {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.footer-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* ============ Responsive ============ */

@media (max-width: 960px) {
  .section {
    padding: 3rem 0;
  }

  .dialog-section,
  .columns-3,
  .pricing-grid,
  .about-body,
  .about-content,
  .contact-layout,
  .stats-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    display: block;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
    gap: 2rem;
  }

  .pricing-card {
    padding: 2.5rem 2rem;
  }

  .pricing-price {
    font-size: 2.5rem;
  }

  .about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .apolloiq-logo {
    justify-content: center;
    order: -1;
  }

  .dialog-section,
  .contact-layout,
  .about-body,
  .about-content-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .contact-layout {
    gap: 2rem;
  }

  .contact-info {
    order: 2;
  }

  .contact-form {
    order: 1;
  }

  .about-logo-section {
    position: relative;
    top: auto;
    margin-top: 2rem;
  }

  .about-mission {
    padding: 2rem 1.5rem;
  }

  .about-mission h2 {
    font-size: 1.4rem;
  }

  .about-intro {
    margin: 2rem auto 2.5rem;
    padding: 0 1rem;
  }

  .dialog-section {
    min-height: auto;
    padding: 2rem 0;
  }

  .dialog-text {
    max-width: 100%;
    padding-right: 0;
  }

  .dialog-image {
    position: relative;
    top: auto;
    width: 100%;
    height: 350px;
    margin-top: 1.5rem;
    transform: none;
    background-position: center;
  }

  .dialog-image.scroll-fade-in.animated {
    transform: none;
  }

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

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

  .step-content {
    min-height: 550px;
  }

  .step-image-container {
    height: 350px;
  }
}

@media (max-width: 768px) {
  /* Reduce section padding on mobile */
  .section {
    padding: 2rem 0 !important;
  }

  .hero {
    padding: 1.5rem 0 2rem;
  }

  .hero-secondary {
    padding: 2rem 0 1rem;
  }

  .hero-logo {
    max-width: 200px;
    margin-bottom: 1.5rem;
  }

  .hero-main-words {
    font-size: 2rem;
    margin: 1.5rem 0 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    padding: 0 1rem;
    line-height: 1.6;
  }

  .dialog-section-wrapper {
    padding: 2rem 0 !important;
  }

  .dialog-section-wrapper::before {
    backdrop-filter: blur(2px);
  }

  .dialog-section {
    min-height: auto;
    padding: 2rem 1.5rem;
    gap: 2rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: transparent;
    margin: 0 1rem;
    max-width: calc(100% - 2rem);
  }

  .dialog-section .container {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .dialog-text {
    max-width: 100%;
    padding: 0;
    text-align: center;
    margin-bottom: 0;
    width: 100%;
    order: 1;
  }

  .dialog-text h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-align: center;
    padding: 0;
    line-height: 1.3;
  }

  .dialog-text p {
    font-size: 0.95rem;
    margin: 0.6rem 0;
    text-align: center;
    padding: 0;
    line-height: 1.7;
  }

  .dialog-logo-tagline {
    margin-top: 1.5rem;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    justify-content: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 200, 150, 0.15);
  }

  .dialog-logo-tagline img {
    height: 50px;
  }

  .dialog-logo-tagline span {
    text-align: center;
    font-size: 0.95rem;
  }

  .dialog-image {
    position: relative;
    top: auto;
    width: 100%;
    height: 220px;
    margin-top: 0;
    transform: none;
    background-position: center;
    background-size: contain;
    order: 2;
    overflow: visible;
  }

  .dialog-image.scroll-fade-in.animated {
    transform: none;
  }

  .how-it-works-section {
    padding: 1rem 0 3rem !important;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .columns-3 {
    gap: 2rem;
  }

  .subsection-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .step-list p,
  .feature-list p,
  .safety-list p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .icon-row {
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  .icon-row .icon-gdpr,
  .icon-row .icon-iso {
    height: 120px;
  }

  .icon-row .icon-microsoft {
    height: 50px;
  }

  .stats-section {
    padding: 2rem 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .about-section {
    padding: 2rem 0;
  }

  .about-content {
    gap: 2rem;
    margin-top: 2rem;
  }

  .about-text-content {
    font-size: 0.95rem;
  }

  .about-text-content p {
    margin-bottom: 1rem;
  }

  .cta-section {
    padding: 3rem 0;
  }

  .cta-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .cta-text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

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

  .navbar {
    padding: 0.75rem 1rem;
    position: relative;
    min-height: 60px;
  }

  .logo-img {
    height: 45px;
  }

  .navbar-links {
    display: none !important;
  }

  .nav-actions {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
    order: 3;
    margin-left: auto;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .mobile-menu-toggle span {
    background: var(--color-dark);
    height: 2.5px;
  }

  .mobile-menu {
    display: block !important;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1rem;
  }

  .site-footer {
    padding: 1.5rem 0;
    margin-top: 2rem;
  }

  .contact-hero {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }

  .contact-intro {
    font-size: 0.95rem;
    padding: 0 1rem;
    margin: 1.5rem auto 0;
  }

  .contact-layout {
    gap: 2rem;
  }

  .contact-form {
    padding: 1.5rem 1rem;
  }

  .contact-form-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .contact-info-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

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

  .pricing-hero {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .pricing-subtitle {
    font-size: 1rem;
    margin-top: 0.75rem;
    margin-bottom: 2rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing-price {
    font-size: 2.5rem;
  }

  .about-hero {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .about-intro {
    margin: 2rem auto 2rem;
    padding: 0 1rem;
  }

  .about-intro-text {
    font-size: 1rem;
  }

  .about-mission {
    padding: 1.5rem 1rem;
    margin-bottom: 2rem;
  }

  .about-mission h2 {
    font-size: 1.3rem;
  }
}

/* ============ Step-by-step Animation ============ */
.how-it-works-section {
  padding: 0rem 0 5rem;
}

.steps-animation-wrapper {
  margin: 3rem 0 4rem;
}

.step-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.step-dots {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.step-dot.active {
  background: var(--color-primary);
  transform: scale(1.3);
}

.step-dot.completed {
  background: var(--color-primary);
}

.step-dot.completed::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 8px;
  font-weight: bold;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: var(--color-border);
  transition: all 0.5s ease;
}

.step-connector.active {
  background: var(--color-primary);
}

.nav-buttons {
  display: flex;
  gap: 1rem;
  margin-left: 2rem;
}

.nav-btn {
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--color-dark);
  background: white;
  color: var(--color-dark);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
}

.nav-btn:hover:not(:disabled) {
  background: var(--color-dark);
  color: white;
  transform: translateY(-2px);
}

.nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.step-content {
  position: relative;
  min-height: 700px;
  height: 700px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 2rem;
}

.step-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(50px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  overflow: hidden;
}

.step-panel.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: all;
  z-index: 10;
  will-change: opacity, transform;
}

.step-panel.prev {
  transform: translateX(-50px) scale(0.95);
}

.step-image-container {
  width: 100%;
  max-width: 900px;
  height: 380px;
  max-height: 380px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .step-image-container {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
}

.step-panel.active .step-image-container {
  opacity: 1;
  transform: scale(1);
  will-change: opacity, transform;
}

.step-image-placeholder {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.step-image-placeholder img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Touch-friendly interactions */
@media (max-width: 768px) {
  .step-dot,
  .nav-btn {
    -webkit-tap-highlight-color: rgba(0, 200, 150, 0.2);
  }

  .step-image-placeholder img {
    border-radius: 8px;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
  }
}

.step-text-content {
  width: 100%;
  max-width: 800px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.4s;
  flex-shrink: 0;
}

.step-panel.active .step-text-content {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.step-description {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--color-primary);
  transition: width 0.5s ease;
  z-index: 20;
}

@media (max-width: 768px) {
  .steps-animation-wrapper {
    margin: 2rem 0 1.5rem;
    width: 100%;
  }

  .step-navigation {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
    padding: 0 1rem;
  }

  .step-dots {
    gap: 0.5rem;
    justify-content: center;
  }

  .step-dot {
    width: 10px;
    height: 10px;
  }

  .step-connector {
    width: 30px;
  }

  .nav-buttons {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .nav-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    flex: 1;
    max-width: 140px;
  }

  .step-content {
    min-height: 500px;
    height: 500px;
    padding: 0;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .step-panel {
    padding: 1.5rem 1rem;
    gap: 1.25rem;
    flex-direction: column;
    justify-content: flex-start;
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: auto;
    opacity: 0;
    transform: translateX(0);
    pointer-events: none;
    transition: opacity 0.5s ease;
    display: flex;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .step-panel.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    z-index: 10;
    position: absolute !important;
  }

  .step-image-container {
    width: 100%;
    height: 240px;
    max-width: 100%;
    border-radius: 12px;
    margin: 0 0 1rem 0;
    opacity: 0;
    transform: scale(0.95);
    z-index: 5;
    position: relative;
    flex-shrink: 0;
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
    padding: 0;
    order: 1;
  }

  .step-panel.active .step-image-container {
    opacity: 1;
    transform: scale(1);
  }

  .step-image-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .step-image-placeholder img {
    border-radius: 8px;
    width: 100% !important;
    height: auto !important;
    max-width: 100%;
    max-height: 240px;
    object-fit: contain !important;
    display: block !important;
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
  }

  .step-text-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    order: 2;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
  }

  .step-panel.active .step-text-content {
    opacity: 1;
    transform: translateY(0);
  }

  .step-number {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .step-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }

  .step-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
  }

  .progress-bar {
    height: 3px;
  }

  /* Reduce spacing in how it works section */
  .how-it-works-section .columns-3 {
    margin-top: 2rem;
    gap: 1.5rem;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .section {
    padding: 1.5rem 0 !important;
  }

  .hero-secondary {
    padding: 1.5rem 0 0.75rem;
  }

  .hero-main-words {
    font-size: 1.75rem;
    margin: 1rem 0 1.5rem;
  }

  .hero-logo {
    max-width: 160px;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    padding: 0 0.75rem;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .step-content {
    min-height: 450px;
    height: 450px;
    border-radius: 12px;
  }

  .step-panel {
    padding: 1.25rem 0.75rem;
    gap: 1rem;
    height: 100%;
    min-height: auto;
    transition: opacity 0.5s ease;
  }

  .step-image-container {
    height: 200px;
    max-height: 35vh;
    min-height: 180px;
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.95);
    z-index: 5;
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
    flex-shrink: 0;
    padding: 0;
    margin: 0 0 0.75rem 0;
  }

  .step-panel.active .step-image-container {
    opacity: 1;
    transform: scale(1);
  }

  .step-image-placeholder {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .step-image-placeholder img {
    width: 100% !important;
    height: auto !important;
    max-width: 100%;
    max-height: 200px;
    object-fit: contain !important;
    display: block !important;
    padding: 0;
    margin: 0;
  }

  .step-image-placeholder img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
  }

  .step-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .step-description {
    font-size: 0.85rem;
  }

  .step-number {
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
  }

  .nav-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    max-width: 120px;
  }

  .step-dots {
    gap: 0.4rem;
  }

  .step-dot {
    width: 8px;
    height: 8px;
  }

  .step-connector {
    width: 25px;
  }

  .dialog-section-wrapper {
    padding: 1.5rem 0 !important;
  }

  .dialog-section {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
    margin: 0 0.75rem;
    max-width: calc(100% - 1.5rem);
    background: transparent;
  }

  .dialog-text h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .dialog-text p {
    font-size: 0.9rem;
    margin: 0.5rem 0;
  }

  .dialog-logo-tagline {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    gap: 0.6rem;
  }

  .dialog-logo-tagline img {
    height: 45px;
  }

  .dialog-logo-tagline span {
    font-size: 0.9rem;
  }

  .dialog-image {
    height: 200px;
  }

  .stats-grid {
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .logo-img {
    height: 45px;
  }

  .navbar {
    padding: 0.5rem 0.75rem;
  }

  .mobile-menu-content {
    width: 90%;
    max-width: 280px;
  }

  .mobile-logo {
    height: 40px;
  }
}
