/* Index Page Specific Styles - Specifys.ai */

/* ===== FONT FAMILY SETUP ===== */
/* Ensure all text on the home page uses Montserrat font */
.hero-section,
.why-section,
.extra-sections {
  font-family: "Montserrat", sans-serif;
}

.hero-section h1,
.hero-section h2,
.hero-section h3,
.why-section h1,
.why-section h2,
.why-section h3,
.section h1,
.section h2,
.section h3 {
  font-family: "Montserrat", sans-serif;
}

.section p,
.section span,
.section div,
.section li,
.section a:not(.btn):not(.pricing-btn):not(.tool-link):not(.cta-button) {
  font-family: "Montserrat", sans-serif;
}

/* ===== LOGO STYLES ===== */
/* Using higher specificity instead of !important */
body .logo a,
body .logo-text {
  color: #333;
  font-size: 1.2rem;
}

body .logo-dot {
  color: #FF6B35;
}

body .logo a:hover {
  color: #444;
}

body .logo a:hover .logo-dot {
  color: #FF8551;
}

/* Mobile logo adjustments */
@media (max-width: 768px) {
  body .logo a,
  body .logo-text {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  body .logo a,
  body .logo-text {
    font-size: 1rem;
  }
}
/* ===== MENU STYLES ===== */
/* Menu Toggle Button */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #333;
  border: none;
  border-radius: 8px;
  font-size: 1.3rem;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.menu-toggle:hover {
  background: #FF6B35;
}

/* Clip-path menu */
.clip-path-menu {
  position: fixed;
  top: 80px;
  left: 20px;
  width: 300px;
  background: transparent;
  color: rgba(0, 0, 0, 0.87);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

.clip-path-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.clip-path-menu a {
  display: block;
  line-height: 50px;
  padding: 0 20px;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.15s ease, color 0.15s ease;
  background: white;
  margin: 2px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-10px);
}

.clip-path-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

.clip-path-menu.active a:nth-child(2) {
  transition-delay: 0.1s;
}

.clip-path-menu.active a:nth-child(3) {
  transition-delay: 0.2s;
}

.clip-path-menu.active a:nth-child(4) {
  transition-delay: 0.3s;
}

.clip-path-menu.active a:nth-child(5) {
  transition-delay: 0.4s;
}

.clip-path-menu.active a:nth-child(6) {
  transition-delay: 0.5s;
}

.clip-path-menu a:hover {
  background: #FF6B35;
  color: white;
}

/* ===== HERO SECTION ===== */
.hero-section {
  width: 100%;
  background: #333;
  padding: 8rem 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  position: relative;
}

/* Vanta.NET container */
#vanta-net {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  min-height: 100%;
  min-width: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

#vanta-net.visible {
  opacity: 1;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-button-container {
  margin: 0 0 0.5rem 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  order: 0;
  flex-wrap: wrap;
}

.start-now-subtext {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.77rem, 1.75vw, 0.98rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0 0 3rem 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
}

.hero-button-container .hero-cta-button-new.fade-in ~ *,
.hero-button-container .hero-cta-button-secondary.fade-in ~ * {
  /* This will trigger when buttons fade in */
}

.start-now-subtext.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-mcp-teaser {
  display: inline-block;
  margin: 0 0 2rem 0;
  padding: 0.4rem 0.85rem;
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s, background 0.2s, border-color 0.2s, color 0.2s;
}
.hero-mcp-teaser.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-mcp-teaser:hover,
.hero-mcp-teaser.visible:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  text-decoration: none;
}
.hero-mcp-teaser-label {
  font-weight: 700;
  margin-right: 0.25rem;
}

.hero-cta-button {
  font-family: "Montserrat", sans-serif;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.hero-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  background: var(--primary-hover);
}

/* New Orange Start Button */
.hero-cta-button-new {
  min-width: 200px;
  width: auto;
  padding: 0 24px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #FF6B35;
  border-radius: 5px;
  color: white;
  font-weight: 600;
  border: none;
  position: relative;
  cursor: pointer;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.116);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, background-color 0.5s ease;
}

/* Secondary Button */
.hero-cta-button-secondary {
  min-width: 160px;
  width: auto;
  padding: 0 24px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: white;
  border: none;
  border-radius: 5px;
  color: #FF6B35;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, background-color 0.3s ease, color 0.3s ease;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.116);
}

.hero-cta-button-secondary.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.hero-cta-button-secondary:hover {
  background-color: #fff;
  color: #FF8551;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  text-decoration: none;
}

.hero-cta-button-secondary:active {
  transform: scale(0.97);
  transition-duration: 0.2s;
  text-decoration: none;
}

.hero-cta-button-new.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.hero-cta-button-new.fade-in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes compassRotation {
  0% {
    transform: rotate(0deg);
  }
  12.5% {
    transform: rotate(45deg);
  }
  25% {
    transform: rotate(-20deg);
  }
  37.5% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(15deg);
  }
  62.5% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(120deg);
  }
  87.5% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hero-cta-button-new .svgIcon {
  height: 25px;
  transition-duration: 1.5s;
  animation: compassRotation 8s ease-in-out infinite;
}

.hero-cta-button-new .bell path {
  fill: white;
}

.hero-cta-button-new:hover {
  background-color: #FF8551;
  transition-duration: 0.5s;
}

.hero-cta-button-new:active {
  transform: scale(0.97);
  transition-duration: 0.2s;
}

.hero-cta-button-new:hover .svgIcon {
  animation-duration: 2s;
}

/* Hero Description */
.hero-description {
  margin-top: 0;
  margin-bottom: 2.5rem;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  position: relative;
}

.hero-description-text {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 0.1rem 0;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.hero-title-line1 {
  white-space: nowrap;
  display: inline-block;
}

.hero-title-orange {
  color: #FF6B35;
}

.hero-tagline {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.77rem, 1.75vw, 0.98rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0.3rem 0 2.5rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.hero-description-text.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.hero-subtitle {
  display: none; /* Removed - replaced with description */
}

/* Fade Out Animation */
.hero-content.fade-out {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.8s ease-out;
}

.hero-content.fade-out .hero-subtitle {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.6s ease-out 0.2s;
}

.hero-content.fade-out .hero-button-container {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.6s ease-out 0.3s;
}

.hero-content.fade-out .hero-description {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.6s ease-out 0.15s;
}

.hero-content.fade-out .spec-cards-showcase {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out 0.4s;
  pointer-events: none;
}

/* ===== SPEC CARDS SHOWCASE ===== */
.spec-cards-showcase {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

.spec-card-square {
  position: relative;
  aspect-ratio: 1;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
  border: none;
  border-radius: 12px;
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-8px);
  }
}
.spec-card-square:hover,
.spec-card-square.active {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.spec-card-square .spec-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: #cccccc;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Higher specificity for fade-in state */
.spec-card-square .spec-icon.spec-icon.fade-in {
  opacity: 1;
  animation: floatUpDown 4s ease-in-out infinite;
}

.spec-card-square:nth-child(1) .spec-icon {
  animation-duration: 3.5s;
  animation-delay: 0s;
}

.spec-card-square:nth-child(2) .spec-icon {
  animation-duration: 4.2s;
  animation-delay: 0.3s;
}

.spec-card-square:nth-child(3) .spec-icon {
  animation-duration: 3.8s;
  animation-delay: 0.6s;
}

.spec-card-square:nth-child(4) .spec-icon {
  animation-duration: 4.5s;
  animation-delay: 0.2s;
}

.spec-card-square:nth-child(5) .spec-icon {
  animation-duration: 3.6s;
  animation-delay: 0.5s;
}

.spec-card-square:nth-child(6) .spec-icon {
  animation-duration: 4s;
  animation-delay: 0.4s;
}

/* Higher specificity for icon colors */
.spec-card-square .spec-icon.spec-icon i,
.spec-card-square .spec-icon.spec-icon .fa {
  color: #cccccc;
  font-size: 3rem;
  opacity: 1;
}

/* Higher specificity for hover/active states */
.spec-card-square:hover .spec-icon.spec-icon,
.spec-card-square.active .spec-icon.spec-icon {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 1;
  animation: none;
}

/* Higher specificity for icon opacity on hover/active */
.spec-card-square:hover .spec-icon.spec-icon i,
.spec-card-square:hover .spec-icon.spec-icon .fa,
.spec-card-square.active .spec-icon.spec-icon i,
.spec-card-square.active .spec-icon.spec-icon .fa {
  opacity: 0;
  visibility: hidden;
}

.spec-card-square .spec-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.spec-card-square:hover .spec-content,
.spec-card-square.active .spec-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 5;
}

.spec-card-square .spec-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
  text-align: center;
}

.spec-card-square .spec-content p {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.4;
}

/* ===== MODERN INPUT CONTAINER - CLEAN DESIGN ===== */
.modern-input-container {
  background: rgba(30, 30, 35, 0.95);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
  max-width: 900px;
  width: 95%;
  font-family: "Montserrat", sans-serif;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, visibility 0.6s ease-out;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(60px);
  z-index: 10;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modern-input-container.hidden {
  display: none;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.modern-input-container:not(.hidden) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modern-input-container.fade-in {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ===== MOBILE RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  /* Questions Display - Mobile */
  .questions-display {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    margin: 0;
    padding: 20px 10px 0;
    width: 100%;
    max-width: 100%;
    opacity: 1;
    visibility: visible;
    order: -1;
  }

  .questions-display.hidden {
    display: none;
  }

  .questions-display:not(.hidden) {
    display: flex;
  }

  /* Modern Input Container - Mobile */
  .modern-input-container {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 0 10px 20px;
    opacity: 1;
    visibility: visible;
  }

  .modern-input-container.hidden {
    display: none;
  }

  .modern-input-container:not(.hidden) {
    display: flex;
  }

  /* Typography adjustments for mobile */
  .current-question {
    font-size: 24px;
    line-height: 1.2;
  }

  .question-detail {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  /* Input area adjustments */
  .input-area {
    padding: 14px 16px;
  }

  .main-input {
    font-size: 15px;
    min-height: 80px;
    line-height: 1.5;
  }

  /* Controls adjustments */
  .input-controls {
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 12px;
  }

  .left-controls {
    flex-wrap: wrap;
    gap: 6px;
  }

  .progress-dots {
    order: -1;
    width: 100%;
    margin-bottom: 8px;
  }

  .send-btn {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }
}
/* Input instruction removed - text is now in textarea placeholder */

/* Demo section */
.demo-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0;
}

/* Progress dots */
.progress-dots {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  justify-content: center;
  width: 100%;
  flex: 1;
}

.progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF6B35;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.progress-dot:hover {
  transform: scale(1.2);
  background: #FF8551;
}

.progress-dot.completed {
  background: #ff6b35;
  box-shadow: 0 0 8px rgba(255, 107, 53, 0.4);
}

.progress-dot.current {
  background: #ff6b35;
  transform: scale(1.8);
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.6);
  width: 12px;
  height: 12px;
}

.progress-dot.error {
  background: #ff3333;
  animation: pulse-red 0.6s ease-in-out;
}

@keyframes pulse-red {
  0%, 100% {
    box-shadow: 0 0 8px rgba(255, 51, 51, 0.4);
  }
  50% {
    box-shadow: 0 0 16px rgba(255, 51, 51, 0.8);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  75% {
    transform: translateX(10px);
  }
}
.input-area {
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  margin: 0;
}

.input-area:focus-within {
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.main-input {
  width: 100%;
  border: none;
  outline: none;
  resize: none;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100px;
  max-height: 300px;
  font-family: inherit;
  background: transparent;
  color: #ffffff;
  padding: 0;
  margin: 0;
}

.main-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.character-count-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
  padding-right: 0;
}

.character-count {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
  font-family: inherit;
  font-weight: 500;
}

.character-count.warning {
  color: #FF6B35;
}

.character-count.danger {
  color: #ff3333;
  font-weight: 600;
}

.input-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 16px;
  margin: 0;
}

.input-controls .left-controls {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-controls .progress-dots {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.input-controls .send-btn {
  flex: 0 0 auto;
  margin-left: auto;
}

.left-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.control-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.control-btn.selected {
  background: #FF6B35;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.control-btn.selected svg {
  stroke: white;
}

.control-btn.recording {
  background: #ff4444;
  color: white;
  animation: pulse 1s infinite;
}

.control-btn.recording svg {
  stroke: white;
}

/* Switch to Voice Button */
.switch-to-voice-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--primary-color, #FF6B35);
  color: white;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.switch-to-voice-btn:hover {
  background: var(--primary-hover, #FF8551);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.switch-to-voice-btn .btn-label {
  display: inline-block;
}

.switch-to-voice-btn svg {
  width: 16px;
  height: 16px;
  color: white;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/* Small tooltips for platform buttons */
#phoneBtn:hover::after,
#computerBtn:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
  z-index: 1000;
  margin-bottom: 4px;
  animation: tooltipFadeIn 0.2s ease-out;
}

#phoneBtn:hover::before,
#computerBtn:hover::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 3px solid transparent;
  border-top-color: #333;
  margin-bottom: 1px;
  z-index: 1000;
}

.lightbulb-tooltip {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #2c2c2c;
  color: white;
  border: 1px solid #404040;
  border-radius: 12px;
  padding: 20px 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  max-width: 90%;
  width: 650px;
  white-space: pre-line;
  line-height: 1.6;
}

.lightbulb-tooltip.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.lightbulb-tooltip::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 20px;
  border: 6px solid transparent;
  border-bottom-color: #f8f9fa;
}

.lightbulb-tooltip::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 19px;
  border: 7px solid transparent;
  border-bottom-color: #dee2e6;
}

@keyframes tooltipFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
/* Bottom Links Container */
.hero-bottom-links {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 0 20px;
  z-index: 2;
}

/* Show bottom links even when questions are displayed */
.hero-section:has(.questions-display:not(.hidden)) .hero-bottom-links {
  display: flex;
}

@media (max-width: 768px) {
  .hero-bottom-links {
    bottom: 20px;
    gap: 30px;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero-bottom-links {
    bottom: 15px;
    gap: 25px;
    padding: 0 10px;
  }
  .bottom-link {
    font-size: 14px;
  }
}

.bottom-link {
  color: #D4541F;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.bottom-link:hover {
  color: #FF6B35;
  text-decoration: none;
}

.separator {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 4px;
}

.send-btn {
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 12px 24px;
  border-radius: 10px;
  background: #FF6B35;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: white;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.send-btn:hover:not(:disabled) {
  background: #FF8551;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
  transform: translateY(-1px);
}

.send-btn svg {
  width: 20px;
  transition: transform 0.3s ease-in-out;
}

.send-btn:hover:not(:disabled) svg {
  transform: translateX(5px);
}

.send-btn:active:not(:disabled) {
  transform: scale(0.95);
}

.send-btn:disabled {
  background: #cccccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.send-btn:disabled:hover {
  background: #cccccc;
  transform: none;
}

.send-btn:disabled svg {
  transform: none;
}

.demo-btn {
  background: #ff6b35;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.demo-btn:hover {
  background: #e55a2b;
  transform: translateY(-1px);
}

.demo-btn:active {
  transform: translateY(0);
}

/* ===== EXTRA SECTIONS ===== */
.extra-sections {
  width: 100%;
  max-width: 1200px;
  padding: 4rem 1.5rem;
  padding-top: 60px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5;
}

.why-section.prompt-section {
  margin-top: 150px;
}

.section {
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: calc(0.2s * var(--section-index));
  text-align: center;
  width: 100%;
}

/* Choose Your Plan section - darker gray background */
.extra-sections .section[style*="--section-index: 0"] {
  background-color: #e5e5e5;
  padding: 80px 20px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  position: relative;
}

.section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #333;
  font-family: "Montserrat", sans-serif;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section h2.revealed {
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 1.5rem;
}

/* Fade in effect for section content */
.section > p,
.section .tools-showcase,
.section .stats-list,
.section .pricing-grid-home,
.section .benefits-container,
.section .use-cases-list,
.section .faq-list,
.section .testimonials-container {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.section.revealed > p,
.section.revealed .tools-showcase,
.section.revealed .stats-list,
.section.revealed .pricing-grid-home,
.section.revealed .benefits-container,
.section.revealed .use-cases-list,
.section.revealed .faq-list,
.section.revealed .testimonials-container {
  opacity: 1;
  transform: translateY(0);
}

.section p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  color: #333;
  font-family: "Montserrat", sans-serif;
  max-width: 800px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

/* ===== TOOLS SHOWCASE ===== */
.tools-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 800px;
  margin: 2rem auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.tool-square {
  position: relative;
  aspect-ratio: 1;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-square:hover,
.tool-square.active {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.tool-square .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: #fff;
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tool-square:hover .icon,
.tool-square.active .icon {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
}

.tool-square .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.tool-square:hover .content,
.tool-square.active .content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.tool-square .content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
  text-align: center;
}

.tool-square .content p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.4;
}

.tool-link {
  display: inline-block;
  background: #FF6B35;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Higher specificity for tool link hover */
.tool-link.tool-link:hover {
  background: #FF8551;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* ===== STATS SECTION ===== */
.stats-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1rem;
  color: #333;
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
  max-width: 800px;
  margin: 2rem auto;
  background: #333;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.comparison-header {
  background: #333;
  color: #fff;
  padding: 1.5rem;
  text-align: center;
}

.comparison-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #fff;
}

.comparison-header p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
  color: #fff;
}

.comparison-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
}

.comparison-column {
  padding: 1.5rem;
}

.comparison-column:first-child {
  border-right: 2px solid #f0f0f0;
}

.comparison-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #f0f0f0;
}

.comparison-title i {
  font-size: 1.3rem;
  color: #666;
}

.comparison-title h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.comparison-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  padding: 0.4rem 0;
}

.feature-item i {
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
}

.feature-item i.fa-check {
  color: #28a745;
}

.feature-item i.fa-times {
  color: #dc3545;
}

.feature-item span {
  color: #333;
  font-weight: 500;
}

.feature-item.disabled span {
  color: #999;
  text-decoration: line-through;
}

.feature-item.premium {
  background: #333;
  border: 2px solid #333;
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
  margin: 0.2rem 0;
  position: relative;
}

.feature-item.premium::before {
  content: "REGISTERED";
  position: absolute;
  top: -8px;
  right: 8px;
  background: #333;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.feature-item.premium i {
  color: #fff;
}

.feature-item.premium span {
  color: #fff;
  font-weight: 600;
}

.comparison-cta {
  background: #333;
  padding: 1.5rem;
  text-align: center;
  border-top: 2px solid #555;
}

.comparison-cta .cta-button {
  background: #fff;
  color: #333;
}

.comparison-cta .cta-button:hover {
  background: #f0f0f0;
}

/* ===== PRICING TABLE HOME ===== */
.pricing-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.pricing-card-home {
  background: #FFF4F0;
  border: 2px solid #FF6B35;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card-home:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
}

.pricing-card-home.highlight {
  border-color: #FF6B35;
  background: #FFF4F0;
}

.pricing-card-home.highlight .badge {
  background: #FF6B35;
}

.pricing-card-home.pro {
  border-color: #FF6B35;
  background: #FFF4F0;
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #28a745;
  color: white;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-card-home.pro .badge {
  background: #FF6B35;
}

.pricing-card-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  color: #333;
  font-weight: 600;
}

.pricing-card-header p {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.pricing-card-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 1rem;
  flex-grow: 0;
}

.currency {
  font-size: 1rem;
  color: #666;
}

.amount {
  font-size: 2.25rem;
  font-weight: 700;
  color: #333;
  margin: 0 2px;
}

.period {
  font-size: 0.9rem;
  color: #666;
}

.pricing-card-features {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

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

.pricing-card-features li {
  display: flex;
  align-items: center;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: #333;
}

.pricing-card-features li i {
  color: #28a745;
  margin-right: 0.6rem;
  font-size: 0.9rem;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 0.65rem 1.2rem;
  background: #2a2a2a;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.pricing-btn:hover {
  background: #3a3a3a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pricing-btn.highlight-btn {
  background: #2a2a2a;
  color: white;
}

.pricing-btn.highlight-btn:hover {
  background: #3a3a3a;
  color: white;
}

.pricing-footer {
  text-align: center;
  color: #666;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* Tablet Responsive */
@media (max-width: 968px) and (min-width: 600px) {
  .pricing-grid-home {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding: 0 1.5rem;
  }
}
/* Mobile Responsive */
@media (max-width: 599px) {
  .pricing-grid-home {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 500px;
    padding: 0 1rem;
  }
  .pricing-card-home {
    padding: 1.25rem;
  }
  .amount {
    font-size: 1.75rem;
  }
}
/* ===== BENEFITS SECTION ===== */
.benefits-container {
  max-width: 800px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
}

.benefit-card {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2rem;
  color: #333;
  margin-right: 1rem;
}

.benefit-content {
  text-align: center;
  flex: 1;
}

.benefit-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* ===== USE CASES SECTION ===== */
.use-cases-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.use-case-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.use-case-item:hover {
  transform: translateY(-5px);
}

.use-case-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.use-case-item p {
  font-size: 1rem;
  color: #333;
}

/* ===== FAQ SECTION ===== */
.faq-list {
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
}

.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #FF6B35;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question.open i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 1rem;
  color: #333;
  padding: 0 2rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
  line-height: 1.8;
}

.faq-answer.open {
  max-height: 500px;
  padding: 2rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
}

.testimonials-gallery {
  display: flex;
}

.testimonials-gallery.animate {
  animation: scrollTestimonials 60s linear infinite;
}

.testimonials-gallery:hover {
  animation-play-state: paused;
}

.testimonial-card {
  flex: 0 0 300px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 1.5rem;
  margin-right: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* ===== CTA BUTTONS ===== */
.cta-button {
  display: inline-block;
  background: #FF6B35;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.cta-button:hover {
  background: #FF8551;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

/* ===== MODALS (Registration, etc.) ===== */
.welcome-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-out;
}

.welcome-content {
  background: #fff;
  width: 90%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: slideInUp 0.4s ease-out;
  position: relative;
}

.welcome-header {
  background: #FF6B35;
  color: #fff;
  padding: 2rem 2rem 1rem;
  text-align: center;
}

.welcome-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.welcome-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.welcome-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.welcome-body {
  padding: 2rem;
  text-align: center;
}

.welcome-features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.feature-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  min-width: 100px;
}

.feature-highlight i {
  font-size: 1.5rem;
  color: #FF6B35;
}

.feature-highlight span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

.welcome-actions {
  display: flex;
  gap: 1rem;
  padding: 1rem 2rem 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-continue {
  background: #f0f0f0;
  color: #666;
  border: none;
  border-radius: 5px;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-continue:hover {
  background: #e0e0e0;
}

.btn-register {
  background: #555;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(85, 85, 85, 0.3);
}

.btn-register:hover {
  background: #666;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(85, 85, 85, 0.4);
}

/* ===== MAINTENANCE MODAL ===== */
.maintenance-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-out;
}

.maintenance-content {
  background: #fff;
  width: 90%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: slideInUp 0.4s ease-out;
}

.maintenance-header {
  background: linear-gradient(135deg, #666, #888);
  color: #fff;
  padding: 2rem 2rem 1rem;
  text-align: center;
  position: relative;
}

.maintenance-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.maintenance-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.maintenance-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.maintenance-body {
  padding: 2rem;
  text-align: center;
}

.maintenance-body p {
  margin: 0;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

.maintenance-body p strong {
  color: #666;
  font-weight: 600;
}

.maintenance-actions {
  display: flex;
  gap: 1rem;
  padding: 1rem 2rem 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-understand {
  background: #FF6B35;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 0.8rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-understand:hover {
  background: #FF8551;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes gentleBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1500px);
  }
}
/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .use-cases-list {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Tablet breakpoint for spec cards */
  .spec-cards-showcase {
    grid-template-columns: repeat(3, 1fr);
    max-width: 800px;
    gap: 6px;
  }
  .spec-card-square .spec-icon {
    font-size: 2.5rem;
  }
  .spec-card-square .spec-icon i,
  .spec-card-square .spec-icon .fa {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
    padding: 5rem 0 0 0; /* Space for header */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: visible;
  }
  .hero-section:has(.questions-display:not(.hidden)) {
    min-height: auto;
    height: auto;
    overflow: visible;
    padding-top: 0;
  }
  
  .hero-section:has(.questions-display:not(.hidden)) .hero-content {
    display: none;
  }
  .hero-cta-button-new {
    min-width: 180px;
    width: auto;
    padding: 0 20px;
    height: 50px;
    font-size: 1rem;
  }
  
  .hero-cta-button-secondary {
    min-width: 140px;
    width: auto;
    padding: 0 20px;
    height: 50px;
    font-size: 1rem;
    background-color: white;
    color: #FF6B35;
    border: none;
  }
  .hero-description {
    margin-top: 0;
    margin-bottom: 2rem;
    padding: 0 15px;
  }
  .hero-description-text {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
  }
  .hero-tagline {
    font-size: clamp(0.665rem, 1.4vw, 0.84rem);
    margin: 0.3rem 0 2rem 0;
  }
  .hero-button-container {
    margin-bottom: 2rem;
  }
  .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 15px;
  }
  .hero-bottom-links {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: auto;
    padding-bottom: 0;
  }
  .spec-cards-showcase {
    display: none; /* Hide icons container on mobile */
  }
  .spec-card-square .spec-icon {
    font-size: 2rem;
  }
  .spec-card-square .spec-icon i,
  .spec-card-square .spec-icon .fa {
    font-size: 2rem;
  }
  .spec-card-square .spec-content h3 {
    font-size: 0.95rem;
  }
  .spec-card-square .spec-content p {
    font-size: 0.75rem;
  }
  .extra-sections {
    padding: 2rem 8px;
    padding-top: 80px;
    margin-top: 0;
  }
  
  
  .why-section[data-section="2"] {
    padding: 60px 20px;
  }
  .section {
    padding: 0 8px;
  }
  .tools-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    border-radius: 12px;
  }
  .stats-list {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 8px;
  }
  .use-cases-list {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 8px;
  }
  .benefits-container {
    padding: 0 8px;
  }
  .benefit-card {
    padding: 12px;
    margin-bottom: 8px;
  }
  .faq-list {
    padding: 0 8px;
  }
  .comparison-table {
    margin: 1rem 8px;
  }
  .comparison-content {
    grid-template-columns: 1fr;
  }
  .comparison-column {
    padding: 12px;
  }
  .comparison-column:first-child {
    border-right: none;
    border-bottom: 1px solid #eee;
  }
  .testimonials-gallery {
    flex-direction: column;
    animation: none;
  }
  .testimonial-card {
    margin-bottom: 1rem;
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  .hero-section {
    min-height: 100vh;
    height: 100vh;
    padding: 4.5rem 0 0 0; /* Space for header */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
  }
  .hero-cta-button-new {
    min-width: 160px;
    width: auto;
    padding: 0 18px;
    height: 48px;
    font-size: 0.95rem;
  }
  
  .hero-cta-button-secondary {
    min-width: 130px;
    width: auto;
    padding: 0 18px;
    height: 48px;
    font-size: 0.95rem;
    background-color: white;
    color: #FF6B35;
    border: none;
  }
  
  .hero-button-container {
    gap: 12px;
  }
  .hero-description {
    margin-top: 0;
    margin-bottom: 1.5rem;
    padding: 0 10px;
  }
  .hero-description-text {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin: 0 0 2rem 0;
  }
  .hero-tagline {
    font-size: clamp(0.595rem, 1.26vw, 0.7rem);
    margin: 0.3rem 0 2rem 0;
  }
  .hero-button-container {
    margin-bottom: 1rem;
  }
  .spec-cards-showcase {
    display: none; /* Hide icons container on mobile */
  }
  .spec-card-square .spec-icon {
    font-size: 1.8rem;
  }
  .spec-card-square .spec-icon i,
  .spec-card-square .spec-icon .fa {
    font-size: 1.8rem;
  }
  .spec-card-square .spec-content {
    padding: 0.8rem;
  }
  .spec-card-square .spec-content h3 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }
  .spec-card-square .spec-content p {
    font-size: 0.7rem;
    margin-bottom: 0.8rem;
  }
  .extra-sections {
    padding: 1.5rem 6px;
    padding-top: 40px;
    margin-top: 0;
  }
  
  .extra-sections .section[style*="--section-index: 0"] {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    position: relative;
    padding: 40px 15px;
  }
  
  .why-section[data-section="2"] {
    padding: 40px 15px;
  }
  .section {
    padding: 0 6px;
  }
}
/* ===== QUESTIONS DISPLAY - CLEAN DESIGN ===== */
.questions-display {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(-140px);
  z-index: 15;
  width: 95%;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, visibility 0.6s ease-out;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.questions-display.hidden {
  display: none;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.questions-display:not(.hidden) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.questions-display.fade-in {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.questions-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  width: 100%;
}

.current-question {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  width: 100%;
}

.typing-mode-toggle {
  flex-shrink: 0;
  margin-top: 8px;
}

.typing-mode-toggle .mode-label {
  color: #FF6B35;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease, background 0.3s ease;
  user-select: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
}

.typing-mode-toggle .mode-label:hover {
  color: #FF8551;
  background: rgba(255, 107, 53, 0.1);
}

.typing-mode-toggle .mode-label.active {
  color: #FF6B35;
  font-weight: 600;
}

.question-detail {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #cccccc;
  text-align: center;
  line-height: 1.6;
  margin: 0 0 32px 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  opacity: 0.9;
}

.current-question.fade-out,
.question-detail.fade-out {
  opacity: 0;
  filter: blur(2px);
}

.current-question.fade-in,
.question-detail.fade-in {
  opacity: 1;
  filter: blur(0);
}

@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== ADDITIONAL RESPONSIVE IMPROVEMENTS ===== */
@media (max-width: 1024px) {
  .tools-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding-top: 0;
    padding-bottom: 0;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .hero-content {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 10px;
  }
  .hero-subtitle {
    font-size: clamp(1.2rem, 4vw, 2rem);
    margin-top: 1rem;
    margin-bottom: 0;
    order: 1;
  }
  .hero-button-container {
    order: 0;
    margin: 2rem 0 0 0;
  }
  /* Questions and input container handled in main mobile section above */
}
@media (max-width: 480px) {
  .hero-section {
    min-height: 100vh;
    padding: 4.5rem 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: visible;
  }
  .hero-section:has(.questions-display:not(.hidden)) {
    min-height: auto;
    height: auto;
    overflow: visible;
    padding-top: 0;
  }
  
  .hero-section:has(.questions-display:not(.hidden)) .hero-content {
    display: none;
  }
  
  .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8px;
  }
  .hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
  }
  .hero-button-container {
    margin-bottom: 1.5rem;
  }
  .hero-bottom-links {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: auto;
    padding-bottom: 0;
  }
  /* Additional mobile adjustments for smaller screens */
  .current-question {
    font-size: 22px;
  }
  
  .question-detail {
    font-size: 13px;
  }
  
  .questions-display {
    padding: 20px 8px;
  }
  
  .modern-input-container {
    padding: 18px 8px;
  }
  
  .input-area {
    padding: 12px 14px;
  }
}
/* ===== ACCESS CODE MODAL ===== */
.access-code-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.access-code-content {
  background: #fff;
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.access-code-header {
  background: linear-gradient(135deg, #333 0%, #555 100%);
  color: #fff;
  padding: 24px;
  text-align: center;
}

.access-code-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.access-code-body {
  padding: 32px 24px;
}

.access-code-body p {
  margin: 0 0 24px 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.access-code-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 2px;
  font-family: "Montserrat", sans-serif;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.access-code-input:focus {
  outline: none;
  border-color: #FF6B35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.access-code-error {
  margin-top: 12px;
  color: #dc2626;
  font-size: 0.9rem;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  animation: shake 0.4s ease-in-out;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  75% {
    transform: translateX(10px);
  }
}
.access-code-actions {
  padding: 0 24px 24px 24px;
}

.access-code-btn {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #FF6B35 0%, #FF8551 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
}

.access-code-btn:hover {
  background: linear-gradient(135deg, #FF8551 0%, #FF6B35 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.access-code-btn:active {
  transform: translateY(0);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .access-code-content {
    margin: 20px;
    max-width: calc(100% - 40px);
  }
  .access-code-header {
    padding: 20px;
  }
  .access-code-header h3 {
    font-size: 1.3rem;
  }
  .access-code-body {
    padding: 24px 20px;
  }
  .access-code-input {
    font-size: 1rem;
    padding: 12px 16px;
  }
}

/* ===== CREDIT POPUP ===== */
.credit-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.credit-popup.show {
  opacity: 1;
  visibility: visible;
}

.credit-popup-content {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  text-align: center;
}

.credit-popup.show .credit-popup-content {
  transform: scale(1);
}

.credit-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  line-height: 1;
  padding: 0;
}

.credit-popup-close:hover {
  background: #f5f5f5;
  color: #333;
}

.credit-popup-icon {
  font-size: 64px;
  margin-bottom: 16px;
  animation: bounce 0.6s ease;
}

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

.credit-popup-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0 0 12px 0;
  font-family: "Montserrat", sans-serif;
}

.credit-popup-message {
  font-size: 16px;
  color: #666;
  margin: 0 0 24px 0;
  line-height: 1.5;
  font-family: "Montserrat", sans-serif;
}

.credit-popup-timer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.credit-popup-timer span {
  font-size: 18px;
  font-weight: 600;
  color: #FF6B35;
  font-family: "Montserrat", sans-serif;
}

/* Mobile adjustments for credit popup */
@media (max-width: 768px) {
  .credit-popup-content {
    padding: 24px;
    max-width: 90%;
  }
  
  .credit-popup-icon {
    font-size: 48px;
    margin-bottom: 12px;
  }
  
  .credit-popup-title {
    font-size: 20px;
  }
  
  .credit-popup-message {
    font-size: 14px;
  }
}

/* ===== BROWSER WINDOW PREVIEW ===== */
.browser-window-preview {
  width: 100%;
  max-width: 980px;
  margin: 4rem auto 0;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  position: relative;
  z-index: 10;
  margin-bottom: -200px;
}

.browser-window-preview.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.browser-window-frame {
  width: 100%;
  background: #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.browser-window-header {
  background: #2d2d2d;
  padding: 0;
  display: flex;
  align-items: flex-start;
  position: relative;
}

.browser-window-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}


.browser-window-controls {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px 16px;
  flex-shrink: 0;
}

.browser-control-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}

.browser-control-dot--close {
  background: #ff5f56;
}

.browser-control-dot--minimize {
  background: #ffbd2e;
}

.browser-control-dot--maximize {
  background: #27c93f;
}

.browser-window-tabs {
  display: flex;
  flex: 1;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  min-width: 0;
}

.browser-window-tabs::-webkit-scrollbar {
  display: none;
}

.browser-window-tab {
  flex: 1;
  padding: 10px 16px;
  background: #3a3a3a;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  font-size: 10.4px;
  color: #bbb;
  font-weight: 500;
  transition: all 0.2s ease;
  font-family: "Montserrat", sans-serif;
  position: relative;
  white-space: nowrap;
  text-align: center;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 0;
  margin-top: 0;
}

.browser-window-tab:last-child {
  border-right: none;
}

.browser-window-tab:hover {
  color: #fff;
  background: #404040;
}

.browser-window-tab.active {
  color: #fff;
  background: #1e1e1e;
  border-bottom: none;
  margin-top: 0;
  border-radius: 0;
  z-index: 1;
  position: relative;
}

.browser-window-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: #1e1e1e;
  z-index: 3;
}

/* See More Tab - Orange style */
.browser-window-tab.browser-window-tab-see-more {
  background: #FF6B35;
  color: white;
  text-decoration: none;
  flex: 0 0 auto;
  min-width: 100px;
}

.browser-window-tab.browser-window-tab-see-more:hover {
  background: #FF8551;
  color: white;
  text-decoration: none;
}

.browser-window-tab.browser-window-tab-see-more:active {
  background: #FF6B35;
  color: white;
  text-decoration: none;
}

.browser-window-tab.browser-window-tab-see-more.active {
  background: #FF6B35;
  color: white;
}


.browser-window-content {
  height: 686px;
  background: #f5f5f5;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.browser-tab-content {
  display: none;
  padding: 0;
}

.browser-tab-content.active {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.spec-wrapper {
  background: #f5f5f5;
  flex: 1;
  padding: 20px 40px 0 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.spec-container {
  background: #ffffff;
  border-radius: 8px 8px 0 0;
  padding: 20px 40px 40px 40px;
  max-width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

.spec-label {
  font-size: 11.2px;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}

.spec-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
  text-align: center;
}

.diagram-section-container {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.diagram-section-container:last-child {
  margin-bottom: 0;
}

.diagram-section-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 7.5px 0;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.diagram-section-title i {
  color: #FF6B35;
  font-size: 1.04rem;
}

.diagram-section-description {
  color: #666;
  margin-bottom: 25px;
  font-size: 0.8rem;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
}

.diagram-container {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  background: #fafafa;
  overflow-x: auto;
}

.diagram-container .mermaid {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.prompt-section-container {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.prompt-section-container:last-child {
  margin-bottom: 0;
}

.prompt-section-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px 0;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.prompt-section-title i {
  color: #FF6B35;
  font-size: 1.04rem;
}

.prompt-code-container {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #2d2d2d;
}

.prompt-code {
  margin: 0;
  padding: 20px;
  background: #2d2d2d;
  color: #f8f8f2;
  font-family: 'Monaco', 'Courier New', 'Consolas', monospace;
  font-size: 10.4px;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 600px;
  white-space: pre-wrap;
  word-wrap: break-word;
  text-align: left;
  direction: ltr;
}

.prompt-code code {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.design-section-container {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.design-section-container:last-child {
  margin-bottom: 0;
}

.design-section-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px 0;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.design-section-title i {
  color: #FF6B35;
  font-size: 1.04rem;
}

.design-section-text {
  color: #666;
  font-size: 0.8rem;
  line-height: 1.8;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.brand-identity-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.brand-item {
  margin-bottom: 0;
}

.brand-item-title {
  font-size: 0.96rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px 0;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-item-title i {
  color: #FF6B35;
  font-size: 0.88rem;
}

.brand-item-text {
  color: #666;
  font-size: 0.8rem;
  line-height: 1.7;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.brand-values-list {
  margin: 0;
  padding-left: 25px;
  color: #666;
  font-size: 0.8rem;
  line-height: 1.8;
  font-family: "Montserrat", sans-serif;
}

.brand-values-list li {
  margin-bottom: 10px;
}

.color-palette-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.color-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.color-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.color-swatch {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  margin: 0 auto 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.color-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.76rem;
}

.color-code {
  color: #666;
  font-size: 0.68rem;
  font-family: 'Monaco', 'Courier New', monospace;
  margin-bottom: 5px;
}

.color-description {
  color: #888;
  font-size: 0.64rem;
  margin-top: 5px;
  font-family: "Montserrat", sans-serif;
}

.market-section-container {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.market-section-container:last-child {
  margin-bottom: 0;
}

.market-section-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px 0;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.market-section-title i {
  color: #FF6B35;
  font-size: 1.04rem;
}

.market-section-text {
  color: #666;
  font-size: 0.8rem;
  line-height: 1.8;
  margin: 0 0 25px 0;
  font-family: "Montserrat", sans-serif;
}

.market-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.market-stat-card {
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.market-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.market-stat-card--purple {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.market-stat-card--pink {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.market-stat-card--blue {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.market-stat-title {
  font-size: 0.76rem;
  font-weight: 500;
  color: white;
  margin: 0 0 10px 0;
  font-family: "Montserrat", sans-serif;
  opacity: 0.95;
}

.market-stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.market-trends-list {
  margin: 0;
  padding-left: 25px;
  color: #666;
  font-size: 0.8rem;
  line-height: 1.8;
  font-family: "Montserrat", sans-serif;
}

.market-trends-list li {
  margin-bottom: 15px;
}

.technical-section-container {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.technical-section-container:last-child {
  margin-bottom: 0;
}

.technical-section-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px 0;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.technical-section-title i {
  color: #FF6B35;
  font-size: 1.04rem;
}

.technical-section-text {
  color: #666;
  font-size: 0.8rem;
  line-height: 1.8;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
}

.technical-section-text:last-child {
  margin-bottom: 0;
}

.technical-subsection-title {
  font-size: 0.96rem;
  font-weight: 600;
  color: #333;
  margin: 12.5px 0 7.5px 0;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.technical-subsection-title:first-child {
  margin-top: 0;
}

.technical-subsection-title i {
  color: #FF6B35;
  font-size: 0.88rem;
}

.technical-tables-list {
  margin: 0;
  padding-left: 25px;
  color: #666;
  font-size: 0.76rem;
  line-height: 1.8;
  font-family: "Montserrat", sans-serif;
}

.technical-tables-list li {
  margin-bottom: 15px;
}

.technical-tables-list li strong {
  color: #333;
  font-weight: 600;
}

.technical-endpoints-list {
  margin: 0;
  padding-left: 25px;
  color: #666;
  font-size: 0.76rem;
  line-height: 1.8;
  font-family: "Montserrat", sans-serif;
  list-style: none;
}

.technical-endpoints-list li {
  margin-bottom: 15px;
  padding-left: 0;
}

.technical-endpoints-list li strong {
  color: #FF6B35;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  margin-right: 8px;
}

.technical-endpoints-list li code {
  background: #f5f5f5;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.72em;
  color: #e83e8c;
  margin: 0 8px;
}

.overview-section-container {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.overview-section-container:last-child {
  margin-bottom: 0;
}

.overview-section-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px 0;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.overview-section-title i {
  color: #FF6B35;
  font-size: 1.04rem;
}

.overview-summary-text {
  color: #666;
  font-size: 0.8rem;
  line-height: 1.8;
  font-family: "Montserrat", sans-serif;
}

.overview-summary-text p {
  margin: 0 0 15px 0;
}

.overview-summary-text p:last-child {
  margin-bottom: 0;
}

.overview-features-list {
  margin: 0;
  padding-left: 25px;
  color: #666;
  font-size: 0.8rem;
  line-height: 1.8;
  font-family: "Montserrat", sans-serif;
}

.overview-features-list li {
  margin-bottom: 15px;
}

.overview-features-list li:last-child {
  margin-bottom: 0;
}

/* Complexity Score Section Styles */
.complexity-score-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 32px;
  margin: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
}

.complexity-header {
  margin-bottom: 32px;
  text-align: center;
}

.complexity-header h3 {
  margin: 0;
  color: #2c3e50;
  font-size: 19.2px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Montserrat", sans-serif;
}

.complexity-header h3 .fa {
  color: #FF6B35;
  font-size: 22.4px;
}

/* Main Display - Circular Chart */
.complexity-main-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.total-score-circle {
  position: relative;
  width: 180px;
  height: 180px;
}

.circular-chart {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.circle-bg {
  fill: none;
  stroke: #e9ecef;
  stroke-width: 8;
}

.circle-progress {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease-in-out;
  animation: progressAnimation 1.5s ease-out;
}

@keyframes progressAnimation {
  from {
    stroke-dashoffset: 283;
  }
}

.circle-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.circle-score {
  font-size: 38.4px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  font-family: "Montserrat", sans-serif;
}

.circle-score.score-low {
  color: #10B981;
}

.circle-score.score-medium {
  color: #F59E0B;
}

.circle-score.score-high {
  color: #EF4444;
}

.circle-label {
  font-size: 14.4px;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 8px;
  font-family: "Montserrat", sans-serif;
}

.circle-level {
  font-size: 11.2px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 12px;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
}

.circle-level.score-low {
  color: #10B981;
  background: #d1fae5;
}

.circle-level.score-medium {
  color: #F59E0B;
  background: #fef3c7;
}

.circle-level.score-high {
  color: #EF4444;
  background: #fee2e2;
}

/* Legend */
.complexity-legend {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-color {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  display: inline-block;
}

.legend-color.score-low {
  background: #10B981;
}

.legend-color.score-medium {
  background: #F59E0B;
}

.legend-color.score-high {
  background: #EF4444;
}

.legend-text {
  font-size: 11.2px;
  color: #6b7280;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

/* Metrics */
.complexity-metrics {
  display: grid;
  gap: 20px;
}

.metric-item {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e9ecef;
  transition: transform 0.2s, box-shadow 0.2s;
}

.metric-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.metric-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #374151;
  font-size: 12.8px;
  font-family: "Montserrat", sans-serif;
}

.metric-label .fa {
  color: #FF6B35;
  font-size: 14.4px;
  width: 20px;
  text-align: center;
}

.metric-value-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.metric-value {
  font-size: 19.2px;
  font-weight: 700;
  min-width: 50px;
  text-align: right;
  font-family: "Montserrat", sans-serif;
}

.metric-value.score-low {
  color: #10B981;
}

.metric-value.score-medium {
  color: #F59E0B;
}

.metric-value.score-high {
  color: #EF4444;
}

.metric-level {
  font-size: 9.6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 8px;
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
}

.metric-level.score-low {
  color: #10B981;
  background: #d1fae5;
}

.metric-level.score-medium {
  color: #F59E0B;
  background: #fef3c7;
}

.metric-level.score-high {
  color: #EF4444;
  background: #fee2e2;
}

.metric-bar-container {
  margin-top: 8px;
}

.metric-bar {
  width: 100%;
  height: 12px;
  background: #e9ecef;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.metric-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 1s ease-out;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.metric-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.metric-fill.score-low {
  background: linear-gradient(90deg, #10B981, #34d399);
}

.metric-fill.score-medium {
  background: linear-gradient(90deg, #F59E0B, #fbbf24);
}

.metric-fill.score-high {
  background: linear-gradient(90deg, #EF4444, #f87171);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  
  .browser-window-preview {
    margin: 3rem auto 0;
    padding: 0 20px;
    margin-bottom: -150px;
  }
  
  
  .browser-window-frame {
    border-radius: 10px;
  }
  
  .browser-window-header {
    flex-wrap: wrap;
  }
  
  .browser-window-controls {
    padding: 10px 14px;
    gap: 6px;
  }
  
  .browser-control-dot {
    width: 10px;
    height: 10px;
  }
  
  .browser-window-tab {
    padding: 8px 10px;
    font-size: 9.6px;
    min-width: 100px;
  }
  
  .browser-window-content {
    height: 480px;
  }
  
  .spec-wrapper {
    padding: 10px 20px 0 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  
  .spec-container {
    flex: 1;
    min-height: 0;
    border-radius: 8px 8px 0 0;
    padding: 10px 20px 30px 20px;
  }
  
  .spec-container {
    padding: 30px 20px;
  }
  
  .spec-title {
    font-size: 1.6rem;
  }
  
  .diagram-section-container {
    padding: 25px 20px;
  }
  
  .diagram-section-title {
    font-size: 1.04rem;
  }
  
  .diagram-container {
    padding: 20px;
  }
  
  .prompt-section-container {
    padding: 25px 20px;
  }
  
  .prompt-section-title {
    font-size: 1.04rem;
  }
  
  .prompt-code {
    font-size: 9.6px;
    padding: 15px;
    max-height: 500px;
  }
  
  .design-section-container {
    padding: 25px 20px;
  }
  
  .design-section-title {
    font-size: 1.04rem;
  }
  
  .color-palette-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .market-section-container {
    padding: 25px 20px;
  }
  
  .market-section-title {
    font-size: 1.04rem;
  }
  
  .market-stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
  }
  
  .market-stat-value {
    font-size: 1.4rem;
  }
  
  .technical-section-container {
    padding: 25px 20px;
  }
  
  .technical-section-title {
    font-size: 1.04rem;
  }
  
  .overview-section-container {
    padding: 25px 20px;
  }
  
  .overview-section-title {
    font-size: 1.04rem;
  }
  
  .complexity-score-section {
    padding: 24px 20px;
  }
  
  .complexity-main-display {
    padding: 20px;
  }
  
  .total-score-circle {
    width: 150px;
    height: 150px;
  }
  
  .circle-score {
    font-size: 32px;
  }
  
  .circle-label {
    font-size: 12.8px;
  }
  
  .complexity-legend {
    gap: 16px;
  }
  
  .metric-item {
    padding: 16px;
  }
  
  .metric-value {
    font-size: 16px;
  }
  
  .extra-sections {
    margin-top: 0;
    padding-top: 200px;
  }
}

@media (max-width: 480px) {
  
  .browser-window-preview {
    margin: 2rem auto 0;
    padding: 0 15px;
    margin-bottom: -120px;
  }
  
  
  .browser-window-frame {
    border-radius: 8px;
  }
  
  .browser-window-header {
    flex-wrap: wrap;
  }
  
  .browser-window-controls {
    padding: 8px 12px;
    gap: 5px;
  }
  
  .browser-control-dot {
    width: 9px;
    height: 9px;
  }
  
  .browser-window-tab {
    padding: 8px 6px;
    font-size: 8.8px;
    min-width: 80px;
  }
  
  .browser-window-content {
    height: 411px;
  }
  
  .spec-wrapper {
    padding: 7.5px 15px 0 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  
  .spec-container {
    flex: 1;
    min-height: 0;
    border-radius: 8px 8px 0 0;
    padding: 10px 15px 25px 15px;
  }
  
  .spec-container {
    padding: 25px 15px;
  }
  
  .spec-title {
    font-size: 1.4rem;
  }
  
  .spec-label {
    font-size: 9.6px;
  }
  
  .diagram-section-container {
    padding: 25px 20px;
  }
  
  .diagram-section-title {
    font-size: 0.88rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .diagram-section-description {
    font-size: 0.72rem;
  }
  
  .diagram-container {
    padding: 15px;
  }
  
  .prompt-section-container {
    padding: 25px 20px;
  }
  
  .prompt-section-title {
    font-size: 0.88rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .prompt-code {
    font-size: 8.8px;
    padding: 12px;
    max-height: 400px;
  }
  
  .design-section-container {
    padding: 25px 20px;
  }
  
  .design-section-title {
    font-size: 0.88rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .design-section-text {
    font-size: 0.72rem;
  }
  
  .brand-item-title {
    font-size: 0.88rem;
  }
  
  .brand-item-text {
    font-size: 0.72rem;
  }
  
  .brand-values-list {
    font-size: 0.72rem;
  }
  
  .color-palette-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
  }
  
  .color-swatch {
    width: 50px;
    height: 50px;
  }
  
  .color-name {
    font-size: 0.68rem;
  }
  
  .color-code {
    font-size: 0.6rem;
  }
  
  .color-description {
    font-size: 0.56rem;
  }
  
  .market-section-container {
    padding: 25px 20px;
  }
  
  .market-section-title {
    font-size: 0.88rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .market-section-text {
    font-size: 0.72rem;
  }
  
  .market-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .market-stat-card {
    padding: 20px;
  }
  
  .market-stat-title {
    font-size: 0.68rem;
  }
  
  .market-stat-value {
    font-size: 1.2rem;
  }
  
  .market-trends-list {
    font-size: 0.72rem;
  }
  
  .market-trends-list li {
    margin-bottom: 12px;
  }
  
  .technical-section-container {
    padding: 20px 15px;
  }
  
  .technical-section-title {
    font-size: 0.88rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .technical-section-text {
    font-size: 0.72rem;
  }
  
  .technical-subsection-title {
    font-size: 0.88rem;
  }
  
  .technical-tables-list {
    font-size: 0.68rem;
  }
  
  .technical-endpoints-list {
    font-size: 0.68rem;
  }
  
  .technical-endpoints-list li code {
    font-size: 0.64em;
    padding: 2px 6px;
    display: block;
    margin: 5px 0;
  }
  
  .overview-section-container {
    padding: 20px 15px;
  }
  
  .overview-section-title {
    font-size: 0.88rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .overview-summary-text {
    font-size: 0.72rem;
  }
  
  .overview-features-list {
    font-size: 0.72rem;
  }
  
  .complexity-score-section {
    padding: 20px 15px;
  }
  
  .complexity-header h3 {
    font-size: 16px;
  }
  
  .complexity-header h3 .fa {
    font-size: 19.2px;
  }
  
  .complexity-main-display {
    padding: 16px;
  }
  
  .total-score-circle {
    width: 120px;
    height: 120px;
  }
  
  .circle-score {
    font-size: 25.6px;
  }
  
  .circle-label {
    font-size: 11.2px;
  }
  
  .circle-level {
    font-size: 8.8px;
    padding: 3px 8px;
  }
  
  .complexity-legend {
    gap: 12px;
    flex-direction: column;
  }
  
  .metric-item {
    padding: 14px;
  }
  
  .metric-label {
    font-size: 11.2px;
  }
  
  .metric-value {
    font-size: 14.4px;
  }
  
  .metric-level {
    font-size: 8px;
    padding: 3px 8px;
  }
  
  .extra-sections {
    margin-top: 0;
    padding-top: 170px;
  }
}

