

/* Main container styles */
.sv-container {
  margin: 5rem 8rem 0;
  padding: 3rem 2rem;
  background: linear-gradient(to bottom right, #f9fafb, #e0e7ff);
  min-height: 100vh;
  border-radius: 6rem;
  box-sizing: border-box;
}

/* Header styles */
.sv-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
  animation: svFadeInUp 0.5s ease forwards;
}

.sv-header__title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #111827;
}

.sv-header__desc {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.5;
}

/* Features grid */
.sv-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.sv-feature {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  animation: svFadeInUp 0.5s ease forwards 0.2s;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sv-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
}

.sv-feature__icon {
  width: 3rem;
  height: 3rem;
  background: #e0e7ff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.sv-feature__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #4f46e5;
}

.sv-feature__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111827;
}

.sv-feature__desc {
  color: #4b5563;
  line-height: 1.5;
}

/* APT section */
.sv-apt {
  background: #111827;
  border-radius: 0.75rem;
  padding: 2rem;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
  animation: svFadeInUp 0.5s ease forwards 0.4s;
}

.sv-apt__title {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.sv-apt__install {
  background: #1f2937;
  padding: 1rem;
  border-radius: 0.5rem;
  font-family: monospace;
  color: white;
  margin-bottom: 1rem;
}

.sv-apt__desc {
  color: #9ca3af;
  margin-bottom: 2rem;
}

.sv-apt__commands {
  display: grid;
  gap: 1.5rem;
}

.sv-command__title {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.sv-command__desc {
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.sv-command__example {
  background: #1f2937;
  padding: 1rem;
  border-radius: 0.5rem;
  font-family: monospace;
  color: white;
  transition: transform 0.3s ease;
}

.sv-command__example:hover {
  transform: scale(1.02);
}

/* CTA section */
.sv-cta-start {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: svFadeInUp 0.5s ease forwards 0.6s;
  padding: 3rem 2rem;
  
  border-radius: 3rem;
  margin: 2rem 0;
}

.sv-cta-start__title {
  font-size: 1.875rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.sv-cta-start__desc {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Responsive styles for sv-cta-start section */
@media (max-width: 1024px) {
  .sv-cta-start {
    padding: 2.5rem 1.5rem;
    border-radius: 2.5rem;
  }
  
  .sv-cta-start__title {
    font-size: 1.75rem;
  }
  
  .sv-cta-start__desc {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .sv-cta-start {
    padding: 2rem 1rem;
    border-radius: 2rem;
  }
  
  .sv-cta-start__title {
    font-size: 1.5rem;
  }
  
  .sv-cta-start__desc {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .sv-cta-start {
    padding: 1.5rem 1rem;
    border-radius: 1.5rem;
  }
  
  .sv-cta-start__title {
    font-size: 1.375rem;
  }
  
  .sv-cta-start__desc {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .sv-apt {
    padding: 1.25rem;
    margin-bottom: 2rem;
  }
  
  .sv-apt__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .sv-apt__install,
  .sv-command__example {
    padding: 0.75rem;
    font-size: 0.8rem;
    line-height: 1.4;
  }
  
  .sv-command__title {
    font-size: 1.1rem;
  }
  
  .sv-command__desc {
    font-size: 0.9rem;
  }
  
  .sv-apt__desc {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
  
  .sv-command {
    padding-bottom: 1.25rem;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .sv-apt {
    padding: 1rem;
    border-radius: 0.5rem;
  }
  
  .sv-apt__install,
  .sv-command__example {
    font-size: 0.75rem;
    padding: 0.625rem;
  }
  
  .sv-apt__title {
    font-size: 1.125rem;
  }
  
  .sv-command__title {
    font-size: 1rem;
  }
}

/* Ensure command examples maintain proper spacing and readability */
@supports (-webkit-touch-callout: none) {
  /* iOS-specific fix */
  .sv-axwpt__install,
  .sv-command__example {
    -webkit-overflow-scrolling: touch;
  }
}
/* CTA section */
.sv-cta {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: svFadeInUp 0.5s ease forwards 0.6s;
  padding: 2rem 0;
}

.sv-cta__title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #111827;
}

.sv-cta__desc {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.sv-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  background: #4f46e5;
  color: white;
  border: none;
  border-radius: 38px;
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sv-cta__button:hover {
  background: #4338ca;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.5);
}

.sv-cta__button:active {
  transform: scale(0.97);
}

.sv-cta__button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.5);
}

.sv-cta__button svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.625rem;
}

/* Animations */
@keyframes svFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero section styles */
.hero-section {
  min-height: clamp(500px, 90vh, 100vh);
  background: transparent;
  padding: 3rem 2rem;
  margin: 2rem 8rem 0;
  border-radius: 6rem;
  box-sizing: border-box;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  background-color: transparent !important
}

.section-title h1, .section-title h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
  position: relative;
  
}

/* Removed underline for section titles */

.section-title p {
  font-size: 1.25rem;
  
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.5;
}

/* Responsive styles for section titles */
@media (max-width: 1024px) {
  .section-title h1, .section-title h2 {
    font-size: 2.25rem;
  }
  
  .section-title p {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    margin-bottom: 2rem;
  }
  
  .section-title h1, .section-title h2 {
    font-size: 2rem;
  }
  
  .section-title p {
    font-size: 1rem;
    max-width: 90%;
  }
  
  /* Removed underline styles */
}

@media (max-width: 480px) {
  .section-title h1, .section-title h2 {
    font-size: 1.75rem;
  }
  
  .section-title p {
    font-size: 0.95rem;
  }
  
  /* Removed underline styles */
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInLeft 0.5s 0.2s forwards;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

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

.icon-wrapper {
  background: rgba(183, 110, 121, 0.1);
  padding: 0.75rem;
  border-radius: 0.5rem;
  color: #B76E79;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.feature:hover .icon-wrapper {
  transform: scale(1.1);
}

.icon-wrapper svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #FF8C00;
  stroke: #FF8C00;
}

.feature-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111827;
}

.feature-content p {
  color: #4b5563;
  line-height: 1.5;
}

.terminal {
  background: linear-gradient(
    165deg,
    #F8FAFC 0%,
    #EEF2FF 50%,
    #F5F3FF 100%
  );
  border-radius: 0.75rem;
  padding: 1.5rem;
  color: #4ade80;
  font-family: monospace;
  font-size: 0.875rem;
  opacity: 0;
  transform: scale(0.95);
  animation: fadeInScale 0.5s 0.4s forwards;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #7C3AED;
}

.terminal-content {
  opacity: 0;
  animation: fadeIn 0.5s 0.6s forwards;
}

.progress-bar {
  height: 0.5rem;
  width: 100%;
  background: #1f2937;
  border-radius: 0.25rem;
  margin-top: 0.5rem;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, #2563EB, #7C3AED);
  border-radius: 0.25rem;
  width: 0%;
  animation: progress 2s linear infinite;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes progress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* Partners section */
.section-partners {
  background: linear-gradient(to bottom right, #f9fafb, #e0e7ff);
  padding: 20px;
  margin: 3rem 2rem 0;
  border-radius: 6rem;
  box-sizing: border-box;
}

.section-partners .marquee {
  --gap: 1rem;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  width: 80%;
  margin: 0 auto;
}

.section-partners .marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll 20s linear infinite;
  list-style: none;
  margin: 0;
  padding: 20px 0;
}

.section-partners .marquee--hover-pause:hover .marquee__content {
  animation-play-state: paused;
}

.section-partners .marquee__content li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 150px;
}

.section-partners .marquee__content img {
  width: 150px;
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
  vertical-align: middle;
  background: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.section-partners .marquee__content li img[alt="NVD"] {
  width: 180px;
  height: 92px;
  margin-top: -15px;
}

.section-partners .marquee__content li img[alt="GitHub"],
.section-partners .marquee__content li img[alt="Ubuntu"] {
  width: 140px;
  height: 56px;
}

.section-partners .marquee__content img:hover {
  transform: scale(1.05);
}

.source-name {
  font-size: 18px;
  color: #666666;
  text-align: center;
  font-weight: 600;
  margin-top: 5px;
}

.section-partners .marquee__content li:has(img[alt="NVD"]) .source-name {
  display: block;
  margin-top: -19px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

/* Pricing section */
.priceapt {
  margin: 5rem auto 0;
  padding: 3rem 2rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f9fafb !important;
  max-width: 1600px;
  box-sizing: border-box;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.pricing-card {
  background: #faf9f8 !important;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.pricing-card.enterprise {
  background: url('https://img.freepik.com/premium-photo/abstract-blurred-sky-colorful_40299-22.jpg') no-repeat center center !important;
  background-size: cover;
  color: white;
}

.pricing-card.highlight {
  border: 2px solid #8b5cf6;
}

.tier-badge {
  display: inline-block;
  padding: 6px 16px;
  background: white;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 500;
  color: #4f46e5;
  margin-bottom: 24px;
}

.enterprise .tier-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.price-container {
  margin-bottom: 8px;
}

.price {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.price-period {
  font-size: 16px;
  color: #6B7280;
  margin-left: 4px;
}

.enterprise .price-period,
.enterprise .billing-cycle,
.enterprise .description {
  color: rgba(255, 255, 255, 0.9);
}

.billing-cycle {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 24px;
}

.description {
  font-size: 16px;
  color: #111827;
  margin-bottom: 32px;
  line-height: 1.5;
}

.button-container {
  margin-top: auto;
}

.primary-button {
  width: 100%;
  padding: 16px;
  border-radius: 100px;
  border: none;
  background: #186aff;
  color: white;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 12px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(24, 106, 255, 0.2);
}

.enterprise .primary-button {
  background: white;
  color: #111827;
}

.highlight .primary-button {
  background: linear-gradient(to right, #f87171, #f59e0b);
}

.secondary-button {
  width: 100%;
  padding: 16px;
  border-radius: 100px;
  border: none;
  background: white;
  color: #6B7280;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.secondary-button:hover {
  background: #f3f4f6;
  color: #111827;
}

.enterprise .secondary-button {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.enterprise .secondary-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Comparison Table */
.comparison-table {
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  background: white;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

th {
  background: #f9fafb;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  position: sticky;
  top: 0;
  z-index: 10;
}

td {
  color: #111827;
  font-size: 0.95rem;
}

td:first-child {
  font-weight: 500;
  position: sticky;
  left: 0;
  background: white;
  z-index: 5;
}

.highlight-cell {
  color: #4f46e5;
  background-color: #f5f3ff;
  font-weight: 600;
}

tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

td:not(:first-child) {
  text-align: center;
}

/* Responsive styles - Tablet */
@media (max-width: 1024px) {
  .sv-container {
    margin: 4rem 4rem 0;
    padding: 2.5rem 1.5rem;
    border-radius: 3rem;
  }
  
  .hero-section {
    margin: 2rem 4rem 0;
    padding: 2.5rem 1.5rem;
    border-radius: 3rem;
    min-height: auto;
  }
  
  .section-partners {
    margin: 2rem 1.5rem 0;
    border-radius: 3rem;
  }
  
  .grid {
    gap: 2rem;
  }
  
  .sv-header__title,
  .section-title h1,
  .section-title h2 {
    font-size: 2.25rem;
  }
  
  .sv-header__desc,
  .section-title p {
    font-size: 1.125rem;
  }
  
  .sv-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .comparison-table {
    margin-top: 1.5rem;
  }
  
  th, td {
    padding: 0.875rem;
  }
}

/* Responsive styles - Mobile */
@media (max-width: 768px) {
  .sv-container {
    margin: 3rem 1rem 0;
    padding: 2rem 1rem;
    border-radius: 2rem;
  }
  
  .hero-section {
    margin: 2rem 1rem 0;
    padding: 2rem 1rem;
    border-radius: 2rem;
  }
  
  .section-partners {
    margin: 2rem 1rem 0;
    border-radius: 2rem;
    padding: 10px;
  }
  
  .section-partners .marquee {
    width: 95%;
  }
  
  .section-partners .marquee__content {
    gap: 0.5rem;
    animation-duration: 15s;
  }
  
  .section-partners .marquee__content li {
    min-width: 100px;
    gap: 5px;
  }
  
  .section-partners .marquee__content img {
    width: 100px;
    height: 40px;
  }
  
  .section-partners .marquee__content li img[alt="NVD"] {
    width: 120px;
    height: 60px;
  }
  
  .source-name {
    font-size: 12px;
  }
  
  .grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .sv-header__title,
  .section-title h1,
  .section-title h2,
  .sv-cta__title {
    font-size: 1.875rem;
  }
  
  .sv-header__desc,
  .section-title p,
  .sv-cta__desc {
    font-size: 1rem;
  }
  
  .sv-features,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature {
    gap: 0.75rem;
  }
  
  .icon-wrapper {
    padding: 0.625rem;
  }
  
  .feature-content h3,
  .sv-feature__title {
    font-size: 1.125rem;
  }
  
  .sv-apt {
    padding: 1.5rem;
  }
  
  .sv-apt__title {
    font-size: 1.25rem;
  }
  
  .sv-apt__install,
  .sv-command__example {
    padding: 0.75rem;
    font-size: 0.8125rem;
  }
  
  .pricing-card {
    padding: 1.5rem;
  }
  
  .price {
    font-size: 2.5rem;
  }
  
  .primary-button,
  .secondary-button {
    padding: 0.875rem;
  }
  
  .comparison-table {
    margin: 1.5rem -1rem 0;
    border-radius: 0;
    box-shadow: none;
  }
  
  table {
    min-width: 800px;
  }
  
  th, td {
    padding: 0.75rem 0.5rem;
    font-size: 0.8125rem;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .sv-container,
  .hero-section,
  .section-partners {
    margin: 2rem 0.5rem 0;
    padding: 1.5rem 0.75rem;
    border-radius: 1.5rem;
  }
  
  .sv-header__title,
  .section-title h1,
  .section-title h2 {
    font-size: 1.625rem;
  }
  
  .sv-feature,
  .pricing-card {
    padding: 1.25rem;
  }
  
  .sv-apt {
    padding: 1.25rem;
  }
  
  .terminal {
    padding: 1rem;
  }
  
  .section-partners .marquee__content img {
    width: 80px;
    height: 32px;
  }
  
  .section-partners .marquee__content li img[alt="NVD"] {
    width: 90px;
    height: 45px;
  }
  
  .source-name {
    font-size: 10px;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .sv-header,
  .sv-feature,
  .sv-apt,
  .sv-cta,
  .features,
  .terminal,
  .terminal-content,
  .progress,
  .pricing-card,
  .primary-button,
  .secondary-button {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  
  .section-partners .marquee__content {
    animation-duration: 60s !important;
  }
}

/* High contrast mode support */
@media (forced-colors: active) {
  .sv-feature__icon,
  .icon-wrapper,
  .terminal,
  .progress-bar,
  .progress,
  .sv-cta__button,
  .primary-button,
  .secondary-button {
    forced-color-adjust: none;
  }
  
  .section-partners .marquee__content img {
    forced-color-adjust: none;
  }
}

/* Focus states for accessibility */
.sv-feature:focus,
.feature:focus,
.sv-command__example:focus,
.sv-cta__button:focus,
.primary-button:focus,
.secondary-button:focus {
  outline: 2px solid #4f46e5;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .sv-container,
  .hero-section,
  .section-partners {
    margin: 0 !important;
    padding: 1.5rem !important;
    background: none !important;
    box-shadow: none !important;
  }
  
  .terminal,
  .sv-apt {
    border: 1px solid #ccc;
    break-inside: avoid;
  }
  
  .progress-bar,
  .progress {
    display: none;
  }
  
  .pricing-card {
    break-inside: avoid;
    border: 1px solid #eee;
  }
  
  .comparison-table {
    overflow-x: visible;
  }
  
  table {
    min-width: 100%;
    page-break-inside: auto;
  }
  
  tr {
    page-break-inside: avoid;
  }
  
  .highlight-cell {
    background-color: #f5f5f5 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
 /* Enhanced Styles for Security Testing Page */
 .page-header {
  background: linear-gradient(to right, #186aff, #4f46e5);
  color: white;
  padding: 3rem 0;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: white;
  text-decoration: underline;
}

.breadcrumb span {
  color: white;
}

.header-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.header-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
  position: relative;
}

/* Removed underline for section titles */

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 700px;
  margin: 1.5rem auto 3.5rem;
  line-height: 1.6;
}

/* Partners Section */
.section-partners {
  padding: 2rem 0;
  overflow: hidden;
  background: linear-gradient(to bottom, #f7f9fc, #ffffff);
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 2rem;
}

.marquee--hover-pause:hover .marquee__content {
  animation-play-state: paused;
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: 2rem;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 2rem));
  }
}

.marquee__content li {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem;
}

.marquee__content img {
  max-width: 50px;
  max-height: 50px;
  transition: transform 0.3s ease;
}

.marquee__content li:hover img {
  transform: scale(1.2);
}

.source-name {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Hero Section */
.hero-section {
  padding: 4rem 0;
  background: linear-gradient(to bottom, #ffffff, #f7f9fc);
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(79, 70, 229, 0.2);
}

.icon-wrapper {
  width: 50px;
  height: 50px;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f46e5;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature:hover .icon-wrapper {
  background: rgba(79, 70, 229, 0.2);
  transform: rotate(10deg);
}

.feature-content h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #111827;
}

.feature-content p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Terminal */
.terminal {
  background: #1e293b;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.terminal:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(-5px);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: #0f172a;
  color: white;
  font-weight: 500;
}

.terminal-content {
  padding: 1.5rem;
  font-family: 'SF Mono', 'Menlo', monospace;
  font-size: 0.9rem;
  color: #e5e7eb;
  line-height: 1.7;
}

.terminal-output {
  color: #9ca3af;
  margin-top: 0.5rem;
}

.terminal-success {
  color: #60a5fa;
  margin-top: 0.25rem;
}

.terminal-command {
  margin-top: 1rem;
}

.progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin-top: 0.75rem;
  overflow: hidden;
}

.progress {
  height: 100%;
  width: 70%;
  background: #4f46e5;
  border-radius: 3px;
  animation: progressAnimation 2s infinite;
}

@keyframes progressAnimation {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 95%;
  }
}

/* SecureVault APT Tool Section */
.sv-main {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #f7f9fc, #ffffff);
}

.sv-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sv-header {
  text-align: center;
  margin-bottom: 4rem;
}

.sv-header__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}

.sv-header__desc {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.sv-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.sv-feature {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.sv-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(79, 70, 229, 0.2);
}

.sv-feature__icon {
  width: 60px;
  height: 60px;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #4f46e5;
  transition: all 0.3s ease;
}

.sv-feature:hover .sv-feature__icon {
  background: rgba(79, 70, 229, 0.2);
  transform: rotate(10deg);
}

.sv-feature__icon svg {
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
}

.sv-feature:hover .sv-feature__icon svg {
  transform: scale(1.1);
}

.sv-feature__title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111827;
}

.sv-feature__desc {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}

/* APT Section */
.sv-apt {
  margin-bottom: 4rem;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.sv-apt:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(79, 70, 229, 0.2);
}

.sv-apt__title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #111827;
}

.sv-apt__install {
  padding: 1rem 1.5rem;
  background: #1e293b;
  color: #e5e7eb;
  border-radius: 0.5rem;
  font-family: 'SF Mono', 'Menlo', monospace;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.sv-apt__desc {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.sv-apt__commands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.sv-command {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.sv-command:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  transform: translateY(-5px);
}

.sv-command__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #111827;
}

.sv-command__desc {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.sv-command__example {
  padding: 0.75rem 1rem;
  background: #1e293b;
  color: #e5e7eb;
  border-radius: 0.5rem;
  font-family: 'SF Mono', 'Menlo', monospace;
  font-size: 0.85rem;
  overflow-x: auto;
}

/* CTA Section */
.sv-cta {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(45deg, #eff6ff, #dbeafe);
  border-radius: 1rem;
}

.sv-cta__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}

.sv-cta__desc {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.sv-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 3rem;
  background: linear-gradient(to right, #186aff, #4f46e5);
  color: white;
  font-weight: 500;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sv-cta__button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.sv-cta__button svg {
  width: 20px;
  height: 20px;
}

/* Pricing Section */
.priceapt {
  padding: 5rem 0;
  background: transparent;
}

.pricing-grid {
  margin-bottom: 4rem;
}

/* Comparison Table */
.comparison-container {
  margin-top: 5rem;
}

.comparison-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #111827;
  text-align: center;
}

.comparison-table {
  overflow-x: auto;
  margin-bottom: 3rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
  background: #f3f4f6;
  font-weight: 600;
  color: #111827;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td:first-child {
  font-weight: 500;
  color: #111827;
}

.highlight-cell {
  color: #4f46e5;
  font-weight: 600;
  background: rgba(79, 70, 229, 0.05);
}

/* CTA Section */
.cta-section {
  text-align: center;

  background: linear-gradient(45deg, #eff6ff, #dbeafe);
  border-radius: 4rem;
  margin: 0rem 9rem 0rem 9rem;
}

.cta-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}

.cta-section p {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 3rem;
  background: linear-gradient(to right, #186aff, #4f46e5);
  color: white;
  font-weight: 500;
  font-size: 1.1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  color: white;
}

/* Responsive styles for CTA section */
@media (max-width: 1024px) {
  .cta-section {
    margin: 0rem 4rem;
    border-radius: 3rem;
    padding: 2.5rem 1.5rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .cta-section p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .cta-section {
    margin: 0rem 1rem;
    border-radius: 2rem;
    padding: 2rem 1rem;
  }
  
  .cta-section h2 {
    font-size: 1.75rem;
  }
  
  .cta-section p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-button {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cta-section {
    margin: 0rem 0.5rem;
    border-radius: 1.5rem;
    padding: 1.5rem 1rem;
  }
  
  .cta-section h2 {
    font-size: 1.5rem;
  }
  
  .cta-section p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
  
  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }
}

/* Animations */
.animate-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-element.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .sv-features {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .sv-apt__commands {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 992px) {
  .grid {
    grid-template-columns: 1fr;
  }
  
  .terminal {
    order: -1;
    margin-bottom: 3rem;
  }
  
  .comparison-table {
    overflow-x: scroll;
  }
}

@media (max-width: 768px) {
  .header-title {
    font-size: 2rem;
  }
  
  .header-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .sv-header__title {
    font-size: 2rem;
  }
  
  .sv-header__desc {
    font-size: 1.1rem;
  }
  
  .sv-cta {
    padding: 2rem;
  }
  
  .sv-cta__title {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .icon-wrapper {
    margin-bottom: 1rem;
  }
  
  .sv-feature {
    padding: 1.5rem;
  }
  
  .sv-feature__icon {
    width: 50px;
    height: 50px;
  }
  
  .sv-feature__icon svg {
    width: 25px;
    height: 25px;
  }
  
  .sv-apt {
    padding: 1.5rem;
  }
  
  .sv-command {
    padding: 1.25rem;
  }
  
  .cta-section h2 {
    font-size: 1.75rem;
  }
  
  .cta-section p {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}
