/* ==========================
   NEW HOMEPAGE SECTIONS
========================== */

/* ==========================
   PATTERN ALTERNATIVES
========================== */

/* Pattern 1: Fixed 4-Column Grid */
.value-props-pattern-1 {
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.02);
}

.value-props-grid-fixed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-prop-card-fixed {
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-glass);
}

.value-prop-card-fixed:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

@media (max-width: 1024px) {
  .value-props-grid-fixed {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .value-props-grid-fixed {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .value-prop-card-fixed {
    padding: 28px 20px;
  }
}

/* Pattern 2: Horizontal Scroll Carousel */
.value-props-pattern-2 {
  padding: 80px 20px;
}

.value-props-carousel {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.carousel-wrapper {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0;
  touch-action: pan-x;
}

.carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.value-prop-card-carousel {
  flex: 0 0 calc(25% - 18px);
  min-width: 280px;
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px 24px;
  scroll-snap-align: start;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-glass);
}

.value-prop-card-carousel:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

@media (max-width: 768px) {
  .value-prop-card-carousel {
    flex: 0 0 calc(80% - 12px);
    min-width: 260px;
  }
}

/* Pattern 3: Alternating Icon Position */
.value-props-pattern-3 {
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.02);
}

.value-props-alternating {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.value-prop-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px;
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-glass);
}

.value-prop-row:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(8px);
}

.value-prop-row.icon-right {
  grid-template-columns: 1fr auto;
}

.value-prop-row.icon-right:hover {
  transform: translateX(-8px);
}

.value-prop-icon-alt {
  width: 80px;
  height: 80px;
  color: var(--color-primary-green);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 170, 0.1);
  border-radius: 16px;
  padding: 16px;
}

.value-prop-icon-alt svg {
  width: 100%;
  height: 100%;
}

.value-prop-content-alt h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.value-prop-content-alt p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 768px) {
  .value-prop-row {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
    gap: 20px;
  }

  .value-prop-row.icon-right {
    grid-template-columns: 1fr;
  }

  .value-prop-row:hover,
  .value-prop-row.icon-right:hover {
    transform: translateY(-4px);
  }

  .value-prop-icon-alt {
    width: 64px;
    height: 64px;
    margin: 0 auto;
  }
}

/* ==========================
   ORIGINAL SECTIONS
========================== */

/* Value Props Section */
.value-props-section {
  padding: 80px 20px;
}

.value-props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-prop-card {
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-glass);
}

.value-prop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.value-prop-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--color-primary-green);
}

.value-prop-icon svg {
  width: 100%;
  height: 100%;
}

.value-prop-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.value-prop-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* How It Works New */
.how-it-works-new {
  padding: 80px 20px;
}

.steps-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

.step-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.step-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.step-connector-line {
  width: 80px;
  height: 2px;
  background: var(--border-color);
  margin-top: 32px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
    gap: 32px;
  }

  .step-connector-line {
    width: 2px;
    height: 40px;
    margin: 0;
  }
}

/* Pattern 1: Vertical Timeline */
.how-it-works-timeline {
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.02);
}

.timeline-container {
  max-width: 700px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  position: relative;
}

.timeline-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
  z-index: 2;
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 27px;
  top: 56px;
  width: 2px;
  height: calc(100% + 32px);
  background: linear-gradient(to bottom, var(--border-color), transparent);
}

.timeline-content {
  padding-bottom: 48px;
}

.timeline-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.timeline-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.timeline-item:last-child .timeline-content {
  padding-bottom: 0;
}

@media (max-width: 640px) {
  .timeline-item {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .timeline-number {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .timeline-line {
    left: 23px;
    top: 48px;
  }

  .timeline-content {
    padding-bottom: 40px;
  }
}

/* Pattern 2: Card-Based Grid */
.how-it-works-cards {
  padding: 80px 20px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-glass);
  position: relative;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 212, 170, 0.4);
}

.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  color: var(--color-primary-green);
  background: rgba(0, 212, 170, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.step-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 212, 170, 0.15);
  color: var(--color-primary-green);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.step-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 600px;
  }
}

/* Live Preview Section */
.live-preview-section {
  padding: 80px 20px;
}

.preview-widget {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-glass);
}

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

.preview-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5CB85C;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.preview-metric {
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-metric .metric-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.preview-metric .metric-value {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
}

.preview-metric .metric-value.positive {
  color: #5CB85C;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
}

.status-badge.active {
  background: rgba(92, 184, 92, 0.1);
  color: #5CB85C;
}

.preview-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

@media (max-width: 640px) {
  .preview-metrics {
    grid-template-columns: 1fr;
  }

  .preview-widget {
    padding: 24px;
  }
}

/* Why Choose Simple */
.why-choose-simple {
  padding: 80px 20px;
}

.why-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur-subtle));
  -webkit-backdrop-filter: blur(var(--glass-blur-subtle));
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

.why-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.why-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.why-content p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

/* Pattern 1: Fixed 4-Column Grid */
.why-choose-pattern-1 {
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.02);
}

.why-grid-fixed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-item-fixed {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 20px;
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur-subtle));
  -webkit-backdrop-filter: blur(var(--glass-blur-subtle));
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-item-fixed:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

@media (max-width: 1024px) {
  .why-grid-fixed {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .why-grid-fixed {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Pattern 2: 2x2 Feature Grid */
.why-choose-pattern-2 {
  padding: 80px 20px;
}

.why-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.why-feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-glass);
}

.why-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(0, 212, 170, 0.3);
}

.why-feature-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}

.why-feature-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.why-feature-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 768px) {
  .why-feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-feature-card {
    padding: 36px 28px;
  }
}

/* Pricing Section */
.pricing-section {
  padding: 80px 20px;
}

.pricing-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: var(--shadow-glass);
}

.pricing-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-label {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
}

.pricing-value {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.pricing-footer {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

/* Security Section */
.security-section {
  padding: 100px 40px;
  background: #121316 !important;
  position: relative;
  --dot-size: 32px;
  transition: background 2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.security-section.scrolled {
  background: #F3F9F5 !important;
}

/* Bento grid overlay - fades in when scrolled */
.security-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    /* Visible dot grid pattern */
    radial-gradient(circle, rgba(0, 212, 170, 0.25) 2px, transparent 2px),
    /* Organic curved waves - top left (subtle) */
    radial-gradient(ellipse 800px 600px at top left, rgba(0, 212, 170, 0.10), transparent 60%),
    /* Organic curved waves - bottom right (prominent) */
    radial-gradient(ellipse 700px 500px at bottom right, rgba(0, 212, 170, 0.22), transparent 60%),
    /* Base green gradient veil */
    linear-gradient(135deg, rgba(0, 212, 170, 0.08), rgba(0, 212, 170, 0.15));
  background-size: var(--dot-size) var(--dot-size), 100% 100%, 100% 100%, 100% 100%;
  background-position: center, 0 0, 0 0, 0 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.25, 0.1, 0.25, 1);
  z-index: 0;
}

.security-section.scrolled::before {
  opacity: 1;
}

/* Radial vignette - fades in when scrolled */
.security-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    transparent 30%,
    rgba(0, 212, 170, 0.05) 100%
  );
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.security-section.scrolled::after {
  opacity: 1;
}

.security-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.security-shield {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
}

.security-text-block {
  flex: 1;
  max-width: 700px;
}

.security-statement {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: #FFFFFF;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  transition: color 2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.security-subline {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: #98989D;
  margin: 0;
  transition: color 2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.security-subline strong {
  font-weight: 800;
  font-size: 1.15em;
  color: #00D4AA;
  transition: color 2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.security-audits {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #C0C0C0;
  margin: 12px 0 0 0;
  opacity: 0.85;
  transition: color 2s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.security-audits a {
  color: #C0C0C0;
  text-decoration: none;
  border-bottom: 1px solid rgba(192, 192, 192, 0.4);
  transition: all 0.2s ease;
}

.security-audits a:hover {
  color: #E0E0E0;
  border-bottom-color: #C0C0C0;
}

/* Text colors when scrolled (on light background) */
.security-section.scrolled .security-statement {
  color: #0f172a;
}

.security-section.scrolled .security-subline {
  color: #1F2125;
}

.security-section.scrolled .security-subline strong {
  color: #008F7A;
}

.security-section.scrolled .security-audits {
  color: #1F2125;
  opacity: 0.5;
}

.security-section.scrolled .security-audits a {
  color: #008F7A;
  border-bottom-color: rgba(0, 143, 122, 0.3);
}

.security-section.scrolled .security-audits a:hover {
  color: #00A88C;
  border-bottom-color: #008F7A;
}

@media (max-width: 768px) {
  .security-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .security-shield {
    width: 120px;
    height: 120px;
    position: relative;
    z-index: 10;
  }

  /* Ensure Lottie player is visible on mobile */
  .security-shield dotlottie-player {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .security-statement {
    font-size: 28px;
    line-height: 1.4;
  }

  .security-subline {
    font-size: 18px;
  }

  .security-subline strong {
    font-size: 1.5em;
    font-weight: 900;
    display: block;
    margin-top: 4px;
  }
}

.security-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 2;
}

.security-item {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.security-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 48px rgba(0, 212, 170, 0.15);
}

.security-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.security-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0f172a;
}

.security-item p {
  font-size: 14px;
  line-height: 1.5;
  color: #1F2125;
  opacity: 0.8;
  margin: 0;
}

/* Pattern 1: Fixed 4-Column with Icon Backgrounds */
.security-pattern-1 {
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.02);
}

.security-grid-fixed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.security-card-fixed {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-glass);
}

.security-card-fixed:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.security-icon-bg {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: rgba(0, 212, 170, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.security-card-fixed h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.security-card-fixed p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 1024px) {
  .security-grid-fixed {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .security-grid-fixed {
    grid-template-columns: 1fr;
  }
}

/* Pattern 2: Two-Column Feature Showcase */
.security-pattern-2 {
  padding: 80px 20px;
}

.security-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.security-showcase-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-glass);
}

.security-showcase-card:hover {
  transform: translateX(6px);
  box-shadow: var(--card-shadow-hover);
}

.showcase-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: rgba(0, 212, 170, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.showcase-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.showcase-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 768px) {
  .security-showcase-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .security-showcase-card {
    padding: 24px;
  }
}

/* Pattern 3: Compact Badge Strip */
.security-pattern-3 {
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.02);
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-glass);
  min-width: 240px;
}

.security-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-hover);
}

.badge-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(0, 212, 170, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.badge-text h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: var(--text-primary);
}

.badge-text p {
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 768px) {
  .security-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .security-badge {
    min-width: auto;
  }
}

/* Pattern 4: Split-Screen Editorial */
.security-pattern-4 {
  padding: 80px 20px;
}

.security-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.security-split-left h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
  line-height: 1.3;
}

.security-split-left p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.security-split-left p:last-child {
  margin-bottom: 0;
}

.security-split-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.security-feature-compact {
  padding: 24px 20px;
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-glass);
  text-align: center;
}

.security-feature-compact:hover {
  transform: scale(1.05);
  box-shadow: var(--card-shadow-hover);
}

.feature-icon-compact {
  font-size: 36px;
  margin-bottom: 12px;
}

.security-feature-compact h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: var(--text-primary);
}

@media (max-width: 868px) {
  .security-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .security-split-left {
    text-align: center;
  }

  .security-split-right {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .security-split-right {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section - Card Layout */
.faq-section {
  padding: 100px 40px;
  background: #F3F9F5 !important;
  position: relative;
  --dot-size: 32px;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    /* Visible dot grid pattern */
    radial-gradient(circle, rgba(0, 212, 170, 0.25) 2px, transparent 2px),
    /* Organic curved waves - top left */
    radial-gradient(ellipse 800px 600px at top left, rgba(0, 212, 170, 0.15), transparent 60%),
    /* Organic curved waves - bottom right */
    radial-gradient(ellipse 700px 500px at bottom right, rgba(0, 212, 170, 0.18), transparent 60%),
    /* Base green gradient veil */
    linear-gradient(135deg, rgba(0, 212, 170, 0.08), rgba(0, 212, 170, 0.15));
  background-size: var(--dot-size) var(--dot-size), 100% 100%, 100% 100%, 100% 100%;
  background-position: center, 0 0, 0 0, 0 0;
  pointer-events: none;
  transition: background-size 0.3s ease-out;
  z-index: 0;
}

/* Radial vignette - dots darker at edges, lighter in center */
.faq-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    transparent 30%,
    rgba(0, 212, 170, 0.05) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.faq-title-group {
  max-width: 600px;
}

.faq-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin: 0;
}

.faq-title-accent {
  color: #00D4AA;
}

.faq-nav-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  max-width: 380px;
}

.faq-nav-explainer {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #1F2125;
  opacity: 0.7;
  margin: 0;
  text-align: right;
}

.faq-navigation {
  display: flex;
  gap: 12px;
}

.faq-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #1F2125;
  background: transparent;
  color: #1F2125;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-nav-btn:hover {
  background: #1F2125;
  color: #E8F4F0;
  transform: scale(1.05);
}

.faq-nav-btn:active {
  transform: scale(0.95);
}

.faq-cards-wrapper {
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-cards-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y pinch-zoom;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 calc(50% - 220px) 20px;
}

.faq-cards-track::-webkit-scrollbar {
  display: none;
}

.faq-card {
  flex: 0 0 300px;
  min-height: 480px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: 24px;
  padding: 40px 32px;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Subtle curved corner accent lines */
.faq-card:not(.faq-card-featured)::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-left: 1.5px solid rgba(0, 212, 170, 0.15);
  border-bottom: 1.5px solid rgba(0, 212, 170, 0.15);
  border-radius: 0 0 0 24px;
  pointer-events: none;
  z-index: 0;
}


.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0, 212, 170, 0.15);
}

.faq-card-featured {
  background: #121316;
  border-color: rgba(255, 255, 255, 0.1);
  flex: 0 0 440px;
  min-height: 480px;
  position: relative;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.faq-card-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.15) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 1;
  z-index: 0;
  border-radius: 20px;
}

.faq-card-question {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
  color: #0f172a;
  margin: 0;
  position: relative;
  z-index: 1;
}

.faq-card-featured .faq-card-question {
  color: #00D4AA;
  font-size: 28px;
  margin-bottom: 24px;
}

.faq-card-answer {
  display: none;
}

.faq-card-featured .faq-card-answer {
  display: block;
  color: #FFFFFF;
  font-size: 17px;
  line-height: 1.8;
  margin: 0;
  opacity: 0.7;
}

.faq-card-featured .faq-card-answer strong {
  color: #FFFFFF;
  opacity: 0.85;
  font-weight: 600;
}

.faq-card-featured .faq-card-answer em {
  opacity: 0.5;
  font-style: italic;
  font-size: 0.95em;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 80px 20px;
  }

  .faq-header {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }

  .faq-title {
    font-size: 32px;
  }

  .faq-cards-track {
    padding: 0 calc(50% - 140px) 20px;
  }

  .faq-card {
    flex: 0 0 280px;
    min-height: 340px;
    padding: 28px 20px;
    scroll-snap-align: center;
  }

  .faq-card-featured {
    flex: 0 0 290px;
    min-height: 360px;
    padding: 28px 20px;
    scroll-snap-align: center;
  }

  .faq-card-question {
    font-size: 18px;
  }

  .faq-card-featured .faq-card-question {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .faq-card-answer {
    font-size: 14px;
  }

  .faq-card-featured .faq-card-answer {
    font-size: 14px;
    line-height: 1.7;
  }
}


/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
  .value-props-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-prop-card {
    padding: 32px 24px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .security-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-item {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

}

@media (max-width: 480px) {
  .security-grid {
    grid-template-columns: 1fr;
  }

  .value-prop-card {
    padding: 28px 20px;
  }

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

  .value-prop-card p {
    font-size: 15px;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .pricing-item {
    padding: 16px;
  }

  .pricing-label,
  .pricing-value {
    font-size: 15px;
  }

  .preview-widget {
    padding: 20px;
  }

  .faq-question {
    padding: 20px 24px;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
  }
}
