/* ============================================
   Offdays - Vacation Management Theme
   ============================================ */

:root {
  /* Brand Colors */
  --brand-primary: #4d8bff;
  --brand-primary-hover: #3d7aef;

  /* Text Colors */
  --text-main: #0c2238;
  /* Hlavní tmavá pro text */
  --text-secondary: #56657a;
  /* Šedá pro popisky */
  --text-white: #ffffff;
  /* Bílá pro text na tmavém pozadí */
  --text-white-muted: #b0bec5;
  /* Tlumená bílá */

  /* Background Colors */
  --bg-body: #ffffff;
  --bg-surface: #f8f9fa;
  /* Jemně šedé pozadí pro sekce */
  --bg-navy: #0a1929;
  /* Tmavě modrá pro Footer a kontrastní sekce */

  /* Borders */
  --border-light: #e9ecef;
  --border-white-translucent: rgba(255, 255, 255, 0.15);

  /* Spacing & Sizes */
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 4rem;

  --max-width: 1400px;
  --radius-card: 16px;
  --radius-btn: 36px;
}

/* ============================================
   Reset & Base
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text-main);
  background: var(--bg-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-main);
  margin-bottom: var(--space-sm);
}

p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
}

/* ============================================
   Components: Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--brand-primary);
  color: var(--text-white);
  box-shadow: 0 16px 32px rgba(56, 204, 218, 0.35);
}

.btn-primary:hover {
  background: var(--brand-primary-hover);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-body);
  color: var(--text-main);
  border-color: #d9e1eb;
}

.btn-secondary:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 12px;
  box-shadow: none;
}

/* ============================================
   Components: Layout & Cards
   ============================================ */
.section {
  padding: var(--space-2xl) var(--space-xl);
}

.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

.section-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-secondary);
}

/* Contrast Section (Navy Background) */
.section-contrast {
  background: var(--bg-navy);
  color: var(--text-white);
}

.section-contrast .section-title,
.section-contrast h3 {
  color: var(--text-white);
}

.section-contrast .section-subtitle,
.section-contrast p {
  color: var(--text-white-muted);
}

.section-light {
  background: var(--bg-surface);
}

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

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

/* Glass Card */
.glass-card {
  background: var(--bg-body);
  padding: 2.5rem;
  border-radius: var(--radius-card);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

/* Utilities */
.text-center {
  text-align: center;
}

.icon-lg {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  color: var(--brand-primary);
}

.icon-md {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-sm);
  color: var(--brand-primary);
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-full {
  width: 100%;
}

.mb-0 {
  margin-bottom: 0;
}

/* ============================================
   Header
   ============================================ */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 36px;
  height: 36px;
}

.brand span {
  font-size: 24px;
  font-weight: 700;
}

.brand-vault {
  color: var(--text-main);
}

.brand-iqo {
  color: var(--brand-primary);
}

header nav {
  display: flex;
  align-items: center;
}

header nav a {
  margin-left: 36px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-main);
}

header nav a:hover {
  color: var(--brand-primary);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 64px 120px;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  min-height: calc(100vh - 84px);
  /* Full viewport minus header height */
  box-sizing: border-box;
}

.hero-left {
  max-width: 540px;
}

.eyebrow {
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-left h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-left h1 span {
  color: var(--brand-primary);
}

.hero-left h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-left p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-right {
  position: relative;
  width: 60%;
  max-width: 700px;
}

.hero-photo {
  width: 100%;
  border-radius: 90px;
  display: block;
}

.hero-ui {
  position: absolute;
  bottom: -34%;
  right: -5%;
  width: 88%;
  transform: rotate(-5deg);
  filter: drop-shadow(0 18px 40px rgba(9, 30, 66, 0.22));
}

/* ============================================
   Features Carousel
   ============================================ */
.features-carousel {
  overflow: hidden;
  width: 100%;
  padding: 2rem 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.features-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.features-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.feature-item {
  width: 200px;
  text-align: center;
  flex-shrink: 0;
}

/* Redesigned Features Section (Dark) */
.section-features-dark {
  background: var(--bg-navy);
  color: var(--text-white);
  padding: 5rem 0;
  /* More padding for importance */
}

.section-features-dark .section-title {
  color: var(--text-white);
}

.section-features-dark .section-subtitle,
.section-features-dark p {
  color: var(--text-white-muted);
}

.features-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 3rem;
}

.features-grid .feature-item {
  width: 180px;
  /* Slightly smaller to fit 5 in a row if possible, or wrap nicely */
}

.features-grid .icon-md {
  color: var(--brand-primary);
  /* Ensure icons pop */
  margin-bottom: 1rem;
}

.features-grid h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

@media (max-width: 900px) {
  .features-grid {
    gap: 2rem;
  }

  .features-grid .feature-item {
    width: 45%;
    /* 2 per row on mobile */
  }
}

/* ============================================
   Specific Sections (Steps, Pricing, FAQ)
   ============================================ */
/* Steps */
/* Steps */
.step-container {
  position: relative;
  /* For positioning the connecting line */
  z-index: 1;
}

/* Dashed connecting line */
.step-connector {
  position: absolute;
  top: 40px;
  /* Center vertically with the 80px circles (approx) */
  left: 15%;
  right: 15%;
  height: 2px;
  border-top: 2px dashed rgba(56, 204, 218, 0.3);
  z-index: -1;
  /* Behind circles */
}

@media (max-width: 900px) {
  .step-connector {
    display: none;
    /* Hide on mobile */
  }
}

.step-circle {
  width: 80px;
  height: 80px;
  /* Larger for premium feel */
  background: rgba(255, 255, 255, 0.05);
  /* Glassy background */
  border: 2px solid var(--brand-primary);
  box-shadow: 0 0 20px rgba(56, 204, 218, 0.2);
  /* Glow */
  color: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  backdrop-filter: blur(5px);
  position: relative;
  /* Ensure it sits on top of line */
  z-index: 2;
}

/* Pricing */
.check-list li {
  padding: 0.5rem 0;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.check-list li svg {
  flex-shrink: 0;
  color: var(--brand-primary);
}

.pricing-popular {
  border: 2px solid var(--brand-primary);
  position: relative;
}

.toggle-btn {
  flex: 1;
  padding: 8px 16px;
  border-radius: 99px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.toggle-btn.active {
  background: var(--brand-primary);
  color: var(--text-white);
}

.toggle-btn:hover:not(.active) {
  color: var(--text-white);
}

.price-large {
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

/* FAQ */
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-main);
  text-align: left;
}

.faq-question:hover {
  color: var(--brand-primary);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.2s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--brand-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--bg-navy);
  color: var(--text-white);
  padding: 4rem 2rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-links a {
  color: var(--text-white-muted);
  margin-right: 2rem;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--brand-primary);
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-white-translucent);
  color: var(--text-white-muted);
  font-size: 0.875rem;
}

/* Language Selector */
.lang-dropdown {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-white-translucent);
  color: var(--text-white);
  padding: 8px 32px 8px 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
}

.lang-dropdown:focus {
  outline: none;
  border-color: var(--brand-primary);
}

/* ============================================
   Responsive
   ============================================ */
/* ============================================
   Responsive
   ============================================ */
@media (max-width: 900px) {
  header {
    padding: 20px;
    position: relative;
    z-index: 1000;
  }

  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-body);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 999;
    padding: 2rem;
    gap: 2rem;
  }

  .nav-menu.active {
    right: 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }

  .nav-menu a {
    margin: 0;
    font-size: 1.25rem;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    overflow: hidden;
  }

  .hero-left h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }

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

  .hero-right {
    width: 100%;
    margin-top: 40px;
    /* Prevent horizontal overflow from absolute UI element */
    padding-bottom: 20px;
  }

  .hero-ui {
    width: 70%;
    bottom: -10%;
    right: 0;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .pricing-controls {
    flex-direction: column;
    gap: 16px !important;
    padding: 16px;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 2rem;
  }

  .control-group {
    width: 100%;
    justify-content: space-between;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .footer-links a {
    margin: 0;
    display: block;
  }

  .glass-card {
    padding: 1.5rem;
  }
}

@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* ============================================
   Legal / Content Pages (Typography)
   ============================================ */
.legal-section {
  padding: 80px 20px;
  background: var(--bg-body);
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.last-updated {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 3rem;
  display: block;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 2rem;
}

.legal-content h2 {
  margin-top: 2.5rem;
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  font-size: 1.15rem;
}

.legal-content p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* ============================================
   Pricing Controls & Updates
   ============================================ */

/* Controls Container */
.pricing-controls {
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  border-radius: 99px;
  padding: 8px 24px;
  display: inline-flex !important;
  gap: 32px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.control-group {
  display: flex;
  align-items: center;
}

.control-group label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-right: 12px;
}

/* Custom Select */
.form-select {
  appearance: none;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 8px 36px 8px 16px;
  font-size: 0.95rem;
  color: var(--text-main);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2356657a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: all 0.2s;
}

.form-select:hover,
.form-select:focus {
  border-color: var(--brand-primary);
  outline: none;
}

/* Toggle Switch */
.toggle-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 99px;
  padding: 4px;
  display: inline-flex;
}

.toggle-btn {
  padding: 6px 18px !important;
  border-radius: 99px !important;
  font-size: 0.9rem !important;
  font-weight: 500;
  transition: all 0.2s ease;
}

.toggle-btn.active {
  background: var(--brand-primary) !important;
  color: var(--text-white) !important;
  box-shadow: 0 2px 4px rgba(56, 204, 218, 0.2);
}

.toggle-btn:not(.active) {
  color: var(--text-secondary) !important;
  background: transparent !important;
}

.toggle-btn:not(.active):hover {
  color: var(--brand-primary) !important;
}

/* Pricing Card Updates */
.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  padding: 2rem !important;
  /* Reduce padding */
}

/* Most Popular Badge - Absolute Positioning */
.badge-popular-abs {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--brand-primary);
  color: var(--text-white);
  padding: 4px 16px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(56, 204, 218, 0.3);
  text-transform: uppercase;
  z-index: 10;
}

.pricing-header {
  margin-bottom: 1.5rem;
  text-align: left;
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: var(--text-main);
}

.pricing-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
  min-height: 2.8em;
  /* Force height for alignment */
}

/* Price Row - Horizontal Alignment */
.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
  letter-spacing: -1px;
}

.price-period {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Features List Alignment */
.pricing-features {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.pricing-features li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.pricing-features li svg {
  color: var(--brand-primary);
  min-width: 20px;
}

.pricing-footer {
  margin-top: auto;
}

/* ============================================
   Pricing Controls Fixes (Light Theme)
   ============================================ */

/* Fix Container Alignment & Style */
.pricing-controls {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 20px !important;
  margin: 0 auto 40px auto !important;

  /* Floating Pill Look */
  background: #ffffff !important;
  border: 1px solid var(--border-light) !important;
  border-radius: 99px !important;
  padding: 8px 24px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
  width: fit-content !important;
}

/* Fix Label Visibility */
.control-group label {
  color: var(--text-main) !important;
  /* Dark text for light bg */
  font-weight: 600 !important;
  margin-right: 12px !important;
}

/* Custom Dropdown Styling */
.form-select {
  appearance: none !important;
  -webkit-appearance: none !important;

  background-color: var(--bg-surface) !important;
  /* Light gray */
  color: var(--text-main) !important;
  /* Dark text */
  border: 1px solid var(--border-light) !important;
  border-radius: 8px !important;
  padding: 8px 36px 8px 16px !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;

  /* Custom Dark Chevron */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230c2238' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  box-shadow: none !important;
}

.form-select:hover {
  border-color: var(--brand-primary) !important;
}

.form-select:focus {
  outline: none !important;
  border-color: var(--brand-primary) !important;
  box-shadow: 0 0 0 3px rgba(56, 204, 218, 0.1) !important;
}

/* Fix Toggle Container */
.toggle-container {
  background: var(--bg-surface) !important;
  border: 1px solid var(--border-light) !important;
}

.toggle-btn {
  color: var(--text-secondary) !important;
}

.toggle-btn.active {
  background: var(--brand-primary) !important;
  color: var(--text-white) !important;
}

/* Refine Toggle Buttons */
.toggle-btn {
  border: none !important;
  outline: none !important;
  font-weight: 700 !important;
  /* Bold text */
  box-shadow: none !important;
  background: transparent;
  /* Ensure transparent background for inactive */
}

.toggle-btn:focus {
  outline: none !important;
  /* Remove focus ring if that's the black outline */
  box-shadow: none !important;
}

/* Ensure container has the border, not buttons */
.toggle-container {
  border: 1px solid var(--border-light) !important;
  padding: 4px !important;
}

/* ============================================
   Hero Parallax (final)
   ============================================ */

.hero-right {
  position: relative;
}

/* Keep the original hero.png only as a sizing reference */
.hero-photo.hero-base {
  opacity: 0;
  pointer-events: none;
}

/* Layer container on top of the invisible base image */
.hero-parallax {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Each layer covers the same box as the original hero image */
.hero-parallax .layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

/* Match the rounded look of the original hero image */
.hero-parallax,
.hero-parallax .layer {
  border-radius: 90px;
}

/* Center wheel must rotate around its true center */
.layer-center {
  transform-origin: 50% 50%;
}

/* Visible shadows for cloud + team cards */
.layer-cloud,
.layer-left,
.layer-right {
  filter:
    drop-shadow(0 20px 30px rgba(9, 30, 66, 0.22)) drop-shadow(0 8px 16px rgba(9, 30, 66, 0.14)) !important;
}

/* Disable the legacy hero-ui if still present */
.hero-ui {
  display: none !important;
}

/* Mobile: disable parallax and show the base image instead */
@media (max-width: 900px) {
  .hero-parallax {
    display: none;
  }

  .hero-photo.hero-base {
    opacity: 1;
  }
}

/* ============================================
   Updated "Why Vaultiqo" Styles
   ============================================ */

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

@media (max-width: 1100px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.icon-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  /* Metched to storage-card */
  border-radius: var(--radius-card);
  border: 2px solid var(--border-light);
  /* Matched 2px */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--brand-primary);
}

/* Glass effect for icon-cards on dark backgrounds */
.section-contrast .icon-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.section-contrast .icon-card h3 {
  color: white;
}

.section-contrast .icon-card p {
  color: rgba(255, 255, 255, 0.7);
}

.section-contrast .icon-card .icon-circle {
  background: rgba(56, 204, 218, 0.15);
  box-shadow: 0 0 20px rgba(56, 204, 218, 0.1);
}

.icon-circle {
  width: 64px;
  height: 64px;
  background: rgba(56, 204, 218, 0.1);
  /* light brand primary */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--brand-primary);
}

.icon-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.icon-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--text-secondary);
}

/* ============================================
   Feature Split Card (IT Section)
   ============================================ */
.feature-split-card {
  background: #ffffff;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-split-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-split-visual {
  background: linear-gradient(135deg, rgba(56, 204, 218, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

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

.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 500;
}

.checklist-item svg {
  color: var(--brand-primary);
  flex-shrink: 0;
}

/* Integration Visual Nodes */
.node-group {
  position: relative;
  width: 100%;
  height: 300px;
}

.node {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease;
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.node:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(56, 204, 218, 0.15);
  border-color: var(--brand-primary);
}

.node-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(56, 204, 218, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
}

.node-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Specific Node Positioning */
.node-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  z-index: 10;
}

.node-center:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.node-1 {
  top: 15%;
  left: 20%;
}

.node-2 {
  top: 15%;
  right: 20%;
}

.node-3 {
  bottom: 15%;
  left: 20%;
}

.node-4 {
  bottom: 15%;
  right: 20%;
}

/* Connecting Lines (SVG overlay) */
.connections-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.connection-line {
  stroke: var(--brand-primary);
  stroke-width: 2;
  stroke-dasharray: 6;
  opacity: 0.3;
  animation: dash 30s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: -1000;
  }
}

@media (max-width: 900px) {
  .feature-split-card {
    grid-template-columns: 1fr;
  }

  .feature-split-visual {
    height: 300px;
  }
}

/* Refined IT Visuals (Premium) */
.feature-split-visual {
  background: linear-gradient(135deg, rgba(56, 204, 218, 0.03) 0%, #ffffff 100%);
  position: relative;
  /* Ensure zones are positioned relative to this */
}

/* Connection Path States */
.connection-line {
  transition: stroke 0.3s ease, stroke-width 0.3s ease, opacity 0.3s ease;
}

.connection-active {
  stroke: var(--brand-primary);
  stroke-width: 3;
  opacity: 1;
  filter: drop-shadow(0 0 4px rgba(56, 204, 218, 0.4));
}

.node-output:hover {
  cursor: pointer;
}

.node-group {
  height: 380px;
  /* Increased for spacing */
}

.node {
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
}

.node:hover {
  box-shadow: 0 16px 40px rgba(56, 204, 218, 0.15);
  transform: scale(1.05);
  z-index: 20;
}

.node-icon {
  width: 48px;
  height: 48px;
  background: rgba(56, 204, 218, 0.08);
}

.node-center {
  width: 140px;
  padding: 20px;
}

.node-center .node-icon {
  width: auto;
  height: auto;
  background: transparent;
}

.connection-line {
  opacity: 0.15;
}

/* Spread out nodes */
.node-1 {
  top: 8%;
  left: 8%;
}

.node-2 {
  top: 8%;
  right: 8%;
}

.node-3 {
  bottom: 8%;
  left: 8%;
}

.node-4 {

  /* ============================================
   Storage Options Section
   ============================================ */
  .storage-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-align: left;
    /* specific override */
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .storage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--brand-primary);
  }

  .storage-card .icon-circle {
    width: 56px;
    height: 56px;
    background: rgba(56, 204, 218, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--brand-primary);
  }

  .storage-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .storage-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
  }

  .storage-card .check-list {
    margin-top: auto;
  }

  /* ============================================
   Redesigned IT Visual (Flow Layout)
   ============================================ */

  /* Zones */
  .node-input-zone {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }

  .node-output-zone {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }

  /* Specific Node Styles */
  .node-input {
    position: relative;
    /* relative to zone */
    width: 110px;
    background: white;
    z-index: 5;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .node-output {
    position: relative;
    /* relative to zone */
    width: 140px;
    background: white;
    z-index: 5;
    padding: 12px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: default;
  }

  .node-output:hover {
    transform: translateX(-5px);
  }

  .node-output .node-label {
    text-align: left;
    font-size: 0.85rem;
  }

  .node-output .node-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  /* Color Highlights */
  .node-hosted:hover {
    border-color: #38CCDA;
    box-shadow: 0 8px 20px rgba(56, 204, 218, 0.2);
  }

  .node-drive:hover {
    border-color: #0F9D58;
    box-shadow: 0 8px 20px rgba(15, 157, 88, 0.2);
  }

  .node-firestore:hover {
    border-color: #FFCA28;
    box-shadow: 0 8px 20px rgba(255, 202, 40, 0.2);
  }

  .node-drive .node-icon {
    color: #0F9D58;
    background: rgba(15, 157, 88, 0.1);
  }

  .node-firestore .node-icon {
    color: #F57C00;
    background: rgba(255, 193, 7, 0.1);
  }
}

/* This closes .node-4 */

/* ============================================
   Storage Section Polish
   ============================================ */
.section-storage-bg {
  background: linear-gradient(135deg, #f8fcff 0%, #f0f7f8 100%);
  position: relative;
  overflow: hidden;
}

/* Separator removed */

/* ============================================
   Storage Conversion Polish (Pricing Match)
   ============================================ */
.storage-card {
  position: relative;
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-card);
  border: 2px solid var(--border-light);
  /* Default 2px border like pricing */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  text-align: left;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.storage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--brand-primary);
}

/* Featured Card Highlight (Like Vaultiqo Team) */
.storage-card.featured {
  /* Default border removed as requested - badge is sufficient */
  /* border: 2px solid var(--brand-primary); */
  /* box-shadow: 0 12px 40px rgba(56, 204, 218, 0.15); */
  /* transform: translateY(-5px); */
  border-color: rgba(56, 204, 218, 0.3);
  /* Subtle hint or just default? User said "doesn't need default frame". Let's stick to default border but maybe keep badge logic. */
  border: 2px solid var(--border-light);
  /* Reset to default */
}

/* Ensure hover works nicely on it */
.storage-card.featured:hover {
  border-color: var(--brand-primary);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  /* Re-apply hover shadow */
}

/* Badge Style - Matched to .badge-popular-abs */
.badge-recommend {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--brand-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 99px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(56, 204, 218, 0.3);
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-recommend.secondary {
  background: #eff6ff;
  /* Very light blue/gray */
  color: #64748b;
  border: 1px solid #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.storage-context-text {
  text-align: center;
  max-width: 700px;
  margin: 3rem auto 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   IT & Security Section (Architecture Diagram)
   ============================================ */

/* Section Layout */
.itsec-section {
  min-height: 100vh;
  /* max-height: 100vh; Removed to prevent cutting off on smaller screens if content overflows */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem;
}

.itsec-section .container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.itsec-section .section-head.center {
  text-align: center;
  margin-bottom: 3rem;
}

.itsec-section .section-head.center p {
  max-width: 920px;
  margin: 0 auto;
}

.itsec-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
  margin-top: 34px;
}

@media (max-width: 980px) {
  .itsec-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Left Column: Copy & Steps */
.itsec-copy h3 {
  margin: 0 0 14px 0;
}

.itsec-steps {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.itsec-step {
  display: flex;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .70);
  border: 1px solid rgba(10, 40, 60, .08);
  box-shadow: 0 12px 28px rgba(10, 40, 60, .06);
}

.itsec-badge {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(69, 190, 210, .18);
  color: rgba(10, 40, 60, .86);
  font-weight: 900;
  flex: 0 0 auto;
}

.itsec-step-title {
  font-weight: 900;
  color: rgba(10, 40, 60, .92);
  line-height: 1.2;
}

.itsec-step-desc {
  margin-top: 4px;
  color: rgba(10, 40, 60, .68);
  line-height: 1.45;
}

/* Trust checklist */
.itsec-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-top: 18px;
}

@media (max-width: 520px) {
  .itsec-trust {
    grid-template-columns: 1fr;
  }
}

.itsec-trust-item {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(10, 40, 60, .76);
  font-weight: 700;
}

.itsec-check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(69, 190, 210, .16);
  color: rgba(10, 40, 60, .86);
  font-size: 13px;
}

/* Right Column: Architecture Diagram */
.arch-diagram-wrapper {
  height: min(72vh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  overflow: visible;
}

.arch-diagram {
  width: 100%;
  max-width: 560px;
  height: 100%;
  transform: scale(.92);
  transform-origin: center center;
}

@media (max-height: 820px) {
  .arch-diagram-wrapper {
    height: min(64vh, 460px);
  }

  .arch-diagram {
    transform: scale(.86);
  }
}

.arch2 {
  position: relative;
  width: 760px;
  /* design-size canvas (matches SVG viewBox) */
  height: 360px;
  transform-origin: top left;
  /* scaled via JS for responsive fit */
  border-radius: 18px;
  overflow: visible;
  /* allow nodes to breathe */
}

.arch2::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 54%, rgba(69, 190, 210, .12), transparent 55%),
    radial-gradient(circle at 85% 24%, rgba(69, 190, 210, .09), transparent 55%),
    rgba(245, 250, 252, .72);
  border: 1px solid rgba(10, 40, 60, .08);
  box-shadow: 0 26px 60px rgba(10, 40, 60, .10);
  z-index: 0;
  pointer-events: none;
}

.arch2>* {
  position: relative;
  z-index: 1;
}

.arch2-stage {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, .65), transparent 60%);
  pointer-events: none;
}

/* Wires & Connections */
.arch2-wires {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.arch2-wire {
  fill: none;
  stroke: rgba(69, 190, 210, .75);
  stroke-width: 4;
  filter: url(#arch2Glow);
}

.arch2-wire-base {
  opacity: .18;
  stroke: rgba(69, 190, 210, .9);
}

.arch2-wire-active {
  opacity: 0;
  stroke: rgba(69, 190, 210, .95);
}

/* Wiring Logic based on steps */
.arch2[data-step="1"] .arch2-wire-1 {
  opacity: .90;
}

.arch2[data-step="2"] .arch2-wire-1 {
  opacity: .55;
}

.arch2[data-step="2"] .arch2-wire-2 {
  opacity: .90;
}

.arch2[data-step="3"] .arch2-wire-1,
.arch2[data-step="3"] .arch2-wire-2 {
  opacity: .90;
}

/* Pulse Animation */
.arch2.arch2-pulse .arch2-wire-active {
  animation: arch2Pulse 520ms ease-out 1;
}

@keyframes arch2Pulse {
  0% {
    stroke-width: 4;
    opacity: .25;
  }

  35% {
    stroke-width: 6;
    opacity: 1;
  }

  100% {
    stroke-width: 4;
    opacity: .90;
  }
}

/* Nodes */
.arch2-node {
  position: absolute;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(10, 40, 60, .10);
  box-shadow: 0 18px 40px rgba(10, 40, 60, .10);
  backdrop-filter: blur(6px);
}

.arch2-node:focus {
  outline: 3px solid rgba(69, 190, 210, .32);
  outline-offset: 2px;
}

.arch2-dir {
  left: 56px;
  top: 110px;
  width: 240px;
}

.arch2-core {
  left: 318px;
  top: 150px;
  width: 180px;
  text-align: center;
}

.arch2-storage {
  left: 520px;
  top: 185px;
  width: 220px;
}

.arch2-kicker {
  font-size: 12px;
  font-weight: 900;
  color: rgba(10, 40, 60, .56);
}

.arch2-title {
  font-size: 16px;
  font-weight: 950;
  margin-top: 2px;
  color: rgba(10, 40, 60, .92);
}

.arch2-sub {
  margin-top: 2px;
  color: rgba(10, 40, 60, .62);
  font-weight: 800;
  font-size: 12px;
}

.arch2-chips {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.arch2-chip {
  font-size: 11px;
  font-weight: 900;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(69, 190, 210, .12);
  border: 1px solid rgba(10, 40, 60, .06);
  color: rgba(10, 40, 60, .72);
}

/* Logo */
.arch2-logo {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  margin: 0 auto 8px auto;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, .90), rgba(255, 255, 255, 0) 45%),
    radial-gradient(circle at 50% 55%, rgba(69, 190, 210, .45), rgba(69, 190, 210, .20));
  box-shadow: 0 12px 22px rgba(69, 190, 210, .22);
}

/* Tabs */
.arch2-tabs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.arch2-tab {
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(10, 40, 60, .12);
  background: rgba(255, 255, 255, .72);
  color: rgba(10, 40, 60, .78);
  cursor: pointer;
}

.arch2-tab.is-active {
  background: rgba(69, 190, 210, .18);
  border-color: rgba(69, 190, 210, .40);
  color: rgba(10, 40, 60, .90);
}

.arch2-note {
  margin-top: 10px;
  color: rgba(10, 40, 60, .62);
  font-weight: 800;
  font-size: 12px;
}

/* Hints */
.arch2-hint {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  gap: 8px;
  pointer-events: none;
}

.arch2-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(10, 40, 60, .08);
  box-shadow: 0 10px 22px rgba(10, 40, 60, .07);
  font-size: 12px;
  font-weight: 900;
  color: rgba(10, 40, 60, .70);
}

.arch2-pill b {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(69, 190, 210, .16);
  color: rgba(10, 40, 60, .88);
}

/* Packets */
.arch2-packet {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(69, 190, 210, .65);
  box-shadow: 0 10px 24px rgba(69, 190, 210, .22);
  opacity: .0;
}

@supports (offset-path: path("M0 0 L10 10")) {
  .arch2-p1 {
    offset-path: path("M220 150 C 310 150, 340 170, 410 175");
    animation: arch2Packet 2.6s linear infinite;
    animation-delay: .2s;
  }

  .arch2-p2 {
    offset-path: path("M470 190 C 555 205, 585 220, 660 235");
    animation: arch2Packet 3.0s linear infinite;
    animation-delay: .8s;
  }
}

@keyframes arch2Packet {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }

  12% {
    opacity: .0;
  }

  20% {
    opacity: .85;
  }

  80% {
    opacity: .85;
  }

  95% {
    opacity: 0;
  }

  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}

/* Step gating for packets */
.arch2[data-step="1"] .arch2-p1 {
  opacity: 1;
}

.arch2[data-step="1"] .arch2-p2 {
  opacity: 0;
}

.arch2[data-step="2"] .arch2-p1 {
  opacity: .25;
}

.arch2[data-step="2"] .arch2-p2 {
  opacity: 1;
}

.arch2[data-step="3"] .arch2-p1,
.arch2[data-step="3"] .arch2-p2 {
  opacity: 1;
}

/* Reduced motion */
.arch2.arch2-reduced .arch2-packet {
  display: none;
}

/* =========================
   Architecture Visual Polish (Glass & Icons)
   ========================= */

/* Node Base - Glass Effect */
.arch2-node {
  display: flex;
  flex-direction: column;
  /* Removed padding here to reset for new layouts, added back specifically */
  padding: 18px;
  gap: 8px;
  background: rgba(255, 255, 255, 0.85);
  /* Slightly more opaque for crispness */
  border: 1px solid rgba(255, 255, 255, 1);
  /* White border highlight */
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(10, 40, 60, 0.05);
  /* Subtle dark border */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.arch2-node:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 48px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(69, 190, 210, 0.4);
  /* Brand highlight on hover */
}

/* Directory Node Layout */
.arch2-dir {
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
}

/* Central Vaultiqo Node */
.arch2-core {
  padding: 24px 20px;
  align-items: center;
}

/* Storage Node */
.arch2-storage {
  padding: 18px 24px;
}

/* Images & Icons */
.arch2-logo-img {
  width: 56px;
  height: 56px;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 12px rgba(69, 190, 210, 0.3));
  /* Glow */
}

.arch2-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.arch2-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(69, 190, 210, 0.1), rgba(69, 190, 210, 0.05));
  border: 1px solid rgba(69, 190, 210, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  flex-shrink: 0;
}

.arch2-icon-wrap.sm {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.arch2-icon {
  width: 24px;
  height: 24px;
}

.arch2-icon-wrap.sm .arch2-icon {
  width: 18px;
  height: 18px;
}

/* Typography Updates */
.arch2-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.arch2-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 2px;
}

/* Storage Header */
.arch2-header-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

/* Refined Tabs */
.arch2-tabs {
  margin-top: 4px;
  gap: 8px;
}

.arch2-tab {
  padding: 6px 12px;
  font-size: 12px;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.arch2-tab.is-active {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
  box-shadow: 0 4px 10px rgba(56, 204, 218, 0.3);
}

.arch2-note {
  margin-top: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Hide old chips if they exist (replaced by icon layout) */
.arch2-chips {
  display: none;
}

/* ============================================
   Premium Architecture Refresh (Mesh & Glass)
   ============================================ */

/* 1. Section Background - Mesh Gradient */
.itsec-section {
  position: relative;
  /* Override previous flat background if any */
  background: radial-gradient(circle at 0% 0%, rgba(24, 216, 216, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(56, 182, 255, 0.04) 0%, transparent 50%),
    var(--bg-body);
  /* Fallback/Base */
  z-index: 1;
}

/* Separator removed */

/* 2. Headline & Kicker Polish */
.itsec-copy h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  /* Larger */
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Add a "kicker" label before the H3 using pseudo-element */
.itsec-copy h3::before {
  content: "ARCHITECTURE";
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 8px;
  -webkit-text-fill-color: var(--brand-primary);
  /* Reset gradient */
}

/* 3. Glass Steps */
.itsec-step {
  /* Remove solid white */
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.itsec-step:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(56, 204, 218, 0.3);
}

/* Active Highlight Line */
.itsec-step::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--brand-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.itsec-step:hover::after {
  opacity: 1;
}

/* Refined Badge/Number */
.itsec-badge {
  background: transparent;
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
  font-size: 13px;
  box-shadow: 0 0 10px rgba(56, 204, 218, 0.15);
}

.itsec-step-title {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-primary);
}

/* 4. Checklist Grid (Pills) */
.itsec-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.itsec-trust-item {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.itsec-trust-item:hover {
  background: white;
  border-color: rgba(56, 204, 218, 0.3);
  color: var(--text-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.itsec-check {
  width: 18px;
  height: 18px;
  font-size: 11px;
  background: var(--brand-primary);
  color: white;
}

/* ============================================
   Final Visual Refinements (Overflow & Pattern)
   ============================================ */

/* 1. Fix Diagram Overflow */
.itsec-section {
  max-width: 100vw;
  overflow-x: hidden;
  /* Add background pattern */
  background-image:
    radial-gradient(circle at 0% 0%, rgba(24, 216, 216, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(56, 182, 255, 0.04) 0%, transparent 50%),
    url('../assets/background_dots.png');
  /* Pattern added */
  background-size: cover, cover, 600px;
  /* Pattern size */
  background-repeat: no-repeat, no-repeat, repeat;
  background-blend-mode: normal, normal, overlay;
}

/* Ensure diagram wrapper doesn't push width */
.arch-diagram-wrapper {
  max-width: 100%;
  overflow: hidden;
  /* localized clip just in case */
}

/* 2. Standardized Header Adjustments */
/* Ensure left-aligned headers in this section have correct spacing */
.itsec-copy .section-header {
  margin-bottom: 2rem;
}

.itsec-copy .section-title {
  font-size: 2.25rem;
  /* Match standard H2 size */
}

/* 3. Checkmark Icon Polish */
.itsec-check-icon {
  flex-shrink: 0;
  color: var(--brand-primary);
  /* Ensure size matches text */
  width: 20px;
  height: 20px;
}

.itsec-trust-item {
  /* Reset padding/gap for icon alignment */
  display: flex;
  align-items: center;
  gap: 8px;
  /* Gap between SVG and text */
}

/* Hide old pseudo-element checks if any remain */
.itsec-trust-item::before {
  content: none !important;
}

/* ============================================
   Corrective Refinements (Box & Scaling)
   ============================================ */

/* 1. Remove "Weird Box" Layer */
.arch2-stage {
  display: none !important;
  /* Disable the radial gradient box entirely */
}

/* 2. Responsive Diagram Scaling */
/* The diagram is fixed at ~700px width. On smaller screens, scale it down instead of overflowing */
@media (max-width: 1100px) {
  .arch-diagram-wrapper {
    /* Ensure wrapper clips bounds but allows overflow during scale calculation */
    overflow: visible;
  }

  .arch2 {
    transform-origin: top left;
    transform: scale(0.85);
    /* Mild scale down */
    margin-bottom: -50px;
    /* Compensate for empty space after scale */
  }
}

@media (max-width: 900px) {
  .arch2 {
    transform: scale(0.65);
    /* Stronger scale for tablets/mobile */
    margin-bottom: -100px;
    left: -20px;
    /* Slight nudge if needed */
    position: relative;
  }

  .itsec-diagram {
    /* Ensure container height adjusts */
    height: 280px;
    overflow: hidden;
  }
}

/* 3. Ensure Text Contrast on Dotted Background */
.itsec-copy {
  position: relative;
  z-index: 2;
  /* Sit above any background patterns */
}

/* ============================================
   Final Diagram Fixes (Visibility & Layout)
   ============================================ */

/* 1. Kill the "Box" Background */
.arch2::before {
  content: none !important;
  display: none !important;
  background: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* 2. Fix Wire Visibility (Darker & Thicker) */
.arch2-wire {
  stroke: #0891b2 !important;
  /* Strong Cyan/Teal for contrast */
  stroke-width: 5px !important;
  filter: none !important;
  /* Remove blur/glow that might fuzz it */
}

/* Base track - visible but subtle */
.arch2-wire-base {
  stroke: #cbd5e1 !important;
  /* Light Slate */
  opacity: 0.5 !important;
}

/* Active Flow - Darker and Sharp */
.arch2-wire-active {
  stroke: #0e7490 !important;
  /* Darker Teal */
  stroke-width: 5px !important;
}

/* Arrowhead Color match */
#arch2Arrow path {
  fill: #0891b2 !important;
}

/* Packets - Make them pop */
.arch2-packet {
  background: #0891b2 !important;
  box-shadow: 0 0 10px rgba(8, 145, 178, 0.5) !important;
}

/* 3. Prevent Cutoff - Stack Sooner */
/* Stack columns on standard laptops/smaller screens to give diagram full width */
@media (max-width: 1250px) {
  .itsec-grid {
    grid-template-columns: 1fr;
    /* Stack: Text Top, Diagram Bottom */
    gap: 50px;
  }

  .arch-diagram-wrapper {
    width: 100%;
    height: 420px;
    /* Sufficient height */
    overflow: visible;
    /* Don't clip shadows */
    display: flex;
    justify-content: center;
  }

  .arch2 {
    /* Reset positioning for centered stacked view */
    margin: 0 auto;
    left: auto;
    transform-origin: center top;
    transform: scale(0.95);
    /* Slight scale down to fit padding */
  }
}

@media (max-width: 800px) {
  .arch2 {
    transform: scale(0.65);
    /* Mobile scaling */
    transform-origin: top center;
    margin-bottom: -100px;
  }

  .arch-diagram-wrapper {
    height: 280px;
    overflow: hidden;
    /* Clip excess on mobile */
  }
}

/* ============================================
   Iterative Hardening (Stacking & Wires)
   ============================================ */

/* 1. Force Stacked Layout on almost all laptop screens (<1600px) */
/* The 760px diagram simply cannot fit side-by-side on 1200-1400px screens alongside text. */
@media (max-width: 1600px) {
  .itsec-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .itsec-copy {
    text-align: left;
    /* Keep text left aligned */
    max-width: 800px;
    margin: 0 auto;
    /* Center the text block */
  }

  .arch-diagram-wrapper {
    width: 100% !important;
    height: auto !important;
    min-height: 400px;
    display: flex;
    justify-content: center;
    overflow: visible !important;
    padding-top: 20px;
  }

  .arch2 {
    /* Center the diagram */
    margin: 0 auto !important;
    left: auto !important;
    transform-origin: center top !important;
    transform: scale(0.95) !important;
    /* Slight scale to fit comfortable */
  }
}

/* Mobile adjustments still needed */
@media (max-width: 800px) {
  .arch2 {
    transform: scale(0.65) !important;
    margin-left: -20px !important;
    /* Visual centering nudge */
  }
}

/* 2. Hard-Code Wire Visibility (Backup) */
/* Ensuring these take precedence over any blur filters */
.arch2-wires,
.arch2-wires * {
  filter: none !important;
  vector-effect: non-scaling-stroke;
}

/* ============================================
   Compact Refactor (580px Width Strategy)
   ============================================ */

/* 1. Revert Forced Stacking (Allow side-by-side) */
@media (max-width: 1600px) {
  .itsec-grid {
    grid-template-columns: 1.05fr .95fr !important;
    /* Restore grid */
    gap: 40px !important;
  }

  .arch-diagram-wrapper {
    height: 100%;
    /* display: flex; align-items: center; */
    /* Keep centering */
  }

  .arch2 {
    /* Reset transform for the compact version */
    transform: scale(1) !important;
    margin: 0 !important;
  }
}

/* 2. New Compact Container Dimensions */
.arch2 {
  width: 580px !important;
  /* Reduced from 760px */
  height: 320px !important;
  /* margin: 0 auto; handled by flex wrapper */
}

/* 3. Compact Node Positioning & Sizing */

/* Directory (Left) */
.arch2-dir {
  left: 10px !important;
  top: 110px !important;
  width: 170px !important;
  /* Compact width */
  padding: 14px 14px !important;
  gap: 10px !important;
}

/* Stack icon/text for space saving */
.arch2-dir {
  flex-direction: column !important;
  text-align: center !important;
}

.arch2-dir .arch2-icon-wrap {
  margin: 0 auto;
}

/* Core (Center) */
.arch2-core {
  left: 200px !important;
  top: 130px !important;
  width: 140px !important;
  padding: 16px 10px !important;
}

/* Storage (Right) */
.arch2-storage {
  left: 360px !important;
  top: 80px !important;
  width: 200px !important;
  padding: 16px 16px !important;
}

/* 4. Responsive adjustments for the compact version */
@media (max-width: 1150px) {

  /* Only stack when legitimately too narrow for 580px */
  .itsec-grid {
    grid-template-columns: 1fr !important;
  }

  .arch2 {
    margin: 0 auto !important;
    /* Center when stacked */
  }
}

@media (max-width: 650px) {
  .arch2 {
    transform: scale(0.65) !important;
    /* Mobile scale */
    margin-left: -60px !important;
  }
}

/* ============================================
   "Secure Pipeline" Redesign (CSS-Native)
   ============================================ */

/* Main Container - Responsive Flex Flow */
.itsec-diagram {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arch-pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 900px;
  padding: 20px;
  position: relative;
}

/* Connectors (The Arrows) */
.pipe-conn {
  flex: 1;
  min-width: 40px;
  max-width: 80px;
  height: 2px;
  background: rgba(8, 145, 178, 0.2);
  position: relative;
  display: flex;
  align-items: center;
}

.pipe-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
      rgba(8, 145, 178, 0) 0%,
      rgba(8, 145, 178, 0.8) 50%,
      rgba(8, 145, 178, 0) 100%);
}

.pipe-dot {
  width: 8px;
  height: 8px;
  background: #0891b2;
  border-radius: 50%;
  position: absolute;
  left: 0;
  box-shadow: 0 0 8px rgba(8, 145, 178, 0.6);
  animation: pipeFlow 2s infinite linear;
}

@keyframes pipeFlow {
  0% {
    left: 0;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

/* Glass Cards */
.pipe-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 1);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(10, 40, 60, 0.05);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 160px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pipe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(56, 204, 218, 0.4);
}

/* Icon Boxes */
.pipe-icon-box {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(8, 145, 178, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0891b2;
  margin-bottom: 12px;
}

.pipe-icon {
  width: 24px;
  height: 24px;
}

.pipe-icon-box.brand {
  background: white;
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.2);
}

.pipe-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pipe-icon-box.sm {
  width: 36px;
  height: 36px;
  margin-bottom: 0;
  margin-right: 12px;
}

/* Text Styles */
.pipe-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.pipe-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

/* Engine Glow */
.pipe-glow-bg {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(8, 145, 178, 0.1), transparent 70%);
  animation: pipePulse 4s infinite ease-in-out;
  pointer-events: none;
}

@keyframes pipePulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Storage Card Specifics */
.pipe-storage {
  min-width: 280px;
  /* Wider for tabs */
  align-items: stretch;
  /* Full width content */
}

.pipe-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* Tabs Inside Card */
.pipe-tabs {
  background: rgba(10, 40, 60, 0.04);
  border-radius: 8px;
  padding: 4px;
  display: flex;
  gap: 4px;
}

.pipe-tab {
  flex: 1;
  border: none;
  background: none;
  font-size: 0.85rem;
  padding: 6px 0;
  border-radius: 6px;
  color: var(--text-secondary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pipe-tab:hover {
  background: rgba(255, 255, 255, 0.5);
  color: var(--text-primary);
}

.pipe-tab.active {
  background: white;
  color: #0891b2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.pipe-desc {
  margin-top: 12px;
  min-height: 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.pipe-desc span {
  display: none;
}

.pipe-desc span.visible {
  display: inline-block;
  animation: fadeIn 0.3s ease;
}

/* Responsive Stack (< 900px) */
@media (max-width: 900px) {
  .arch-pipeline {
    flex-direction: column;
    gap: 0;
  }

  .pipe-conn {
    width: 2px;
    height: 40px;
    /* Vertical gap */
    min-width: auto;
  }

  .pipe-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(8, 145, 178, 0) 0%,
        rgba(8, 145, 178, 0.8) 50%,
        rgba(8, 145, 178, 0) 100%);
  }

  .pipe-dot {
    top: 0;
    left: -3px;
    animation: pipeFlowVert 2s infinite linear;
  }

  @keyframes pipeFlowVert {
    0% {
      top: 0;
      opacity: 0;
    }

    20% {
      opacity: 1;
    }

    80% {
      opacity: 1;
    }

    100% {
      top: 100%;
      opacity: 0;
    }
  }

  .pipe-card {
    width: 100%;
    max-width: 320px;
    /* Consistent card width on mobile */
  }
}

/* ============================================
   Pricing Section Polish
   ============================================ */
.pricing-card {
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
  /* Ensure base border exists */
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--brand-primary);
}

/* ============================================
   Final Polish: Layout & Visuals
   ============================================ */

/* 1. Uniform Heights */
.pipe-card {
  min-height: 240px;
  /* Force uniform height for all 3 cards */
  justify-content: center;
  /* Center content vertically */
}

/* Storage card needs specific alignment since it has more content */
.pipe-storage {
  justify-content: flex-start;
  /* Top align storage card */
  padding-top: 30px;
}

/* 2. Thicker Hover Border (Matching WhyVaultiqo) */
.pipe-card {
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pipe-card:hover {
  border: 2px solid var(--brand-primary) !important;
  /* Thick border */
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(56, 204, 218, 0.15);
}

/* 3. Trust Row (Horizontal Checklist) */
.itsec-trust-item {
  background: rgba(255, 255, 255, 0.6);
  padding: 8px 16px;
  border-radius: 99px;
  border: 1px solid rgba(10, 40, 60, 0.05);
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.itsec-trust-item:hover {
  background: white;
  border-color: var(--brand-primary);
  transform: translateY(-2px);
}

/* ============================================
   Visual Tweak: Hero Image
   ============================================ */
/* Apply transform to the correct container */
.hero-right {
  transform: scale(1) translateY(3rem);
  /* Restored size & moderate vertical offset */
  transform-origin: center center;
}

/* ============================================
   Refinement II: Compact & Frameless
   ============================================ */

/* 1. Compact Equal Heights */
.pipe-card {
  min-height: 200px !important;
  /* Reduced from 240px */
}

/* 2. Frameless Vaultiqo Icon */
.pipe-icon-box.frameless {
  background: none !important;
  box-shadow: none !important;
  width: auto !important;
  height: auto !important;
  margin-bottom: 20px;
  border-radius: 0;
}

.pipe-logo-lg {
  width: 72px;
  /* Large and prominent */
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(56, 204, 218, 0.5));
  /* Enhanced glow */
  animation: logoPulse 3s infinite ease-in-out;
}

@keyframes logoPulse {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 15px rgba(56, 204, 218, 0.5));
  }

  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(56, 204, 218, 0.7));
  }
}

/* Update text spacing for compact cards */
.pipe-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ============================================
   Visual Corrections (Post-Feedback)
   ============================================ */

/* 1. Widen Storage Card for Tabs */
.pipe-storage {
  min-width: 340px !important;
  /* Increased to fit "Firestore™" comfortably */
}

/* 2. Remove Glow Effect (Override) */
.pipe-glow-bg {
  display: none !important;
}

/* 3. Ensure Icon Box Consistency */
/* Force storage icon to match source icon dimensions if .sm was removed */
.pipe-storage .pipe-icon-box {
  width: 48px !important;
  height: 48px !important;
  margin-right: 0 !important;
  /* Reset specific spacing */
  margin-bottom: 12px !important;
  /* Match others */
}

/* Re-align header since icon moved */
.pipe-storage .pipe-header {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ============================================
   Final Visual Match: Icon Circles
   ============================================ */

/* Force Pipe Icon Boxes to match .icon-circle from 'Why Vaultiqo' */
.pipe-icon-box:not(.frameless) {
  width: 64px !important;
  height: 64px !important;
  background: #fff !important;
  border-radius: 50% !important;
  /* Circle */
  box-shadow: 0 4px 20px rgba(56, 204, 218, 0.15) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 16px !important;
  color: var(--brand-primary) !important;
  /* Ensure icon stroke is brand color */
}

/* Ensure SVG matches size inside circle */
.pipe-icon-box:not(.frameless) .pipe-icon {
  width: 32px !important;
  height: 32px !important;
  stroke: var(--brand-primary) !important;
}

/* Cleanup: Remove any old square backgrounds */
.pipe-icon-box {
  border: none !important;
}

/* ============================================
   Final Layout Utilities (Inline Style Refactor)
   ============================================ */

/* Generic Spacing */
.mb-3rem {
  margin-bottom: 3rem !important;
}

/* Flex Wrapping Utilities */
.wrap-center-gap24 {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Positioning */
.relative-container {
  position: relative !important;
}

/* Pricing Grid Alignment */
.pricing-grid {
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

/* Enterprise Box Styling */
.enterprise-box {
  display: none;
  /* Hidden by JS toggler default */
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.enterprise-title {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.enterprise-text {
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* ============================================
   Icon Style Update: Colored Background, No Glow
   ============================================ */

/* Reverting to colored background style as requested */
.pipe-icon-box:not(.frameless) {
  background: rgba(56, 204, 218, 0.1) !important;
  /* Light teal tint */
  box-shadow: none !important;
  /* Remove glow */
  border-radius: 50% !important;
  /* Keep circle */
  width: 64px !important;
  height: 64px !important;
  color: var(--brand-primary) !important;
}

/* Ensure icon size matches */
.pipe-icon-box:not(.frameless) .pipe-icon {
  width: 32px !important;
  height: 32px !important;
  stroke: var(--brand-primary) !important;
}

/* ============================================
   Section Reordering Background Adjustments
   ============================================ */

/* Force Storage Section to be White (since it now follows a Grey section) */
.section-storage-bg {
  background: white !important;
  /* Override gradient */
  border-top: none !important;
  /* Remove separator if present */
}

/* Ensure no pseudo-element borders mess up the clean transition */
.section-storage-bg::before {
  display: none !important;
}

/* ============================================
   Consolidated Storage Fixes
   ============================================ */

.pipe-desc div {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pipe-desc div.visible {
  display: block;
  opacity: 1;
}

.mini-check-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.mini-check-list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  text-align: left;
}

.check-icon-sm {
  width: 14px;
  height: 14px;
  color: var(--brand-primary);
  flex-shrink: 0;
}

/* Remove old pseudo-element checks */
.mini-check-list li::before {
  content: none !important;
}

.pipe-storage {
  min-height: 260px !important;
  /* Ensure enough room for bullets without jumping */
  justify-content: flex-start !important;
  padding-top: 24px !important;
}

.itsec-trust-row {
  margin-top: 5rem;
}