/* BackupSec - Main Stylesheet */
/* Non-critical CSS - loaded asynchronously */

/* Section titles */
section {
  padding: 40px 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.section-kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  font-size: 22px;
  margin: 0;
}

.section-subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  max-width: 520px;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), #020617);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.product-pill {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.product-name {
  margin: 0 0 6px;
  font-size: 18px;
}

.product-name span {
  color: var(--accent);
}

.product-tagline {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.product-meta {
  font-size: 11px;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.product-meta strong {
  color: var(--accent);
  font-weight: 600;
}

.product-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.product-list li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 6px;
}

.product-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 9px;
  width: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

.product-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.product-bg-accent {
  position: absolute;
  inset: auto -40px -80px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.22), transparent);
  opacity: 0.6;
  pointer-events: none;
}

/* Why BackupSec */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: start;
}

.list-checks {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.list-checks li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.check-icon {
  margin-top: 3px;
  font-size: 14px;
}

.mini-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-main);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.pill-small {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.85);
  color: var(--text-muted);
}

.stat-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 14px;
  font-size: 13px;
  box-shadow: var(--shadow-soft);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 12px;
}

.stat-value {
  font-weight: 600;
}

.stat-tagline {
  font-size: 11px;
  color: var(--text-muted);
}

/* Architecture strip */
.strip {
  background: radial-gradient(circle at top, rgba(0, 229, 255, 0.06), transparent),
    var(--bg-section);
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  font-size: 13px;
}

.strip-item {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 41, 55, 0.9);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), #020617);
  padding: 12px;
}

.strip-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.strip-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.strip-text {
  font-size: 12px;
  color: var(--text-muted);
}

/* CTA */
.cta {
  padding: 40px 0 48px;
}

.cta-inner {
  border-radius: 26px;
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, rgba(0, 229, 255, 0.13), transparent),
    radial-gradient(circle at bottom right, rgba(248, 113, 113, 0.14), transparent),
    var(--bg-section);
  padding: 26px 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 26px;
  align-items: center;
  box-shadow: var(--shadow-soft);
}

.cta-title {
  margin: 0 0 10px;
  font-size: 22px;
}

.cta-text {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  max-width: 440px;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
  font-size: 13px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

input,
select,
textarea {
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.85);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-main);
  padding: 8px 11px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
}

textarea {
  border-radius: 14px;
  min-height: 70px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.6);
}

.field-full {
  grid-column: 1 / -1;
}

.field-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
}

.field-error {
  font-size: 11px;
  color: #f87171;
  margin-top: 4px;
}

/* Footer */
footer {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  padding: 18px 0 22px;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg-darker);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge-veeam {
  font-size: 11px;
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px dashed rgba(34, 197, 94, 0.7);
  background: rgba(22, 163, 74, 0.1);
  color: #bbf7d0;
}

/* Hero visual panel */
.hero-visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 14px;
  color: var(--text-muted);
}

.hero-dots {
  display: flex;
  gap: 6px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #f97373, #4b5563);
}

.hero-dot:nth-child(2) {
  background: radial-gradient(circle at 30% 20%, #facc15, #4b5563);
}

.hero-dot:nth-child(3) {
  background: radial-gradient(circle at 30% 20%, #22c55e, #4b5563);
}

.hero-visual-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: stretch;
}

.hero-panel {
  border-radius: 16px;
  padding: 12px;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.8), #020617);
  border: 1px solid rgba(55, 65, 81, 0.8);
  font-size: 11px;
}

.hero-panel h3 {
  margin: 0 0 8px;
  font-size: 13px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.8);
  font-size: 10px;
  margin-bottom: 8px;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.8);
}

.metric-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 10px;
}

.metric-label {
  color: var(--text-muted);
}

.metric-value {
  font-weight: 600;
}

.hero-panel-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
}

.hero-panel-list li {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(30, 64, 175, 0.7);
}

.hero-panel-list li:last-child {
  border-bottom: none;
}

.trend {
  font-size: 10px;
  color: #4ade80;
}

/* Responsive */
@media (max-width: 880px) {
  .nav-links {
    display: none;
  }
  .hero-grid,
  .two-col,
  .cta-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero {
    padding-top: 40px;
  }
}

@media (max-width: 720px) {
  .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cta-form {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 520px) {
  .strip-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Form message styles */
.form-message {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  animation: slideDown 0.3s ease-out;
}

.form-message-success {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, rgba(0, 229, 255, 0.05) 100%);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: #00e5ff;
}

.form-message-error {
  background: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, rgba(255, 68, 68, 0.05) 100%);
  border: 1px solid rgba(255, 68, 68, 0.3);
  color: #ff6b6b;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Button loading state */
.cta-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
