:root {
  /* Backgrounds */
  --bg-primary: #0a0a0f;
  --bg-secondary: #101016;
  --bg-card: #14141c;
  --bg-card-hover: #140c18;

  /* NST Accent - Purple */
  /* --accent: #a855f7;
  --accent-glow: rgba(168, 85, 247, 0.15);
  --accent-soft: rgba(168, 85, 247, 0.08);
  --accent-border: rgba(168, 85, 247, 0.25); */

  /* Problem colors */
  /* --problem-red: #c6c6c6;
  --problem-red-soft: rgba(157, 157, 157, 0.06);
  --problem-red-border: rgba(187, 187, 187, 0.2);
  --problem-bg: rgba(159, 159, 159, 0.02); */

  /* IDP Accent - Blue */
  --accent: #3b82f6;
  --accent-glow: rgba(59, 130, 246, 0.15);
  --accent-soft: rgba(59, 130, 246, 0.08);
  --accent-border: rgba(59, 130, 246, 0.25);

  /* Problem colors */
  --problem-red: #ff4d6a;
  --problem-red-soft: rgba(255, 77, 106, 0.1);
  --problem-red-border: rgba(255, 77, 106, 0.2);
  --problem-bg: #160f11;

  /* Text */
  --text-primary: #f0f0f5;
  --text-secondary: #8a8a9a;
  --text-muted: #5a5a6a;

  /* Border */
  --border: rgba(255, 255, 255, 0.06);

  /* Gradients */
  --gradient-cta: linear-gradient(135deg, #a855f7 0%, #6366f1 50%, #00a8ff 100%);
  --gradient-cta-hover: linear-gradient(135deg, #c084fc 0%, #818cf8 50%, #38bdf8 100%);
}


html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-family: 'proxima_novaregular', sans-serif;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'gotham_htfbold';
  font-weight: normal;
  line-height: 1.1;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
}

/* ========================================
       BUTTONS
    ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--gradient-cta);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--gradient-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

/* ========================================
       HERO SECTION
    ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to left, black 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(to left, black 0%, transparent 80%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(224, 82, 111, 0.06);
  border: 1px solid #E0526F;
  border-radius: 100px;
  font-size: 0.8125rem;
  color: #E0526F;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #E0526F;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.hero h1 {
  font-family: 'gotham_htfbold';
  font-weight: normal;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.1s forwards;
  opacity: 0;
  max-width: 800px;
  line-height: 1.05;
}

.hero h1 .gradient-text {
  background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-white {
  background: var(--gradient-cta);
  color: #ffffff;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 50px;
}

.btn-white:hover {
  background: var(--gradient-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  padding: 1rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.btn-ghost:hover {
  color: var(--accent);
}

.btn-ghost svg {
  transition: transform 0.3s ease;
}

.btn-ghost:hover svg {
  transform: translateX(4px);
}

/* ========================================
       SECTION COMMON STYLES
    ======================================== */
body .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #E0526F !important;
  margin-bottom: 1rem;
}

body .section-label::before,
body .section-label::after {
  content: '';
  width: 20px;
  height: 1px;
  background: #E0526F !important;
}

/* ========================================
       PROBLEM SECTION
    ======================================== */
.problem-section {
  padding: 6rem 0;
  background: var(--bg-primary);
  position: relative;
}

.problem-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.problem-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.problem-section .section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.problem-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.problem-tile {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  min-height: 220px;
}

.tile-problem {
  position: absolute;
  inset: 0;
  background: var(--problem-bg);
  border: 1px solid var(--problem-red-border);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 2;
}

.tile-problem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--problem-red);
  border-radius: 20px 0 0 20px;
}

.tile-solution {
  position: absolute;
  inset: 0;
  background: var(--bg-card-hover);
  border: 1px solid var(--accent-border);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 1;
}

.tile-solution::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  border-radius: 20px 0 0 20px;
}

.tile-solution::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.problem-tile:hover .tile-problem {
  opacity: 0;
  transform: scale(0.98);
}

.problem-tile:hover .tile-solution {
  opacity: 1;
  transform: scale(1);
  z-index: 3;
}

.tile-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  width: fit-content;
}

.tile-problem .tile-label {
  background: rgba(132, 132, 132, 0.15);
  color: var(--problem-red);
}

.tile-solution .tile-label {
  background: var(--accent-soft);
  color: var(--accent);
}

.tile-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.tile-description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========================================
       HOW IT WORKS SECTION
    ======================================== */
.how-section {
  padding: 6rem 0;
  background: var(--bg-primary);
  position: relative;
}

.how-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.how-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.how-section .section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.how-section .section-header p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Flow visualization */
.flow-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.flow-step {
  text-align: center;
}

.flow-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.flow-step:hover .flow-icon {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.flow-icon svg {
  width: 40px;
  height: 40px;
  color: var(--accent);
}

.flow-step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.flow-step p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.flow-arrow {
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.flow-arrow svg {
  width: 32px;
  height: 32px;
}

/* Tech specs below flow */
.tech-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.tech-spec {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.tech-spec:hover {
  border-color: var(--accent-border);
}

.tech-spec-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: 8px;
  color: var(--accent);
  flex-shrink: 0;
}

.tech-spec-icon svg {
  width: 18px;
  height: 18px;
}

.tech-spec span {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* ========================================
       FEATURES SECTION
    ======================================== */
.features-section {
  padding: 6rem 0;
  background: var(--bg-primary);
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.features-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-section .section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========================================
       DEMO VISUAL SECTION
    ======================================== */
.demo-section {
  padding: 6rem 0;
  background: var(--bg-primary);
  position: relative;
}

.demo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.demo-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.demo-section .section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.demo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.demo-card {
  padding: 2rem;
  border-radius: 20px;
}

.demo-before {
  background: var(--problem-bg);
  border: 1px dashed var(--problem-red-border);
}

.demo-after {
  background: var(--bg-card-hover);
  border: 1px solid var(--accent-border);
  box-shadow: 0 0 40px var(--accent-glow);
}

.demo-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.demo-before .demo-label {
  color: var(--problem-red);
}

.demo-after .demo-label {
  color: var(--accent);
}

.demo-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

/* Before: Subjective checklist */
.subjective-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.subjective-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.subjective-checkbox {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--text-muted);
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subjective-checkbox.checked {
  background: var(--text-muted);
  color: var(--bg-primary);
}

.subjective-checkbox svg {
  width: 10px;
  height: 10px;
}

.demo-note {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

/* After: Quantified metrics */
.metrics-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.metric-name {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.metric-score {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}

.metric-bar {
  flex: 1;
  height: 6px;
  background: rgba(168, 85, 247, 0.15);
  border-radius: 3px;
  margin: 0 1rem;
  overflow: hidden;
}

.metric-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
}

.demo-conclusion {
  margin-top: 1.25rem;
  padding: 1rem;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 10px;
  font-size: 0.8125rem;
  color: var(--text-primary);
  text-align: center;
}

.demo-conclusion strong {
  color: var(--accent);
}

/* ========================================
       METRICS SECTION
    ======================================== */
.metrics-section {
  padding: 6rem 0;
  background: var(--bg-primary);
  position: relative;
}

.metrics-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.metrics-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.metrics-section .section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ========================================
       USE CASES SECTION
    ======================================== */
.usecases-section {
  padding: 6rem 0;
  background: var(--bg-primary);
  position: relative;
}

.usecases-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.usecases-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.usecases-section .section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.usecases-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.usecase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.usecase-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.usecase-item svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.usecase-item h4 {
  font-size: 0.8125rem;
  font-weight: normal;
  color: var(--text-primary);
  font-family: 'proxima_novaregular';
}

/* ========================================
       PROVEN SOLUTION SECTION
    ======================================== */
.proven-section {
  padding: 6rem 0;
  background: var(--bg-primary);
  position: relative;
}

.proven-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.proven-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.proven-text h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.proven-text>p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.proven-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.proven-item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.proven-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.proven-item span {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.proven-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.proven-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.proven-badge:hover {
  border-color: var(--accent);
}

.proven-badge h4 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.proven-badge p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ========================================
       SECURITY SECTION
    ======================================== */
.security-section {
  padding: 6rem 0;
  background: var(--bg-primary);
  position: relative;
}

.security-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.security-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.security-text h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.security-text>p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.security-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.security-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.security-item svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.security-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.security-item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.security-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.security-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.security-badge:hover {
  border-color: var(--accent);
}

.security-badge h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.security-badge p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ========================================
       CTA SECTION
    ======================================== */
/* CTA Section */
.cta {
  padding: 4rem 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(0, 212, 170, 0.08) 0%, transparent 50%);
}

.cta .container {
  position: relative;
  text-align: center;
}

.cta h2 {
  font-family: 'gotham_htfbold' !important;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.cta p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.125rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* ========================================
       RESPONSIVE
    ======================================== */
@media (max-width: 968px) {
  .problem-tiles {
    grid-template-columns: 1fr;
  }

  .flow-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .flow-arrow {
    transform: rotate(90deg);
    justify-content: center;
  }

  .tech-specs {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .demo-content {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .usecases-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .proven-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .security-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 3rem 0 4rem;
  }

  .tech-specs {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .usecases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proven-badges {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .security-badges {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}


/* Extra Things */

body a.btn br,
body button.btn br,
span.tile-label br,
section br,
section p:empty {
  display: none !important;
}

.hero.tdLogo::before {
  content: '';
  position: absolute;
  top: 0;
  right: -2%;
  width: 250px;
  height: 520px;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  background-image: url('/wp-content/themes/hello-elementor-child/images/tdWebRightFloat.png');
  opacity: 0.2;
}

body .cta-banner {
  margin-bottom: 5rem;
}
