/* Base styles */
* {
  box-sizing: border-box;
}

/* Top Menu Base Styles */
.top-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.4rem 2rem;
}

.menu-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.menu-logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #c5b6f3, #ee62a8);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.menu-logo:hover {
  opacity: 0.93;
}

.menu-items {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.menu-items li {
  margin: 0;
}

.menu-items a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.menu-actions {
  display: flex;
  gap: 1rem;
}

.menu-btn {
  padding: 0.4rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Variant 1: Glass Morphism */
.menu-variant-1 {
  background: rgba(20, 10, 40, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-variant-1 .menu-items a {
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.menu-variant-1 .menu-items a:hover {
  background: rgba(116, 103, 239, 0.2);
  color: #a78bfa;
}

.menu-variant-1 .menu-btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.menu-variant-1 .menu-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #a78bfa;
}

.menu-variant-1 .menu-btn-primary {
  background: linear-gradient(135deg, #7467ef, #9b8ef7);
  color: #fff;
  border: none;
}

.menu-variant-1 .menu-btn-primary:hover {
  background: linear-gradient(135deg, #9b8ef7, #a78bfa);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(116, 103, 239, 0.4);
}

/* SVG icon styles */
.icon {
  width: 1.2em;
  height: 1.2em;
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.2em;
  margin-right: 0.15em;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

/* Scroll offset for fixed menu */
#features,
#pricing,
#about {
  scroll-margin-top: 100px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  height: 100%;
}

#root {
  height: 100%;
}

/* Background gradient */
.landing-layout {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0014 0%, #1a0829 50%, #2d1b4e 100%);
}

.layout-container {
  width: 100%;
}

.theme-dark {
  background-color: transparent;
  color: #e0e0e0;
}

.flex {
  display: flex;
}

.topbar-fixed {
  padding-top: 0;
}

.content-wrap {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.position-relative {
  position: relative;
}

.scrollable-content {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  width: 100%;
}

/* Main content area */
.main-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.main-content {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  width: 100%;
}

.hero-content {
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

/* Hero title styles */
.hero-title {
  color: #ffffff;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

/* Highlight "fully functional" text - default gold-orange */
.highlight-text {
  background: linear-gradient(135deg, #00ffcc, #00ff88, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  position: relative;
  display: inline-block;
  filter: drop-shadow(0 0 15px rgba(0, 255, 204, 0.6));
}

/* Variant 1: Cyan-Green (default) */
.highlight-text.variant-1 {
  background: linear-gradient(135deg, #00ffcc, #00ff88, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(0, 255, 204, 0.6));
}

/* Variant 2: Gold-Orange */
.highlight-text.variant-2 {
  background: linear-gradient(135deg, #ffd700, #ff8c00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

/* Variant 3: Purple-Pink */
.highlight-text.variant-3 {
  background: linear-gradient(135deg, #a78bfa, #ec4899, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(167, 139, 250, 0.6));
}

/* Variant 4: Blue-Cyan */
.highlight-text.variant-4 {
  background: linear-gradient(135deg, #3b82f6, #06b6d4, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.6));
}

/* Variant 5: Red-Orange */
.highlight-text.variant-5 {
  background: linear-gradient(135deg, #ef4444, #f97316, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(239, 68, 68, 0.6));
}

/* Variant 6: Green-Yellow */
.highlight-text.variant-6 {
  background: linear-gradient(135deg, #10b981, #84cc16, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.6));
}

/* Variant 7: Pink-Yellow */
.highlight-text.variant-7 {
  background: linear-gradient(135deg, #ec4899, #eab308, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(236, 72, 153, 0.6));
}

/* Variant 8: White-Blue */
.highlight-text.variant-8 {
  background: linear-gradient(135deg, #f0f9ff, #60a5fa, #f0f9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(96, 165, 250, 0.6));
}

/* Variant 9: Electric Blue */
.highlight-text.variant-9 {
  background: linear-gradient(135deg, #00d4ff, #0066ff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.6));
}

/* Variant 10: Neon Purple */
.highlight-text.variant-10 {
  background: linear-gradient(135deg, #d946ef, #8b5cf6, #d946ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(217, 70, 239, 0.6));
}

@keyframes glow {

  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.2);
  }
}

.tagline-container {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 1.125rem;
  /* Half of 2.25rem */
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero-title {
    margin-top: 5dvh;
    font-size: 3rem;
  }

  .tagline-container {
    font-size: 1.5rem;
    /* Half of 3rem */
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .tagline-container {
    font-size: 1.75rem;
    /* Half of 3.5rem */
  }
}

/* Form and input styles */
.form-container {
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-label {
  display: block;
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
}

.custom-input {
  width: 100%;
  padding: 16px 20px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(116, 103, 239, 0.2), rgba(155, 142, 247, 0.2));
  border: 3px solid #7467ef;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.custom-input:hover {
  background: linear-gradient(135deg, rgba(116, 103, 239, 0.3), rgba(155, 142, 247, 0.3));
  border-color: #9b8ef7;
  box-shadow: 0 6px 20px rgba(116, 103, 239, 0.3);
}

.custom-input:focus {
  background: linear-gradient(135deg, rgba(116, 103, 239, 0.3), rgba(155, 142, 247, 0.3));
  border-color: #9b8ef7;
  box-shadow: 0 0 0 3px rgba(116, 103, 239, 0.4), 0 8px 25px rgba(116, 103, 239, 0.4);
}

.custom-input.input-populated {
  animation: inputPopulated 0.6s ease-out;
}

.custom-input:disabled,
.custom-input[disabled] {
  background: rgba(50, 50, 50, 0.3) !important;
  border-color: rgba(100, 100, 100, 0.4) !important;
  color: rgba(255, 255, 255, 0.3) !important;
  cursor: not-allowed !important;
  opacity: 0.5 !important;
  box-shadow: none !important;
}

.custom-input:disabled:hover,
.custom-input[disabled]:hover {
  background: rgba(50, 50, 50, 0.3) !important;
  border-color: rgba(100, 100, 100, 0.4) !important;
  box-shadow: none !important;
}

@keyframes inputPopulated {
  0% {
    box-shadow: 0 0 0 0 rgba(116, 103, 239, 0.8);
    border-color: #7467ef;
  }

  50% {
    box-shadow: 0 0 30px 10px rgba(116, 103, 239, 0.6);
    border-color: #9b8ef7;
    background: linear-gradient(135deg, rgba(116, 103, 239, 0.4), rgba(155, 142, 247, 0.4));
  }

  100% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-color: #7467ef;
    background: linear-gradient(135deg, rgba(116, 103, 239, 0.2), rgba(155, 142, 247, 0.2));
  }
}

/* Button styles */
.button-group {
  display: flex;
  gap: 0.5rem;
  row-gap: 0.1rem;
  margin-bottom: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-suggestion {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  background-color: transparent;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
}

.btn-suggestion:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-suggestion:disabled,
.btn-suggestion[disabled] {
  border-color: rgba(100, 100, 100, 0.3) !important;
  color: rgba(150, 150, 150, 0.5) !important;
  background-color: rgba(50, 50, 50, 0.2) !important;
  cursor: not-allowed !important;
  opacity: 0.4 !important;
}

.btn-suggestion:disabled:hover,
.btn-suggestion[disabled]:hover {
  background-color: rgba(50, 50, 50, 0.2) !important;
  border-color: rgba(100, 100, 100, 0.3) !important;
}

/* Submit button */
.btn-submit {
  width: 100%;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #7467ef, #9b8ef7);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.3rem;
  margin-bottom: 0rem;
}

.btn-submit:hover:not(.ctrl-disabled) {
  background: linear-gradient(135deg, #9b8ef7, #7467ef);
  box-shadow: 0 4px 12px rgba(116, 103, 239, 0.4);
}

.btn-submit.ctrl-disabled {
  background: rgba(116, 103, 239, 0.3);
  color: rgba(255, 255, 255, 0.5);
  cursor: not-allowed;
}

/* Loading state for submit button */
.btn-submit.loading {
  color: #fff;
  position: relative;
  pointer-events: none;
}

.btn-submit.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 20px;
  margin-top: -8px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

/* Terms text */
.terms-text {
  padding-top: 1rem;
}

.footer-link {
  color: rgba(200, 195, 236, 0.9);
  text-decoration: underline;
  cursor: pointer;
}

.footer-link:hover {
  color: rgba(116, 103, 239, 1);
}

/* Comparison Table Styles */
.comparison-section {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(16, 16, 24, 0.9), rgba(24, 16, 32, 0.9));
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.comparison-table-wrapper {
  overflow-x: auto;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 1rem;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-table thead th {
  background: linear-gradient(135deg, rgba(16, 16, 24, 0.9), rgba(32, 16, 48, 0.9));
  color: #ffffff;
  padding: 1.2rem 1rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
}

.comparison-table thead th:first-child {
  border-top-left-radius: 10px;
  text-align: left;
}

.comparison-table thead th:last-child {
  border-top-right-radius: 10px;
}

.smartie-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.smartie-logo {
  background: linear-gradient(135deg, #a78bfa, #ec4899, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.1rem;
}

.smartie-badge {
  background: linear-gradient(135deg, #a78bfa, #ec4899);
  color: #fff;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
}

.comparison-table tbody tr {
  transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

.comparison-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

.comparison-table td {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.1);
}

.feature-name {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  text-align: left;
}

.smartie-cell {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.1));
  text-align: center;
}

.competitor-cell {
  text-align: center;
  background: rgba(0, 0, 0, 0.1);
}

.check-mark {
  color: #00ff88;
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.x-mark {
  color: #ff4757;
  font-size: 1.2rem;
  font-weight: bold;
}

.partial-mark {
  color: #ffa502;
  font-size: 1.2rem;
  font-weight: bold;
}

.comparison-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(16, 16, 24, 0.9), rgba(24, 16, 32, 0.9));
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

.pricing-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 204, 0.3);
  box-shadow: 0 10px 30px rgba(0, 255, 204, 0.2);
}

.pricing-card-featured {
  border: 2px solid #a78bfa;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.1), rgba(236, 72, 153, 0.05));
}

.pricing-card-featured:hover {
  border-color: #a78bfa;
  box-shadow: 0 10px 30px rgba(167, 139, 250, 0.3);
}

.plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #a78bfa, #ec4899);
  color: #fff;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.plan-header {
  text-align: center;
  margin-bottom: 2rem;
}

.plan-name {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.plan-price {
  color: #00ffcc;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.price-period {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-weight: 400;
}

.plan-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.feature-icon {
  color: #00ff88;
  font-weight: bold;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.plan-button {
  width: 100%;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan-button-pro {
  background: linear-gradient(135deg, #00ffcc, #00ff88);
  color: #000;
}

.plan-button-pro:hover {
  background: linear-gradient(135deg, #00ff88, #00ffcc);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 204, 0.4);
}

.plan-button-business {
  background: linear-gradient(135deg, #a78bfa, #ec4899);
  color: #fff;
}

.plan-button-business:hover {
  background: linear-gradient(135deg, #ec4899, #a78bfa);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(167, 139, 250, 0.4);
}

.plan-button-free {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.plan-button-free:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.plan-button-advanced {
  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: #fff;
}

.plan-button-advanced:hover {
  background: linear-gradient(135deg, #357abd, #4a90e2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}

/* FAQ Section */
.faq-section {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(16, 16, 24, 0.9), rgba(24, 16, 32, 0.9));
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.faq-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(167, 139, 250, 0.3);
  box-shadow: 0 5px 15px rgba(167, 139, 250, 0.1);
}

.faq-item.active {
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: 0 5px 20px rgba(167, 139, 250, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.faq-toggle {
  color: #a78bfa;
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
  margin-left: 1rem;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  padding: 0 2rem 1.5rem 2rem;
  margin: 1rem 0 0 0;
}

/* Responsive adjustments */
@media (max-width: 900px) and (min-width: 601px) {
  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

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

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

  .feature-item {
    font-size: 0.9rem;
  }

  /* Icon features grid - 3 columns for tablets */
  .icon-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }

  .icon-feature-box {
    padding: 1.5rem 1rem;
  }
}

/* Mobile menu visibility */
@media (max-width: 768px) {
  .top-menu {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2rem !important;
  }

  .content {
    padding: 3rem 0.25rem;
  }

  .hero-section {
    padding: 1rem 0.25rem;
  }

  .button-group {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.4rem;
  }

  .btn-suggestion,
  .btn-game-mario,
  .btn-game-bomberman,
  .btn-game-tetris {
    padding: 5px 10px;
    font-size: 0.9rem;
  }

  .custom-input {
    padding: 8px 12px;
    font-size: 1rem;
  }

  .comparison-section {
    margin-top: 2rem;
    padding: 2rem 0.25rem;
  }

  .comparison-title {
    font-size: 2rem;
  }

  .comparison-subtitle {
    font-size: 1rem;
  }

  .comparison-legend {
    gap: 1rem;
  }

  .legend-item {
    font-size: 0.8rem;
  }

  .form-container {
    padding: 0 1rem;
  }

  .comparison-table-wrapper {
    padding: 0.5rem 0.25rem;
  }

  .comparison-table thead th {
    padding: 0.8rem 0.5rem;
    font-size: 0.9rem;
  }

  .comparison-table td {
    padding: 0.8rem 0.5rem;
  }

  .feature-name {
    font-size: 0.85rem;
  }

  .smartie-logo {
    font-size: 0.95rem;
  }

  .smartie-badge {
    font-size: 0.6rem;
    padding: 0.15rem 0.6rem;
  }

  .check-mark,
  .x-mark,
  .partial-mark {
    font-size: 1rem;
  }

  .pricing-section {
    margin-top: 2rem;
    padding: 2rem 0.5rem;
  }

  .pricing-title {
    font-size: 2rem;
  }

  .pricing-subtitle {
    font-size: 1rem;
  }

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

  .pricing-card {
    padding: 1.5rem;
  }

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

  .faq-section {
    margin-top: 2rem;
    padding: 2rem 0.5rem;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-question {
    padding: 1rem 1.5rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 1.5rem 1rem 1.5rem;
    font-size: 0.9rem;
  }

  .btn-submit {
    padding: 16px 28px;
    font-size: 1.2rem;
  }
}

/* Common Section Header Style */
.section-title,
.icon-grid-title,
.comparison-title,
.pricing-title,
.faq-title,
.split-title,
.journey-title,
.stats-title,
.layers-title,
.battlefield-title,
.breakdown-title,
.iceberg-title,
.counter-title,
.funnel-title,
.shield-title,
.evolution-title,
.bars-title,
.process-title,
.rbac-mystery-title,
.rbac-matrix-title,
.nightmare-title {
  font-size: 2.5rem;
  text-align: center;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

/* Icon Grid Section - Wrapper and Title Styles */
.smartie-icon-grid-section {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(16, 16, 24, 0.9), rgba(24, 16, 32, 0.9));
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.smartie-icon-grid-container {
  max-width: 1400px;
  margin: 0 auto;
}

.icon-grid-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* Icon Features Grid Styles */
.icon-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.icon-feature {
  display: flex;
  flex-direction: column;
}

.icon-feature-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  height: 100%;
}

.icon-feature-box:hover {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 255, 204, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 204, 0.2);
}

.feature-icon-large {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.icon-feature-box h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.builtin-badge {
  background: linear-gradient(135deg, #00ffcc, #00ff88);
  color: #000;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/***************************************************************/

.prompt-container {
  max-width: 700px;
  margin: 0 auto 4rem;
  width: 100%;
}

.prompt-input {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.1rem;
  border: 2px solid rgba(0, 255, 204, 0.3);
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.prompt-input:focus {
  outline: none;
  border-color: #00ffcc;
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
}

.prompt-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.create-button {
  background: linear-gradient(135deg, #00ffcc 0%, #00ff88 100%);
  color: #000;
  border: none;
  padding: 1rem 3rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 255, 204, 0.3);
}

.create-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 255, 204, 0.5);
}

.create-button:active {
  transform: translateY(0);
}


/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }

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

/* Design 1: Better Platform Section */
.smartie-better-section {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(16, 16, 24, 0.9), rgba(24, 16, 32, 0.9));
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.smartie-better-container {
  max-width: 1200px;
  margin: 0 auto;
}

.smartie-title {
  font-size: 2.5rem;
  text-align: center;
  background: linear-gradient(135deg, #00ffcc, #00ff88);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.smartie-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.smartie-better-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.smartie-diagram {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 15px;
  padding: 2rem;
}

.diagram-header {
  text-align: center;
  margin-bottom: 2rem;
}

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

.diagram-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.diagram-bar {
  width: 100%;
}

.bar-fill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.builtin-fill {
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.2), rgba(0, 255, 136, 0.2));
  border: 2px solid #00ffcc;
}

.ai-fill {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(236, 72, 153, 0.2));
  border: 2px solid #a78bfa;
}

.bar-label {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

.bar-percentage {
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
}

.diagram-footer {
  text-align: center;
  padding-top: 1rem;
}

.result-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1rem;
}

.smartie-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: start;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(0, 255, 204, 0.05);
  border-color: rgba(0, 255, 204, 0.3);
}

.benefit-icon {
  font-size: 2rem;
  min-width: 2rem;
}

.benefit-content h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.benefit-content p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

/* Design 2: Split Comparison */
.smartie-split-section {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(16, 16, 24, 0.9), rgba(24, 16, 32, 0.9));
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.smartie-split-container {
  max-width: 1200px;
  margin: 0 auto;
}

.split-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.split-side {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 2rem;
  min-height: 400px;
}

.competitor-side {
  border: 2px solid rgba(255, 100, 100, 0.5);
}

.smartie-side {
  border: 2px solid rgba(0, 255, 204, 0.5);
}

.side-header {
  text-align: center;
  margin-bottom: 2rem;
}

.side-header h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
}

.side-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.side-badge.bad {
  background: rgba(255, 100, 100, 0.2);
  border: 1px solid #ff6666;
  color: #ff6666;
}

.side-badge.good {
  background: rgba(0, 255, 204, 0.2);
  border: 1px solid #00ffcc;
  color: #00ffcc;
}

.side-visualization {
  margin-bottom: 2rem;
}

.code-block {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 100, 100, 0.3);
  border-radius: 8px;
  padding: 1.5rem;
  font-family: 'Courier New', monospace;
  color: #ff6666;
  margin-bottom: 1rem;
}

.platform-block {
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(0, 255, 136, 0.1));
  border: 2px solid #00ffcc;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.platform-block h4 {
  color: #00ffcc;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.platform-block p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9rem;
}

.side-issues {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-issues li {
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.side-issues li:last-child {
  border-bottom: none;
}

.split-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-text {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #000;
  font-size: 1.5rem;
  font-weight: 800;
  padding: 1rem 1.5rem;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Alternative Design 5: Timeline/Journey */
.smartie-journey-section {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(16, 16, 24, 0.9), rgba(24, 16, 32, 0.9));
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.journey-container {
  max-width: 1200px;
  margin: 0 auto;
}

.journey-timeline {
  position: relative;
  padding: 2rem 0;
}

.journey-timeline .timeline-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.journey-timeline .timeline-step::before {
  content: '';
  position: absolute;
  left: 2rem;
  top: 4rem;
  bottom: -3rem;
  width: 2px;
  background: linear-gradient(180deg, #00ffcc 0%, rgba(0, 255, 204, 0.2) 100%);
}

.journey-timeline .timeline-step:last-child::before {
  display: none;
}

.journey-timeline .step-number {
  min-width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #00ffcc, #00ff88);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 5px 20px rgba(0, 255, 204, 0.4);
  z-index: 1;
  position: relative;
}

.journey-timeline .step-content {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
}

.journey-timeline .step-content h3 {
  color: #00ffcc;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.journey-timeline .step-content p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

/* Alternative Design 7: Stats Grid */
.smartie-stats-section {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(16, 16, 24, 0.9), rgba(24, 16, 32, 0.9));
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid transparent;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: #00ffcc;
  background: rgba(0, 255, 204, 0.05);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00ffcc, #00ff88);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.stat-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Alternative Design 9: Layers/Stack Diagram */
.smartie-layers-section {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(16, 16, 24, 0.9), rgba(24, 16, 32, 0.9));
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.layers-container {
  max-width: 900px;
  margin: 0 auto;
}

.architecture-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.architecture-layer {
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(0, 255, 136, 0.1));
  border: 2px solid #00ffcc;
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.architecture-layer.ai-layer {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.1), rgba(236, 72, 153, 0.1));
  border-color: #a78bfa;
}

.layer-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
}

.layer-badge {
  background: rgba(0, 255, 204, 0.3);
  color: #00ffcc;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.architecture-layer.ai-layer .layer-badge {
  background: rgba(167, 139, 250, 0.3);
  color: #a78bfa;
}

.layer-percentage {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0, 255, 204, 0.3);
}

.architecture-layer.ai-layer .layer-percentage {
  color: rgba(167, 139, 250, 0.3);
}

.layers-benefits {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.layer-benefit {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: start;
}

.benefit-num {
  min-width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #00ffcc, #00ff88);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.benefit-text {
  flex: 1;
}

.benefit-text strong {
  color: #fff;
  display: block;
  margin-bottom: 0.25rem;
}

.benefit-text p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9rem;
}

/* Design 11: Testimonial Style */
/* Variant 1: Bug Battlefield */
.smartie-battlefield-section {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(16, 16, 24, 0.9), rgba(24, 16, 32, 0.9));
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.battlefield-container {
  max-width: 1400px;
  margin: 0 auto;
}

.battlefield-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.battlefield-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
}

.battlefield-side {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 2rem;
}

.danger-side {
  border: 2px solid rgba(255, 100, 100, 0.5);
}

.success-side {
  border: 2px solid rgba(0, 255, 204, 0.5);
}

.battlefield-header {
  text-align: center;
  margin-bottom: 2rem;
}

.battlefield-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.battlefield-header h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
}

.battlefield-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.danger-tag {
  background: rgba(255, 100, 100, 0.2);
  border: 1px solid #ff6666;
  color: #ff6666;
}

.success-tag {
  background: rgba(0, 255, 204, 0.2);
  border: 1px solid #00ffcc;
  color: #00ffcc;
}

.bug-cluster {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.bug-category {
  background: rgba(255, 100, 100, 0.1);
  border: 1px solid rgba(255, 100, 100, 0.3);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bug-icon {
  font-size: 2rem;
}

.bug-label {
  flex: 1;
  color: #fff;
  font-weight: 600;
}

.bug-count {
  color: #ff6666;
  font-weight: 700;
  font-size: 1.2rem;
}

.total-bugs-badge {
  text-align: center;
  padding: 1rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
}

.total-bugs-badge.danger {
  background: rgba(255, 100, 100, 0.2);
  border: 2px solid #ff6666;
  color: #ff6666;
}

.total-bugs-badge.success {
  background: rgba(0, 255, 204, 0.2);
  border: 2px solid #00ffcc;
  color: #00ffcc;
}

.protected-layers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.protected-layer {
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.protected-layer.eliminated {
  background: rgba(0, 255, 204, 0.1);
  border: 1px solid rgba(0, 255, 204, 0.3);
}

.protected-layer.ai-only {
  background: rgba(167, 139, 250, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.3);
}

.layer-icon {
  font-size: 2rem;
}

.layer-name {
  flex: 1;
  color: #fff;
  font-weight: 600;
}

.layer-status {
  color: #00ffcc;
  font-size: 0.9rem;
}

.protected-layer.ai-only .layer-status {
  color: #a78bfa;
}

.battlefield-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
}

.vs-badge {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #000;
  padding: 1rem 1.5rem;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.battlefield-result {
  margin-top: 3rem;
  text-align: center;
}

.result-calculation {
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(0, 255, 136, 0.1));
  border: 2px solid #00ffcc;
  border-radius: 15px;
  padding: 2rem;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  display: inline-block;
}

.calc-number {
  color: #fff;
}

.calc-operator {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 1rem;
}

.calc-result {
  color: #00ffcc;
  margin-left: 1rem;
}

/* Variant 2: Bug Source Breakdown */
.smartie-breakdown-section {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(16, 16, 24, 0.9), rgba(24, 16, 32, 0.9));
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.breakdown-container {
  max-width: 1400px;
  margin: 0 auto;
}

.breakdown-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.breakdown-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
}

.breakdown-column {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 2rem;
}

.competitor-column {
  border: 2px solid rgba(255, 100, 100, 0.5);
}

.smartie-column {
  border: 2px solid rgba(0, 255, 204, 0.5);
}

.breakdown-header {
  text-align: center;
  margin-bottom: 2rem;
}

.breakdown-header h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
}

.breakdown-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.breakdown-badge.danger {
  background: rgba(255, 100, 100, 0.2);
  border: 1px solid #ff6666;
  color: #ff6666;
}

.breakdown-badge.success {
  background: rgba(0, 255, 204, 0.2);
  border: 1px solid #00ffcc;
  color: #00ffcc;
}

.bug-sources {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.bug-source-bar {
  position: relative;
}

.bug-source-bar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--bar-width);
  background: linear-gradient(90deg, rgba(255, 100, 100, 0.3), rgba(255, 100, 100, 0.1));
  border-radius: 10px;
  z-index: 0;
}

.bug-source-bar.eliminated-bar::before {
  background: linear-gradient(90deg, rgba(0, 255, 204, 0.1), rgba(0, 255, 204, 0.05));
}

.bug-source-bar.active-bar::before {
  background: linear-gradient(90deg, rgba(167, 139, 250, 0.3), rgba(167, 139, 250, 0.1));
}

.bug-source-info {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.bug-source-name {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}

.bug-source-percent {
  color: #ff6666;
  font-weight: 700;
  font-size: 1.2rem;
}

.bug-source-percent.eliminated-text {
  color: #00ffcc;
}

.bug-source-detail {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  padding-left: 1rem;
}

.breakdown-total {
  text-align: center;
  padding: 1.5rem;
  border-radius: 10px;
  font-size: 1.2rem;
}

.breakdown-total.danger {
  background: rgba(255, 100, 100, 0.2);
  border: 2px solid #ff6666;
  color: #fff;
}

.breakdown-total.success {
  background: rgba(0, 255, 204, 0.2);
  border: 2px solid #00ffcc;
  color: #fff;
}

.breakdown-total strong {
  color: #ff6666;
  font-size: 2rem;
}

.breakdown-total.success strong {
  color: #00ffcc;
}

.breakdown-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
}

.divider-arrow {
  font-size: 3rem;
  color: #00ffcc;
  animation: pulse 2s infinite;
}

.breakdown-conclusion {
  margin-top: 3rem;
  text-align: center;
}

.conclusion-card {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.1), rgba(236, 72, 153, 0.1));
  border: 2px solid #a78bfa;
  border-radius: 15px;
  padding: 2rem;
  display: inline-block;
  max-width: 500px;
}

.conclusion-stat {
  font-size: 4rem;
  font-weight: 700;
  color: #a78bfa;
  margin-bottom: 1rem;
}

.conclusion-text {
  font-size: 1.2rem;
  color: #fff;
}

.conclusion-text strong {
  color: #a78bfa;
}

.purple-border-text {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border: 2px solid #a78bfa;
  border-radius: 8px;
  background: rgba(167, 139, 250, 0.1);
  color: #fff;
}

/* Variant 3: Iceberg Visual */
.smartie-iceberg-section {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(16, 16, 24, 0.9), rgba(24, 16, 32, 0.9));
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.iceberg-container {
  max-width: 1400px;
  margin: 0 auto;
}

.iceberg-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.iceberg-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
}

.iceberg-side {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 800px;
  display: flex;
  flex-direction: column;
}

.iceberg-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.iceberg-header h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.iceberg-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.iceberg-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.iceberg-above-water {
  margin-bottom: 0;
}

.iceberg-layer {
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 0;
}

.visible-layer {
  background: linear-gradient(135deg, rgba(100, 150, 255, 0.3), rgba(150, 200, 255, 0.3));
  border: 2px solid #6496ff;
  text-align: center;
}

.ai-layer {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.3), rgba(236, 72, 153, 0.3));
  border: 2px solid #a78bfa;
  text-align: center;
}

.water-line {
  text-align: center;
  font-size: 1.5rem;
  color: rgba(100, 150, 255, 0.5);
  margin: 0.5rem 0;
  padding: 0.5rem 0;
}

.wave {
  display: inline-block;
  animation: wave 3s infinite;
}

@keyframes wave {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.iceberg-below-water {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.danger-zone {
  background: linear-gradient(180deg, rgba(255, 100, 100, 0.1), rgba(255, 100, 100, 0.2));
  border-radius: 10px;
  padding: 1.5rem;
  flex: 1;
}

.safe-zone {
  background: linear-gradient(180deg, rgba(0, 255, 204, 0.1), rgba(0, 255, 204, 0.2));
  border-radius: 10px;
  padding: 1.5rem;
  flex: 1;
}

.hidden-layer,
.protected-layer {
  padding: 0;
  border-radius: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.layer-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.layer-content {
  margin: 0.5rem 0;
  flex: 1;
}

.complexity-item {
  padding: 0.65rem;
  margin: 0.4rem 0;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.danger-zone .complexity-item {
  background: rgba(255, 100, 100, 0.2);
  border-left: 3px solid #ff6666;
  color: #fff;
}

.complexity-item.safe {
  background: rgba(0, 255, 204, 0.2);
  border-left: 3px solid #00ffcc;
  color: #fff;
}

.iceberg-layer .layer-percentage {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin-top: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
}

.hidden-layer .layer-percentage,
.protected-layer .layer-percentage {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
}

.layer-percentage.danger {
  background: rgba(255, 100, 100, 0.3);
  border: 2px solid #ff6666;
  color: #ff6666;
}

.layer-percentage.success {
  background: rgba(0, 255, 204, 0.3);
  border: 2px solid #00ffcc;
  color: #00ffcc;
}

.layer-percentage.ai {
  background: rgba(167, 139, 250, 0.3);
  border: 2px solid #a78bfa;
  color: #a78bfa;
}

.iceberg-warning,
.iceberg-success {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
}

.iceberg-warning {
  background: rgba(255, 100, 100, 0.2);
  border: 2px solid #ff6666;
}

.iceberg-success {
  background: rgba(0, 255, 204, 0.2);
  border: 2px solid #00ffcc;
}

.warning-icon,
.success-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.warning-text {
  color: #ff6666;
  font-weight: 600;
  font-size: 1rem;
}

.success-text {
  color: #00ffcc;
  font-weight: 600;
  font-size: 1rem;
}

.iceberg-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
}

.iceberg-divider .divider-badge {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #000;
  padding: 1rem 1.5rem;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iceberg-conclusion {
  margin-top: 3rem;
  text-align: center;
}

.conclusion-highlight {
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(0, 255, 136, 0.1));
  border: 2px solid #00ffcc;
  border-radius: 15px;
  padding: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-highlight strong {
  color: #00ffcc;
}

/* Variant 4: Bug Counter */
.smartie-counter-section {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(16, 16, 24, 0.9), rgba(24, 16, 32, 0.9));
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-container {
  max-width: 1200px;
  margin: 0 auto;
}

.counter-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.counter-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.counter-scenario {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 2rem;
}

.scenario-header {
  text-align: center;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.danger-header {
  background: rgba(255, 100, 100, 0.2);
  border: 2px solid #ff6666;
}

.success-header {
  background: rgba(0, 255, 204, 0.2);
  border: 2px solid #00ffcc;
}

.scenario-header h3 {
  font-size: 1.8rem;
  color: #fff;
  margin: 0;
}

.bug-counter-display {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
}

.danger-counter {
  background: linear-gradient(135deg, rgba(255, 100, 100, 0.2), rgba(255, 50, 50, 0.2));
  border: 3px solid #ff6666;
}

.success-counter {
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.2), rgba(0, 255, 136, 0.2));
  border: 3px solid #00ffcc;
}

.counter-label {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.counter-number {
  font-size: 5rem;
  font-weight: 700;
}

.danger-counter .counter-number {
  color: #ff6666;
}

.success-counter .counter-number {
  color: #00ffcc;
}

.bug-sources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.bug-source-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 100, 100, 0.3);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

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

.bug-source-card.eliminated {
  border-color: rgba(0, 255, 204, 0.3);
  background: rgba(0, 255, 204, 0.05);
}

.bug-source-card.ai-generated {
  border-color: rgba(167, 139, 250, 0.3);
  background: rgba(167, 139, 250, 0.05);
}

.source-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.source-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.source-bugs {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff6666;
  margin-bottom: 0.5rem;
}

.bug-source-card.eliminated .source-bugs {
  color: #00ffcc;
}

.bug-source-card.ai-generated .source-bugs {
  color: #a78bfa;
}

.source-issues {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.elimination-arrow {
  text-align: center;
  padding: 2rem 0;
}

.arrow-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: #00ffcc;
  margin-bottom: 1rem;
}

.arrow-graphic {
  font-size: 4rem;
  color: #00ffcc;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

.counter-result {
  margin-top: 3rem;
  text-align: center;
}

.result-equation {
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(0, 255, 136, 0.1));
  border: 2px solid #00ffcc;
  border-radius: 15px;
  padding: 2rem;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  display: inline-block;
}

.equation-part {
  color: #fff;
}

.equation-operator {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 1rem;
}

.equation-result {
  color: #00ffcc;
  margin-left: 1rem;
}

@media (max-width: 600px) {
  .icon-grid-title {
    font-size: 1.8rem;
  }

  .icon-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-icon-large {
    font-size: 1.8rem;
  }

  .before-after-title {
    font-size: 1.8rem;
  }

  .before-after-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .progress-circle,
  .donut-chart {
    width: 150px;
    height: 150px;
  }

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

  .circle-number-split {
    font-size: 1.5rem;
  }

  .layers-title {
    font-size: 1.8rem;
  }

  .layers-description {
    font-size: 0.95rem;
  }

  .architecture-layer {
    padding: 1.5rem;
  }

  .layer-name {
    font-size: 1rem;
  }

  .layer-percentage {
    font-size: 2rem;
  }
}

/* Alternative Design 13: Bug Funnel */
.smartie-funnel-section {
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(16, 16, 24, 0.9), rgba(24, 16, 32, 0.9));
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.funnel-container {
  max-width: 900px;
  margin: 0 auto;
}

.funnel-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.funnel-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.funnel-stage {
  width: 100%;
  display: flex;
  justify-content: center;
}

.funnel-bar {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.full-width {
  width: 100%;
}

.medium-width {
  width: 75%;
}

.small-width {
  width: 50%;
}

.funnel-bar.full-width {
  border: 2px solid rgba(255, 100, 100, 0.5);
}

.funnel-bar.medium-width {
  border: 2px solid rgba(255, 150, 100, 0.5);
}

.funnel-bar.small-width {
  border: 2px solid rgba(0, 255, 204, 0.5);
}

.funnel-content {
  padding: 1rem 1.5rem;
  text-align: center;
}

.funnel-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.funnel-stat {
  font-size: 2rem;
  font-weight: 700;
  color: #ff6666;
  margin: 0.3rem 0;
}

.funnel-stat.bugs {
  color: #ff9966;
}

.funnel-stat.success {
  color: #00ffcc;
}

.funnel-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.funnel-arrow {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.3);
}

.funnel-divider {
  margin: 1rem 0;
  text-align: center;
}

.divider-badge {
  display: inline-block;
  background: linear-gradient(135deg, #00ffcc, #00ff88);
  color: #000;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 1;
  position: relative;
}

.funnel-result {
  margin-top: 1rem;
}

.result-box {
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(0, 255, 136, 0.1));
  border: 2px solid #00ffcc;
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
}

.result-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.result-text strong {
  color: #00ffcc;
  font-size: 1.2rem;
}

.result-text p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0.3rem 0 0 0;
  font-size: 0.9rem;
}

/* Alternative Design 14: Shield/Protection Visual */
.smartie-shield-section {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(16, 16, 24, 0.9), rgba(24, 16, 32, 0.9));
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.shield-container {
  max-width: 900px;
  margin: 0 auto;
}

.shield-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  margin-bottom: 3rem;
}

.shield-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.shield-layers {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.shield-layer {
  border-radius: 20px;
  position: relative;
}

.outer-shield {
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(0, 255, 136, 0.1));
  border: 3px solid #00ffcc;
  padding: 3rem;
  margin-bottom: 0.3rem;
}

.inner-content {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.1), rgba(236, 72, 153, 0.1));
  border: 2px solid #a78bfa;
  padding: 2rem;
  border-radius: 15px;
}

.shield-content {
  text-align: center;
}

.shield-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.shield-content h3,
.shield-content h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.shield-percentage {
  font-size: 3rem;
  font-weight: 700;
  color: #00ffcc;
  margin: 1rem 0;
}

.content-percentage {
  font-size: 2.5rem;
  font-weight: 700;
  color: #a78bfa;
  margin: 1rem 0;
}

.content-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.shield-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.shield-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 255, 204, 0.1);
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.shield-feature:hover {
  background: rgba(0, 255, 204, 0.15);
  border-color: rgba(0, 255, 204, 0.5);
  transform: translateX(4px);
}

.shield-feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.shield-badge,
.content-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1rem;
}

.shield-badge {
  background: rgba(0, 255, 204, 0.2);
  border: 1px solid #00ffcc;
  color: #00ffcc;
}

.content-badge {
  background: rgba(167, 139, 250, 0.2);
  border: 1px solid #a78bfa;
  color: #fdf;
}

.content-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.content-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(167, 139, 250, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.content-feature:hover {
  background: rgba(167, 139, 250, 0.15);
  border-color: rgba(167, 139, 250, 0.5);
  transform: translateX(4px);
}

.content-feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.shield-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.shield-benefit-card {
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
}

.benefit-icon-lg {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.shield-benefit-card h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.shield-benefit-card p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9rem;
}

/* Alternative Design 15: Timeline Evolution */
.smartie-evolution-section {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(16, 16, 24, 0.9), rgba(24, 16, 32, 0.9));
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.evolution-container {
  max-width: 1200px;
  margin: 0 auto;
}

.evolution-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.evolution-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 2rem;
}

.competitor-track {
  border: 2px solid rgba(255, 100, 100, 0.5);
}

.smartie-track {
  border: 2px solid rgba(0, 255, 204, 0.5);
}

.track-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.track-icon {
  font-size: 1.5rem;
}

.track-header h3 {
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  margin: 0;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 1rem;
  bottom: 1rem;
  width: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.competitor-track .timeline::before {
  background: linear-gradient(180deg, #ff6666 0%, rgba(255, 102, 102, 0.3) 100%);
}

.smartie-track .timeline::before {
  background: linear-gradient(180deg, #00ffcc 0%, rgba(0, 255, 204, 0.3) 100%);
}

.timeline-step {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.timeline-step::before {
  content: '';
  position: absolute;
  left: -1.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  z-index: 1;
}

.competitor-track .timeline-step::before {
  background: #ff6666;
}

.smartie-track .timeline-step::before {
  background: #00ffcc;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.step-time {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}

.step-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  align-self: center;
}

.step-status.error {
  background: rgba(255, 100, 100, 0.2);
  border: 1px solid #ff6666;
  color: #ff6666;
}

.step-status.success {
  background: rgba(0, 255, 204, 0.2);
  border: 1px solid #00ffcc;
  color: #00ffcc;
}

.step-status.warning {
  background: rgba(255, 215, 0, 0.2);
  border: 1px solid #ffd700;
  color: #ffd700;
}

/* Design 17: Bars Comparison */
.smartie-bars-section {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(16, 16, 24, 0.9), rgba(24, 16, 32, 0.9));
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.bars-container {
  max-width: 900px;
  margin: 0 auto;
}

.bars-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.bars-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bar-item {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.bar-label {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}

.bar-fill-container {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  height: 40px;
  position: relative;
  overflow: hidden;
}

.bar-fill-level {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 10px;
  transition: width 1s ease;
}

.bar-fill-level.competitor {
  background: linear-gradient(90deg, rgba(255, 100, 100, 0.6), rgba(255, 100, 100, 0.3));
  color: #fff;
}

.bar-fill-level.smartie {
  background: linear-gradient(90deg, rgba(0, 255, 204, 0.6), rgba(0, 255, 204, 0.3));
  color: #000;
}

/* Design 18: Process Steps */
.smartie-process-section {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(16, 16, 24, 0.9), rgba(24, 16, 32, 0.9));
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid transparent;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: #00ffcc;
  background: rgba(0, 255, 204, 0.05);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00ffcc, #00ff88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}

.step-title {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.step-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* RBAC Design 1: Access Control Mystery */
.smartie-rbac-mystery-section {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(16, 16, 24, 0.9), rgba(24, 16, 32, 0.9));
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.rbac-mystery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.rbac-mystery-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.rbac-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.rbac-mystery-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 2rem;
  border: 2px solid transparent;
}

.rbac-mystery-card.danger-card {
  border-color: rgba(255, 100, 100, 0.5);
}

.rbac-mystery-card.success-card {
  border-color: rgba(0, 255, 204, 0.5);
}

.rbac-mystery-card h3 {
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.mystery-visual {
  margin-bottom: 1.5rem;
}

.code-chaos {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 100, 100, 0.3);
  border-radius: 8px;
  padding: 1.5rem;
  font-family: 'Courier New', monospace;
}

.chaos-line {
  color: #ff6666;
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

.chaos-line.uncertain {
  color: #ffaa66;
}

.security-warning {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 100, 100, 0.2);
  border-left: 4px solid #ff6666;
  color: #ff6666;
  font-size: 0.85rem;
  font-weight: 600;
}

.mystery-concerns {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mystery-concerns .concern {
  padding: 1rem 1.5rem;
  background: rgba(255, 100, 100, 0.1);
  border-left: 4px solid #ff6666;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mystery-concerns .concern:hover {
  background: rgba(255, 100, 100, 0.15);
  border-left-width: 6px;
  transform: translateX(4px);
}

.permission-matrix-preview {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 8px;
  padding: 1rem;
}

.mini-matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.mini-matrix th,
.mini-matrix td {
  padding: 0.75rem 0.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-matrix th {
  color: #00ffcc;
  font-weight: 600;
  text-align: left;
}

.mini-matrix th:first-child,
.mini-matrix td:first-child {
  text-align: left;
}

.mini-matrix td {
  color: rgba(255, 255, 255, 0.8);
}

.permission-yes {
  color: #00ffcc;
  font-weight: 700;
}

.permission-no {
  color: #ff6666;
  opacity: 0.5;
}

.clarity-badge {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.2), rgba(0, 255, 136, 0.2));
  border: 2px solid #00ffcc;
  border-radius: 10px;
  text-align: center;
  color: #00ffcc;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 255, 204, 0.2);
}

.clarity-benefits {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.clarity-benefits .benefit {
  padding: 1rem 1.5rem;
  background: rgba(0, 255, 204, 0.1);
  border-left: 4px solid #00ffcc;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.clarity-benefits .benefit:hover {
  background: rgba(0, 255, 204, 0.15);
  border-left-width: 6px;
  transform: translateX(4px);
}

/* RBAC Design 2: Permission Matrix Showcase */
.smartie-rbac-matrix-section {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(16, 16, 24, 0.9), rgba(24, 16, 32, 0.9));
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.rbac-matrix-container {
  max-width: 1200px;
  margin: 0 auto;
}

.rbac-matrix-title {
  font-size: 2.5rem;
  text-align: center;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.rbac-matrix-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.matrix-showcase {
  margin-bottom: 2rem;
}

.matrix-example {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.matrix-example h3 {
  color: #00ffcc;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.full-matrix {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.permission-table {
  width: 100%;
  display: table;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  overflow: hidden;
  table-layout: fixed;
  min-width: 600px;
}

.permission-table tbody {
  display: table-row-group;
}

.permission-table tr {
  display: table-row;
}

.permission-table th,
.permission-table td {
  display: table-cell;
  vertical-align: middle;
}

.permission-table thead tr th:first-child {
  border-top-left-radius: 12px;
}

.permission-table thead tr th:last-child {
  border-top-right-radius: 12px;
}

.permission-table th {
  background: rgba(0, 255, 204, 0.1);
  color: #00ffcc;
  padding: 1rem;
  font-weight: 600;
  text-align: center;
  border-bottom: 2px solid rgba(0, 255, 204, 0.3);
}

.permission-table th.role-col {
  text-align: left;
  width: 150px;
}

.permission-table td {
  padding: 0.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.role-name {
  color: #fff;
  font-weight: 600;
  padding: 1rem !important;
  text-align: left !important;
}

.perm-cell {
  padding: 0.8rem !important;
  border-radius: 8px;
}

.perm-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.perm-icon {
  font-size: 1.3rem;
  font-weight: 700;
}

.perm-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.full-access {
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.2), rgba(0, 255, 136, 0.2));
  border: 1px solid #00ffcc !important;
}

.full-access .perm-icon {
  color: #00ffcc;
}

.full-access .perm-label {
  color: #00ffcc;
}

.edit-access {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(236, 72, 153, 0.2));
  border: 1px solid #a78bfa !important;
}

.edit-access .perm-icon {
  color: #a78bfa;
}

.edit-access .perm-label {
  color: #a78bfa;
}

.own-only {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.2));
  border: 1px solid #ffd700 !important;
}

.own-only .perm-icon {
  color: #ffd700;
}

.own-only .perm-label {
  color: #ffd700;
}

.read-only {
  background: linear-gradient(135deg, rgba(100, 150, 255, 0.2), rgba(150, 200, 255, 0.2));
  border: 1px solid #6496ff !important;
}

.read-only .perm-icon {
  color: #6496ff;
}

.read-only .perm-label {
  color: #6496ff;
}

.no-access {
  background: rgba(255, 100, 100, 0.1);
  border: 1px solid #ff6666 !important;
  opacity: 0.6;
}

.no-access .perm-icon {
  color: #ff6666;
}

.no-access .perm-label {
  color: #ff6666;
}

.matrix-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.legend-badge {
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid;
}

.legend-item span:last-child {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.matrix-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.matrix-benefit-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 204, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.matrix-benefit-card .benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.matrix-benefit-card h4 {
  color: #00ffcc;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.matrix-benefit-card p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9rem;
}

/* RBAC Design 3: Security Nightmare vs Peace of Mind */
.smartie-rbac-nightmare-section {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(16, 16, 24, 0.9), rgba(24, 16, 32, 0.9));
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.nightmare-container {
  max-width: 1200px;
  margin: 0 auto;
}

.nightmare-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.nightmare-column {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 2rem;
  border: 2px solid transparent;
}

.nightmare-column.danger {
  border-color: rgba(255, 100, 100, 0.5);
}

.nightmare-column.success {
  border-color: rgba(0, 255, 204, 0.5);
}

.nightmare-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nightmare-header h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.nightmare-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.scenario-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.scenario-step {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.step-badge {
  min-width: 2rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.nightmare-column.danger .step-badge {
  background: rgba(255, 100, 100, 0.3);
  color: #ff6666;
}

.nightmare-column.success .step-badge {
  background: rgba(0, 255, 204, 0.3);
  color: #00ffcc;
}

.step-text {
  flex: 1;
}

.step-text strong {
  color: #fff;
  display: block;
  margin-bottom: 0.25rem;
}

.step-text p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.scenario-verdict {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
}

.nightmare-column.danger .scenario-verdict {
  background: rgba(255, 100, 100, 0.2);
  border: 2px solid #ff6666;
}

.nightmare-column.success .scenario-verdict {
  background: rgba(0, 255, 204, 0.2);
  border: 2px solid #00ffcc;
}

.verdict-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.verdict-text {
  font-size: 1.1rem;
  font-weight: 600;
}

.nightmare-column.danger .verdict-text {
  color: #ff6666;
}

.nightmare-column.success .verdict-text {
  color: #00ffcc;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .prompt-input {
    font-size: 1rem;
    padding: 1rem;
  }

  .create-button {
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
  }

  /* All visual sections */
  .smartie-better-section,
  .smartie-split-section,
  .smartie-stats-section,
  .smartie-bars-section,
  .smartie-process-section,
  .smartie-icon-grid-section,
  .smartie-layers-section,
  .smartie-battlefield-section,
  .smartie-breakdown-section,
  .smartie-iceberg-section,
  .smartie-counter-section,
  .smartie-funnel-section,
  .smartie-shield-section,
  .smartie-evolution-section,
  .smartie-meter-section,
  .smartie-blocks-section,
  .smartie-time-section,
  .smartie-pie-section,
  .smartie-stack-section,
  .smartie-rbac-mystery-section,
  .smartie-rbac-matrix-section,
  .smartie-rbac-nightmare-section {
    margin-top: 2rem;
    padding: 1.5rem 1rem;
    border-radius: 15px;
  }

  /* Section titles and subtitles */
  .smartie-title,
  .split-title,
  .stats-title,
  .bars-title,
  .process-title,
  .icon-grid-title,
  .layers-title,
  .battlefield-title,
  .breakdown-title,
  .iceberg-title,
  .counter-title,
  .funnel-title,
  .shield-title,
  .evolution-title,
  .meter-title,
  .blocks-title,
  .time-title,
  .pie-title,
  .stack-title,
  .rbac-mystery-title,
  .rbac-matrix-title,
  .nightmare-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .smartie-subtitle,
  .split-subtitle,
  .bars-subtitle,
  .funnel-subtitle,
  .shield-subtitle,
  .rbac-mystery-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  /* Grid layouts - make single column */
  .smartie-better-content,
  .split-comparison,
  .stats-grid,
  .evolution-comparison,
  .shield-benefits,
  .rbac-comparison,
  .nightmare-comparison {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  /* Diagram and visual elements */
  .smartie-diagram {
    padding: 1rem;
  }

  .diagram-bar {
    height: 40px;
  }

  .builtin-fill,
  .ai-fill {
    min-height: 40px;
  }

  .fill-label {
    font-size: 0.8rem;
  }

  /* Stats cards */
  .stat-card {
    padding: 1.2rem;
  }

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

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

  /* Comparison bars */
  .bar-item {
    padding: 0.8rem;
  }

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

  .bar-fill-level {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }

  /* Process steps */
  .process-step {
    padding: 1rem;
  }

  .step-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }

  .step-title {
    font-size: 1rem;
  }

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

  /* Tables */
  .comparison-table-wrapper {
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table {
    min-width: 600px;
    font-size: 0.8rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.6rem 0.4rem;
  }

  /* FAQ section */
  .faq-section {
    padding: 2rem 1rem;
  }

  .faq-title {
    font-size: 1.8rem;
  }

  .faq-item {
    padding: 1rem;
  }

  .faq-question {
    font-size: 1rem;
  }


  /* Layers specific */
  .architecture-layer {
    padding: 1.2rem;
    min-height: auto;
  }

  .layer-percentage {
    font-size: 2rem;
    position: static;
    display: block;
    margin-top: 0.5rem;
  }

  /* Battlefield variant */
  .battlefield-visual,
  .breakdown-comparison,
  .iceberg-comparison {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .battlefield-vs,
  .breakdown-divider,
  .iceberg-divider {
    padding-top: 0;
    padding-bottom: 0;
  }

  .bug-category {
    padding: 0.8rem;
  }

  .bug-icon,
  .layer-icon {
    font-size: 1.5rem;
  }

  .bug-count {
    font-size: 1rem;
  }

  .result-calculation,
  .result-equation {
    font-size: 1.2rem;
    padding: 1.2rem;
  }

  .calc-operator,
  .equation-operator {
    margin: 0 0.5rem;
  }

  /* Breakdown variant */
  .bug-source-info {
    padding: 0.8rem;
  }

  .bug-source-name {
    font-size: 0.95rem;
  }

  .bug-source-percent {
    font-size: 1rem;
  }

  .bug-source-detail {
    font-size: 0.8rem;
  }

  .breakdown-total strong,
  .conclusion-stat {
    font-size: 2rem;
  }

  /* Iceberg variant */
  .iceberg-side {
    min-height: auto;
  }

  .iceberg-layer {
    padding: 1.2rem;
  }

  .complexity-item {
    padding: 0.6rem;
    font-size: 0.85rem;
  }

  .iceberg-layer .layer-percentage,
  .hidden-layer .layer-percentage,
  .protected-layer .layer-percentage {
    font-size: 1.1rem;
  }

  .conclusion-highlight {
    font-size: 0.95rem;
    padding: 1.2rem;
  }

  /* Counter variant */
  .counter-number {
    font-size: 3rem;
  }

  .bug-sources-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
  }

  .bug-source-card {
    padding: 1rem;
  }

  .source-icon {
    font-size: 2rem;
  }

  .source-name {
    font-size: 0.95rem;
  }

  .source-bugs {
    font-size: 1.1rem;
  }

  .source-issues {
    font-size: 0.75rem;
  }

  .arrow-label {
    font-size: 1.1rem;
  }

  .arrow-graphic {
    font-size: 3rem;
  }

  /* Funnel specific - already compact */
  .funnel-visual {
    padding: 0 0.5rem;
  }

  /* Shield specific */
  .shield-layers {
    padding: 1rem;
  }

  .outer-shield {
    padding: 1.5rem;
  }

  .inner-content {
    padding: 1.2rem;
  }

  .shield-icon {
    font-size: 3rem;
  }

  .shield-percentage {
    font-size: 2rem;
  }

  .shield-benefits {
    grid-template-columns: 1fr;
  }

  /* Permission table mobile optimization */
  .permission-table {
    font-size: 0.7rem;
    min-width: 0;
    width: 100%;
  }

  /* Hide Users and Settings columns on mobile */
  .permission-table th:nth-child(2),
  .permission-table td:nth-child(2),
  .permission-table th:nth-child(5),
  .permission-table td:nth-child(5) {
    display: none;
  }

  .perm-cell {
    padding: 0.5rem 0.2rem !important;
  }

  .perm-icon {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
  }

  .perm-label {
    font-size: 0.65rem;
  }

  .role-name {
    font-size: 0.8rem;
    padding: 0.75rem 0.5rem !important;
  }

  .matrix-legend {
    gap: 0.75rem;
    padding: 1rem;
  }

  .legend-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }

  .legend-item span:last-child {
    font-size: 0.75rem;
  }

  /* Evolution timeline */
  .timeline-step {
    padding: 1rem;
  }

  .step-time {
    font-size: 0.75rem;
  }

  .step-title {
    font-size: 0.95rem;
  }

  /* RBAC sections */
  .rbac-mystery-card,
  .nightmare-column {
    padding: 1.2rem;
  }

  .code-chaos {
    padding: 1rem;
  }

  .chaos-line {
    font-size: 0.75rem;
  }

  .mini-matrix {
    font-size: 0.75rem;
  }

  .mini-matrix th,
  .mini-matrix td {
    padding: 0.5rem 0.3rem;
  }

  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }

  .hero,
  .content-section,
  .layout-container,
  .content-wrap {
    overflow-x: hidden;
  }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-tagline {
    font-size: 0.9rem;
  }

  .prompt-input {
    font-size: 0.9rem;
    padding: 0.8rem;
  }

  .create-button {
    font-size: 0.9rem;
    padding: 0.8rem 1.2rem;
  }

  /* Further reduce section spacing */
  .smartie-better-section,
  .smartie-split-section,
  .smartie-stats-section,
  .smartie-bars-section,
  .smartie-process-section,
  .smartie-icon-grid-section,
  .smartie-layers-section,
  .smartie-battlefield-section,
  .smartie-breakdown-section,
  .smartie-iceberg-section,
  .smartie-counter-section,
  .smartie-funnel-section,
  .smartie-shield-section,
  .smartie-evolution-section,
  .smartie-meter-section,
  .smartie-blocks-section,
  .smartie-time-section,
  .smartie-pie-section,
  .smartie-stack-section,
  .smartie-rbac-mystery-section,
  .smartie-rbac-matrix-section,
  .smartie-rbac-nightmare-section {
    padding: 1rem 0.5rem;
  }

  /* Smaller titles */
  .smartie-title,
  .split-title,
  .stats-title,
  .bars-title,
  .process-title,
  .icon-grid-title,
  .layers-title,
  .battlefield-title,
  .breakdown-title,
  .iceberg-title,
  .counter-title,
  .funnel-title,
  .shield-title,
  .evolution-title,
  .meter-title,
  .blocks-title,
  .time-title,
  .pie-title,
  .stack-title,
  .rbac-mystery-title,
  .rbac-matrix-title,
  .nightmare-title {
    font-size: 1.3rem;
  }

  .comparison-table {
    font-size: 0.7rem;
  }

  .pricing-card {
    padding: 1rem;
  }

  .plan-price {
    font-size: 1.5rem;
  }
}