/* ===================================
   TECHNISCH.CSS - FAUTE BENDT REVISED V2
   Technische pagina styling - Jubilee Edition
   Versie: 2025.1 - Revised v2 per feedback
   =================================== */

/* ===================================
   TECH HERO SECTIE - SPLIT SCREEN
   =================================== */

.tech-hero-fullwidth {
  min-height: 100vh;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.tech-hero-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

/* TECH HERO LEFT - CONTENT */
.tech-hero-left {
  z-index: 3;
}

.tech-hero-content h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 1.5rem;
  background: var(--bordeaux-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-weight: 500;
  line-height: 1.6;
}

/* TECH BADGE - BORDEAUX/GOUD FOCUS */
.tech-badge {
  background: var(--bordeaux-gradient);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--bordeaux-shadow);
  animation: techGlow 3s ease-in-out infinite;
}

@keyframes techGlow {
  0%, 100% { box-shadow: var(--bordeaux-shadow); }
  50% { box-shadow: 0 6px 30px rgba(125, 44, 64, 0.5); }
}

.tech-badge .badge-icon {
  font-size: 1.1rem;
  animation: techRotate 4s linear infinite;
}

@keyframes techRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* TECH HERO BUTTONS */
.tech-hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.tech-download-all {
  background: var(--gold-gradient);
  color: var(--white);
  box-shadow: var(--gold-shadow);
  position: relative;
  overflow: hidden;
}

.tech-download-all::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.8s ease;
}

.tech-download-all:hover::before {
  left: 100%;
}

.tech-scroll-btn {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--bordeaux-warm);
}

.tech-scroll-btn:hover {
  background: var(--bordeaux-warm);
  color: var(--white);
  border-color: var(--bordeaux-warm);
}

/* TECH HERO RIGHT - DOWNLOADS PREVIEW */
.tech-hero-right {
  position: relative;
  z-index: 2;
}

.tech-downloads-preview {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border: 2px solid var(--gold-warm);
  position: relative;
  overflow: hidden;
}

.tech-downloads-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(218, 165, 32, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(125, 44, 64, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.tech-preview-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.tech-preview-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.tech-preview-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

/* TECH PREVIEW ITEMS - BORDEAUX/GOUD FOCUS */
.tech-preview-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-primary);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.tech-preview-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-gradient);
  opacity: 0.1;
  transition: left 0.5s ease;
  z-index: 1;
}

.tech-preview-item:hover::before {
  left: 100%;
}

.tech-preview-item:hover {
  transform: translateY(-3px) translateX(5px);
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
  border-color: var(--gold-warm);
}

.tech-preview-icon {
  font-size: 1.8rem;
  width: 50px;
  height: 50px;
  background: var(--bordeaux-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  color: var(--white);
  box-shadow: var(--bordeaux-shadow);
}

.tech-fiche .tech-preview-icon {
  background: var(--gold-gradient);
  box-shadow: var(--gold-shadow);
}

.tech-preview-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.tech-preview-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.tech-preview-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.tech-file-type {
  font-size: 0.8rem;
  color: var(--bordeaux-warm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tech-download-action {
  width: 40px;
  height: 40px;
  background: var(--gold-gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: var(--gold-shadow);
}

.tech-preview-item:hover .tech-download-action {
  transform: scale(1.1) rotate(5deg);
}

.download-icon {
  font-size: 1.2rem;
  color: var(--white);
}

/* ===================================
   TECH INTRO SECTIE - BORDEAUX FOCUS
   =================================== */

.tech-intro-section {
  background: var(--bordeaux-party-gradient) !important;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.tech-intro-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(125, 44, 64, 0.15) 0%, transparent 50%);
  animation: introSparkleMove 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes introSparkleMove {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

.tech-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.tech-intro-badge {
  background: var(--white);
  color: var(--bordeaux-warm);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.tech-intro-section .section-title {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
}

.tech-intro-subtitle p {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* TECH STORY CONTENT - SINGLE COLUMN */
.tech-story-content {
  margin-top: 3rem;
}

.tech-story-single {
  max-width: 900px;
  margin: 0 auto;
}

.tech-story-highlight {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.tech-story-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 10%, rgba(218, 165, 32, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 90%, rgba(125, 44, 64, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.tech-story-highlight h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.tech-story-highlight p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.tech-story-points {
  position: relative;
  z-index: 2;
}

.tech-story-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  border-left: 4px solid var(--gold-warm);
  transition: all 0.3s ease;
}

.tech-story-item:hover {
  background: rgba(218, 165, 32, 0.1);
  transform: translateX(8px);
  border-left-color: var(--bordeaux-warm);
  box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2);
}

.tech-story-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: var(--gold-warm);
}

.tech-story-item:hover .tech-story-icon {
  color: var(--bordeaux-warm);
  animation: bounce 0.6s ease;
}

.story-text {
  flex: 1;
}

.story-text strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.25rem;
}

/* ===================================
   TECH REQUIREMENTS SECTIE - STACKED
   =================================== */

.tech-requirements-section {
  background: var(--white);
  padding: 5rem 0;
  position: relative;
}

.tech-requirements-header {
  text-align: center;
  margin-bottom: 4rem;
}

.tech-requirements-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-primary);
}

.tech-requirements-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

/* STACKED LAYOUT - BOVEN ELKAAR */
.tech-requirements-stack {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: 3rem 0;
}

/* TECH CARDS - BASIS STYLING */
.tech-card {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(218, 165, 32, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(125, 44, 64, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* TECH BRING CARD - GOUD FOCUS */
.tech-bring-card {
  background: var(--gold-gradient);
  color: var(--white);
  border: none;
}

.tech-bring-card::before {
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.tech-bring-card:hover {
  box-shadow: 0 20px 40px rgba(218, 165, 32, 0.3);
}

.tech-bring-card h3,
.tech-bring-card .tech-card-subtitle {
  color: var(--white);
}

/* TECH NEED CARD - BORDEAUX FOCUS */
.tech-need-card {
  background: var(--white);
  border: 2px solid var(--bordeaux-warm);
}

.tech-need-card:hover {
  border-color: var(--gold-warm);
  box-shadow: 0 20px 40px rgba(125, 44, 64, 0.2);
}

/* TECH CARD HEADERS */
.tech-card-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.tech-card-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.bring-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.need-icon {
  background: var(--bordeaux-gradient);
  color: var(--white);
  box-shadow: var(--bordeaux-shadow);
}

.tech-card:hover .tech-card-icon {
  transform: scale(1.1) rotate(5deg);
  animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
  0%, 100% { transform: scale(1.1) rotate(5deg); }
  50% { transform: scale(1.2) rotate(-5deg); }
}

.tech-card h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.tech-card-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  font-style: italic;
  opacity: 0.9;
}

/* TECH ITEMS LIST */
.tech-items-list {
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

.tech-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tech-bring-card .tech-item {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.tech-need-card .tech-item {
  background: var(--white);
  border-color: rgba(125, 44, 64, 0.2);
  border-left: 4px solid var(--bordeaux-warm);
}

.tech-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.tech-item:hover::before {
  left: 100%;
}

.tech-item:hover {
  transform: translateX(10px);
}

.tech-bring-card .tech-item:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.tech-need-card .tech-item:hover {
  background: rgba(125, 44, 64, 0.05);
  border-left-color: var(--gold-warm);
  box-shadow: 0 4px 15px rgba(125, 44, 64, 0.1);
}

.tech-item-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
  position: relative;
  z-index: 2;
}

.tech-bring-card .tech-item-icon {
  color: var(--white);
}

.tech-need-card .tech-item-icon {
  color: var(--bordeaux-warm);
}

.tech-item:hover .tech-item-icon {
  animation: checkBounce 0.5s ease;
}

@keyframes checkBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.tech-item-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.tech-item-content strong {
  font-size: 1.3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.tech-bring-card .tech-item-content strong {
  color: var(--white);
}

.tech-need-card .tech-item-content strong {
  color: var(--text-primary);
}

.tech-item-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.tech-bring-card .tech-item-content p {
  color: rgba(255, 255, 255, 0.9);
}

.tech-need-card .tech-item-content p {
  color: var(--text-secondary);
}

.tech-item-content a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
}

.tech-need-card .tech-item-content a {
  color: var(--bordeaux-warm);
}

.tech-item-content a:hover {
  opacity: 0.8;
}

/* TECH REQUIREMENTS SECTIONS */
.tech-requirements-sections {
  position: relative;
  z-index: 2;
}

.tech-requirement-group {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  border: 2px solid var(--bordeaux-warm);
  transition: all 0.3s ease;
}

.tech-requirement-group:hover {
  border-color: var(--gold-warm);
  box-shadow: 0 8px 25px rgba(125, 44, 64, 0.15);
}

.tech-group-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.tech-group-icon {
  font-size: 1.8rem;
  color: var(--bordeaux-warm);
}

.tech-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.tech-list-item:hover {
  background: rgba(218, 165, 32, 0.1);
  transform: translateX(5px);
  border-color: var(--gold-warm);
}

.tech-list-icon {
  font-size: 1.2rem;
  color: var(--bordeaux-warm);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.tech-list-item:hover .tech-list-icon {
  color: var(--gold-warm);
}

/* TECH CARD FOOTERS */
.tech-card-footer {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-need-card .tech-card-footer {
  border-top-color: rgba(125, 44, 64, 0.2);
}

.tech-guarantee-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 1.25rem 2rem;
  border-radius: 15px;
  font-size: 1rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.tech-timing-info {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid var(--gold-warm);
}

.tech-timing-info h5 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.timing-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timing-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.75rem;
  background: rgba(218, 165, 32, 0.1);
  border-radius: 8px;
  border-left: 3px solid var(--gold-warm);
}

.timing-icon {
  font-size: 1.4rem;
  color: var(--gold-warm);
}

/* TECH HIGHLIGHT BOX */
.tech-highlight-box {
  margin-top: 4rem;
  background: var(--bordeaux-gradient);
  border-radius: 20px;
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.tech-highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.tech-highlight-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.tech-highlight-icon {
  font-size: 3.5rem;
  animation: pulse 2s infinite;
}

.tech-highlight-text h4 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.tech-highlight-text p {
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.6;
}

.tech-highlight-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tech-contact-btn {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  font-size: 1rem;
  padding: 1rem 1.5rem;
  white-space: nowrap;
}

.tech-contact-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* ===================================
   TECH DOWNLOADS SECTIE - GOUD FOCUS
   =================================== */

.tech-downloads-section {
  background: var(--gold-gradient);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.tech-downloads-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(125, 44, 64, 0.15) 0%, transparent 50%);
  animation: downloadsSparkleMove 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes downloadsSparkleMove {
  0%, 100% { opacity: 1; transform: scale(1.03); }
}

.tech-downloads-header {
  text-align: center;
  margin-bottom: 4rem;
}

.downloads-badge {
  background: var(--white);
  color: var(--gold-warm);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.tech-downloads-section .section-title {
  color: var(--text-primary);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
}

.tech-downloads-section .section-subtitle {
  color: var(--text-primary);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.tech-downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

/* TECH DOWNLOAD CARDS - WIT OP GOUD */
.tech-download-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tech-download-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(218, 165, 32, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(125, 44, 64, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.tech-download-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* DOWNLOAD CARD SPECIFIEKE KLEUREN */
.tech-fiche-card {
  border-top: 4px solid var(--gold-warm);
}

.tech-fiche-card:hover {
  border-top-color: var(--bordeaux-warm);
  box-shadow: 0 25px 50px rgba(218, 165, 32, 0.3);
}

.tech-hospitality-card {
  border-top: 4px solid var(--bordeaux-warm);
}

.tech-hospitality-card:hover {
  border-top-color: var(--gold-warm);
  box-shadow: 0 25px 50px rgba(125, 44, 64, 0.3);
}

.tech-checklist-card {
  border-top: 4px solid var(--bordeaux-warm);
}

.tech-checklist-card:hover {
  border-top-color: var(--gold-warm);
  box-shadow: 0 25px 50px rgba(125, 44, 64, 0.3);
}

/* DOWNLOAD CARD HEADERS */
.tech-download-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.tech-download-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--white);
  transition: all 0.3s ease;
}

.tech-fiche-card .tech-download-icon {
  background: var(--gold-gradient);
  box-shadow: var(--gold-shadow);
}

.tech-hospitality-card .tech-download-icon,
.tech-checklist-card .tech-download-icon {
  background: var(--bordeaux-gradient);
  box-shadow: var(--bordeaux-shadow);
}

.tech-download-card:hover .tech-download-icon {
  transform: scale(1.1) rotate(10deg);
  animation: downloadIconBounce 0.6s ease;
}

@keyframes downloadIconBounce {
  0%, 100% { transform: scale(1.1) rotate(10deg); }
  50% { transform: scale(1.2) rotate(-10deg); }
}

.tech-download-badge {
  background: var(--gold-warm);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: absolute;
  top: -10px;
  right: -10px;
  box-shadow: 0 2px 10px rgba(218, 165, 32, 0.3);
}

.tech-hospitality-card .tech-download-badge,
.tech-checklist-card .tech-download-badge {
  background: var(--bordeaux-warm);
  box-shadow: 0 2px 10px rgba(125, 44, 64, 0.3);
}

/* DOWNLOAD CARD CONTENT */
.tech-download-content {
  flex: 1;
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

.tech-download-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.tech-download-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* DOWNLOAD DETAILS */
.tech-download-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.tech-detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.5rem;
  background: rgba(218, 165, 32, 0.1);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.tech-detail-item:hover {
  background: rgba(218, 165, 32, 0.2);
  transform: translateX(3px);
}

.tech-detail-icon {
  font-size: 1rem;
  color: var(--gold-warm);
  flex-shrink: 0;
}

/* DOWNLOAD CARD FOOTERS */
.tech-download-footer {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.tech-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.tech-download-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.tech-download-btn:hover::before {
  left: 100%;
}

.tech-download-btn.primary {
  background: var(--gold-gradient);
  color: var(--white);
  box-shadow: var(--gold-shadow);
}

.tech-download-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}

.tech-download-btn.secondary,
.tech-download-btn.tertiary {
  background: var(--bordeaux-gradient);
  color: var(--white);
  box-shadow: var(--bordeaux-shadow);
}

.tech-download-btn.secondary:hover,
.tech-download-btn.tertiary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(125, 44, 64, 0.4);
}

/* DOWNLOAD NOTES */
.tech-download-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  font-style: italic;
}

.note-icon {
  font-size: 0.9rem;
  color: var(--gold-warm);
}

/* DOWNLOADS CTA */
.tech-downloads-cta {
  margin-top: 3rem;
  text-align: center;
}

.tech-cta-content {
  background: var(--white);
  color: var(--text-primary);
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tech-cta-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(218, 165, 32, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(125, 44, 64, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.tech-cta-content h4 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}

.tech-cta-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.tech-download-all-btn {
  background: var(--bordeaux-gradient);
  color: var(--white);
  border: 2px solid var(--bordeaux-warm);
  position: relative;
  z-index: 2;
  box-shadow: var(--bordeaux-shadow);
}

.tech-download-all-btn:hover {
  background: var(--gold-gradient);
  border-color: var(--gold-warm);
  transform: translateY(-3px);
  box-shadow: var(--gold-shadow);
}

/* ===================================
   TECH MINI FAQ SECTIE - TUSSEN DOWNLOADS EN CONTACT
   =================================== */

.tech-mini-faq-section {
  background: var(--white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.tech-mini-faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(218, 165, 32, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(125, 44, 64, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.tech-mini-faq-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.mini-faq-badge {
  background: var(--gold-gradient);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--gold-shadow);
  transition: all 0.3s ease;
}

.mini-faq-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}

.tech-mini-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  position: relative;
  z-index: 2;
}

.tech-mini-faq-card {
  background: var(--white);
  border-radius: 15px;
  padding: 1.5rem;
  border: 2px solid var(--border-color);
  transition: all 0.4s ease;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.tech-mini-faq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.5) 100%);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.tech-mini-faq-card:hover::before {
  opacity: 1;
}

.tech-mini-faq-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(125, 44, 64, 0.15);
}

.mini-faq-bordeaux {
  border-color: var(--bordeaux-warm);
}

.mini-faq-gold {
  border-color: var(--gold-warm);
}

.mini-faq-bordeaux:hover {
  border-color: var(--gold-warm);
  box-shadow: 0 15px 35px rgba(125, 44, 64, 0.2);
}

.mini-faq-gold:hover {
  border-color: var(--bordeaux-warm);
  box-shadow: 0 15px 35px rgba(218, 165, 32, 0.2);
}

.mini-faq-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mini-faq-bordeaux .mini-faq-number {
  background: var(--bordeaux-gradient);
}

.mini-faq-gold .mini-faq-number {
  background: var(--gold-gradient);
}

.tech-mini-faq-card:hover .mini-faq-number {
  transform: scale(1.1) rotate(10deg);
}

.mini-faq-content {
  flex: 1;
}

.mini-faq-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.mini-faq-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ===================================
   TECH CONTACT SECTIE - GELIJKE KOLOMMEN
   =================================== */

.tech-contact-section {
  background: var(--white);
  padding: 5rem 0;
  position: relative;
}

.tech-contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-badge {
  background: var(--bordeaux-gradient);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--bordeaux-shadow);
}

.tech-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
  align-items: stretch;
}

/* TECH PERSON CARD - UITGEBREID VOOR GELIJKE HOOGTE */
.tech-person-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  border: 2px solid var(--bordeaux-warm);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tech-person-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(125, 44, 64, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(218, 165, 32, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.tech-person-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(125, 44, 64, 0.2);
  border-color: var(--gold-warm);
}

/* PERSON HEADER */
.tech-person-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.tech-person-avatar {
  width: 80px;
  height: 80px;
  background: var(--bordeaux-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: var(--bordeaux-shadow);
  transition: all 0.3s ease;
}

.tech-person-card:hover .tech-person-avatar {
  transform: scale(1.1) rotate(5deg);
  background: var(--gold-gradient);
  box-shadow: var(--gold-shadow);
  animation: avatarBounce 0.6s ease;
}

@keyframes avatarBounce {
  0%, 100% { transform: scale(1.1) rotate(5deg); }
  50% { transform: scale(1.2) rotate(-5deg); }
}

.tech-person-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.tech-person-title {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* PERSON CONTENT - UITGEBREID */
.tech-person-content {
  position: relative;
  z-index: 2;
  flex: 1;
  margin-bottom: 2rem;
}

.tech-person-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* EXPERTISE SECTIE - NIEUW */
.tech-person-expertise {
  background: rgba(218, 165, 32, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--gold-warm);
  margin-bottom: 1.5rem;
}

.tech-person-expertise h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.expertise-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.expertise-list li:last-child {
  margin-bottom: 0;
}

/* APPROACH SECTIE - NIEUW */
.tech-person-approach {
  background: rgba(125, 44, 64, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--bordeaux-warm);
}

.tech-person-approach h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.tech-person-approach p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* PERSON CONTACT */
.tech-person-contact {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.tech-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tech-contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tech-contact-method::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--bordeaux-gradient);
  opacity: 0.1;
  transition: left 0.5s ease;
  z-index: 1;
}

.tech-contact-method:hover::before {
  left: 100%;
}

.tech-contact-method:hover {
  transform: translateY(-3px) translateX(5px);
  border-color: var(--bordeaux-warm);
  box-shadow: 0 8px 25px rgba(125, 44, 64, 0.2);
}

.tech-contact-method.primary:hover {
  background: var(--bordeaux-warm);
  color: var(--white);
}

.tech-contact-method.secondary:hover {
  background: var(--gold-warm);
  color: var(--white);
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.tech-contact-method.primary .contact-icon {
  color: var(--bordeaux-warm);
}

.tech-contact-method.secondary .contact-icon {
  color: var(--gold-warm);
}

.tech-contact-method:hover .contact-icon {
  color: var(--white);
}

.contact-details {
  flex: 1;
  position: relative;
  z-index: 2;
}

.contact-details strong {
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

.contact-details span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.tech-contact-method:hover .contact-details span {
  opacity: 1;
}

/* TECH CONTACT FORM WRAPPER */
.tech-contact-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* CONTACT ALTERNATIEVEN */
.tech-contact-alternatives {
  margin-top: 4rem;
  background: rgba(218, 165, 32, 0.1);
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid var(--gold-warm);
}

.tech-alt-header {
  text-align: center;
  margin-bottom: 2rem;
}

.tech-alt-header h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.tech-alt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.tech-alt-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.tech-alt-item:hover {
  transform: translateY(-5px);
  border-color: var(--bordeaux-warm);
  box-shadow: 0 8px 25px rgba(125, 44, 64, 0.2);
}

.tech-alt-icon {
  width: 60px;
  height: 60px;
  background: var(--bordeaux-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 1rem;
  box-shadow: var(--bordeaux-shadow);
  transition: all 0.3s ease;
}

.tech-alt-item:hover .tech-alt-icon {
  transform: scale(1.1) rotate(10deg);
  background: var(--gold-gradient);
  box-shadow: var(--gold-shadow);
}

.tech-alt-content strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.tech-alt-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.tech-alt-link {
  color: var(--bordeaux-warm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.tech-alt-link:hover {
  color: var(--gold-warm);
  text-decoration: underline;
}

/* ===================================
   RESPONSIVE DESIGN - TECHNISCHE PAGINA
   =================================== */

/* LARGE DESKTOP: 1400px en groter */
@media (min-width: 1400px) {
  .tech-hero-container {
    max-width: 1600px;
    gap: 5rem;
  }
  
  .tech-downloads-preview {
    padding: 2.5rem;
  }
}

/* DESKTOP & LARGE TABLET: 1024px tot 1399px */
@media (max-width: 1399px) and (min-width: 1024px) {
  .tech-hero-container {
    gap: 3rem;
  }
  
  .tech-requirements-stack {
    gap: 2rem;
  }
  
  .tech-downloads-grid {
    gap: 1.5rem;
  }
}

/* TABLET: 768px tot 1023px */
@media (max-width: 1023px) {
  .tech-hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
    padding: 3rem 2rem;
  }
  
  .tech-hero-right {
    order: -1;
  }
  
  .tech-downloads-preview {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .tech-story-single {
    max-width: 100%;
  }
  
  .tech-story-highlight {
    padding: 2rem;
  }
  
  .tech-downloads-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tech-contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tech-alt-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .tech-mini-faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* MOBIEL: 768px en kleiner */
@media (max-width: 768px) {
  .tech-hero-fullwidth {
    min-height: auto;
  }
  
  .tech-hero-container {
    padding: 2rem 1rem;
    gap: 2rem;
  }
  
  .tech-hero-content h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }
  
  .tech-hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .tech-hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .tech-downloads-preview {
    padding: 1.5rem;
  }
  
  .tech-preview-item {
    padding: 1rem;
  }
  
  .tech-preview-icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .tech-preview-content h4 {
    font-size: 1rem;
  }
  
  .tech-preview-content p {
    font-size: 0.85rem;
  }
  
  .tech-download-action {
    width: 35px;
    height: 35px;
  }
  
  .tech-story-highlight {
    padding: 1.5rem;
  }
  
  .tech-story-item {
    padding: 1rem;
  }
  
  .tech-card {
    padding: 2rem 1.5rem;
  }
  
  .tech-card-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }
  
  .tech-card h3 {
    font-size: 1.5rem;
  }
  
  .tech-item {
    padding: 1.5rem;
  }
  
  .tech-item-content strong {
    font-size: 1.1rem;
  }
  
  .tech-item-content p {
    font-size: 0.9rem;
  }
  
  .tech-requirement-group {
    padding: 1.5rem;
  }
  
  .tech-group-title {
    font-size: 1.2rem;
  }
  
  .tech-list-item {
    padding: 0.875rem;
  }
  
  .tech-highlight-box {
    padding: 2rem 1.5rem;
  }
  
  .tech-highlight-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .tech-highlight-actions {
    flex-direction: row;
    justify-content: center;
  }
  
  .tech-download-card {
    padding: 1.5rem;
  }
  
  .tech-download-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .tech-download-details {
    grid-template-columns: 1fr;
  }
  
  .tech-person-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .tech-person-avatar {
    width: 70px;
    height: 70px;
    font-size: 2.2rem;
    align-self: center;
  }
  
  .tech-person-expertise,
  .tech-person-approach {
    padding: 1.25rem;
  }
  
  .tech-contact-methods {
    gap: 0.75rem;
  }
  
  .tech-contact-method {
    padding: 1rem;
  }
  
  .tech-mini-faq-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .tech-mini-faq-card {
    padding: 1.25rem;
    gap: 0.875rem;
  }
  
  .mini-faq-number {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
  
  .mini-faq-content h4 {
    font-size: 1rem;
  }
  
  .mini-faq-content p {
    font-size: 0.9rem;
  }
}

/* KLEIN MOBIEL: 480px en kleiner */
@media (max-width: 480px) {
  .tech-hero-container {
    padding: 1.5rem 1rem;
  }
  
  .tech-badge,
  .tech-intro-badge,
  .downloads-badge,
  .mini-faq-badge,
  .contact-badge {
    font-size: 0.8rem;
    padding: 0.625rem 1.25rem;
  }
  
  .tech-downloads-preview {
    padding: 1.25rem;
  }
  
  .tech-preview-header h3 {
    font-size: 1.3rem;
  }
  
  .tech-preview-item {
    padding: 0.875rem;
    gap: 0.75rem;
  }
  
  .tech-story-highlight {
    padding: 1.25rem;
  }
  
  .tech-story-highlight h3 {
    font-size: 1.3rem;
  }
  
  .tech-story-highlight p {
    font-size: 1rem;
  }
  
  .tech-story-item {
    padding: 1rem;
  }
  
  .tech-card {
    padding: 1.5rem 1rem;
  }
  
  .tech-card h3 {
    font-size: 1.3rem;
  }
  
  .tech-card-subtitle {
    font-size: 1rem;
  }
  
  .tech-item-content strong {
    font-size: 1rem;
  }
  
  .tech-item-content p {
    font-size: 0.85rem;
  }
  
  .tech-requirement-group {
    padding: 1.25rem;
  }
  
  .tech-group-title {
    font-size: 1.1rem;
  }
  
  .tech-list-item {
    padding: 0.75rem;
  }
  
  .tech-highlight-box {
    padding: 1.5rem 1rem;
  }
  
  .tech-highlight-content {
    gap: 1rem;
  }
  
  .tech-highlight-icon {
    font-size: 3rem;
  }
  
  .tech-highlight-text h4 {
    font-size: 1.3rem;
  }
  
  .tech-highlight-text p {
    font-size: 1rem;
  }
  
  .tech-highlight-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .tech-contact-btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .tech-download-card {
    padding: 1.25rem;
  }
  
  .tech-download-content h3 {
    font-size: 1.3rem;
  }
  
  .tech-download-content p {
    font-size: 0.9rem;
  }
  
  .tech-download-btn {
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
  }
  
  .tech-person-avatar {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .tech-person-info h3 {
    font-size: 1.3rem;
  }
  
  .tech-person-title {
    font-size: 0.9rem;
  }
  
  .tech-person-content p {
    font-size: 0.9rem;
  }
  
  .tech-person-expertise,
  .tech-person-approach {
    padding: 1rem;
  }
  
  .tech-person-expertise h4,
  .tech-person-approach h4 {
    font-size: 1rem;
  }
  
  .expertise-list li {
    font-size: 0.85rem;
  }
  
  .tech-person-approach p {
    font-size: 0.85rem;
  }
  
  .tech-contact-method {
    padding: 0.875rem;
  }
  
  .contact-details strong {
    font-size: 1rem;
  }
  
  .contact-details span {
    font-size: 0.85rem;
  }
  
  .tech-alt-item {
    padding: 1.25rem;
  }
  
  .tech-alt-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .tech-alt-content strong {
    font-size: 1rem;
  }
  
  .tech-alt-content p {
    font-size: 0.85rem;
  }
  
  .tech-mini-faq-section {
    padding: 2.5rem 0;
  }
  
  .tech-mini-faq-header {
    margin-bottom: 2rem;
  }
  
  .tech-mini-faq-card {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .mini-faq-number {
    align-self: center;
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
  
  .mini-faq-content h4 {
    font-size: 0.95rem;
  }
  
  .mini-faq-content p {
    font-size: 0.85rem;
  }
}

/* EXTRA KLEIN MOBIEL: 360px en kleiner */
@media (max-width: 360px) {
  .tech-hero-container {
    padding: 1rem 0.75rem;
  }
  
  .tech-downloads-preview {
    padding: 1rem;
  }
  
  .tech-preview-item {
    padding: 0.75rem;
  }
  
  .tech-story-highlight {
    padding: 1rem;
  }
  
  .tech-card {
    padding: 1.25rem 0.75rem;
  }
  
  .tech-download-card {
    padding: 1rem;
  }
  
  .tech-highlight-box {
    padding: 1.25rem 0.75rem;
  }
  
  .tech-alt-item {
    padding: 1rem;
  }
}

/* ===================================
   ACCESSIBILITY & PERFORMANCE
   =================================== */

/* FOCUS STATES - ACCESSIBILITY */
.tech-preview-item:focus,
.tech-download-btn:focus,
.tech-contact-method:focus,
.tech-alt-link:focus {
  outline: 3px solid var(--bordeaux-warm);
  outline-offset: 2px;
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  .tech-badge .badge-icon,
  .tech-card-icon,
  .tech-person-avatar,
  .tech-highlight-icon,
  .tech-download-icon,
  .mini-faq-number {
    animation: none !important;
  }
  
  .tech-preview-item::before,
  .tech-item::before,
  .tech-contact-method::before,
  .tech-download-btn::before {
    transition: none !important;
  }
  
  .tech-preview-item:hover,
  .tech-item:hover,
  .tech-contact-method:hover,
  .tech-card:hover,
  .tech-download-card:hover,
  .tech-person-card:hover {
    transform: none !important;
  }
  
  .tech-intro-section::before,
  .tech-downloads-section::before {
    animation: none !important;
  }
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
  .tech-download-btn.primary {
    background: var(--black) !important;
    color: var(--white) !important;
    border: 2px solid var(--white) !important;
  }
  
  .tech-download-btn.secondary,
  .tech-download-btn.tertiary {
    background: var(--white) !important;
    color: var(--black) !important;
    border: 2px solid var(--black) !important;
  }
  
  .tech-card,
  .tech-download-card,
  .tech-person-card {
    border: 2px solid var(--text-primary) !important;
  }
}

/* PRINT STYLES */
@media print {
  .tech-hero-fullwidth,
  .tech-intro-section,
  .tech-downloads-section,
  .tech-contact-section {
    background: var(--white) !important;
    color: var(--black) !important;
  }
  
  .tech-downloads-preview,
  .tech-card,
  .tech-download-card,
  .tech-person-card {
    background: var(--white) !important;
    color: var(--black) !important;
    border: 1px solid var(--black) !important;
    box-shadow: none !important;
  }
  
  .tech-download-btn,
  .tech-contact-btn {
    background: transparent !important;
    color: var(--black) !important;
    border: 1px solid var(--black) !important;
  }
}

/* PERFORMANCE OPTIMALISATIES */
.tech-hero-fullwidth,
.tech-intro-section,
.tech-downloads-section,
.tech-contact-section {
  will-change: transform;
}

.tech-preview-item,
.tech-card,
.tech-download-card,
.tech-person-card {
  will-change: transform, box-shadow;
}

.tech-download-btn,
.tech-contact-method {
  will-change: transform;
}

/* BROWSER COMPATIBILITY - GRID FALLBACKS */
@supports not (display: grid) {
  .tech-hero-container {
    display: flex;
    flex-direction: column;
  }
  
  .tech-downloads-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .tech-download-card {
    flex: 1 1 300px;
    margin: 1rem;
  }
  
  .tech-contact-grid {
    display: flex;
    flex-direction: column;
  }
  
  .tech-alt-grid {
    display: flex;
    flex-wrap: wrap;
  }
  
  .tech-alt-item {
    flex: 1 1 250px;
    margin: 0.5rem;
  }
  
  .tech-mini-faq-grid {
    display: flex;
    flex-wrap: wrap;
  }
  
  .tech-mini-faq-card {
    flex: 1 1 300px;
    margin: 0.5rem;
  }
}

/* FLEXBOX FALLBACKS */
@supports not (display: flex) {
  .tech-hero-container,
  .tech-contact-grid,
  .tech-alt-grid {
    display: block;
  }
  
  .tech-hero-left,
  .tech-hero-right,
  .tech-contact-person,
  .tech-contact-form,
  .tech-alt-item {
    display: block;
    margin-bottom: 2rem;
  }
}

/* CSS CUSTOM PROPERTIES FALLBACKS */
@supports not (color: var(--bordeaux-warm)) {
  .tech-badge {
    background: linear-gradient(135deg, #7D2C40, #5A1F2E);
  }
  
  .tech-download-all {
    background: linear-gradient(135deg, #DAA520, #B8860B);
  }
  
  .tech-intro-section {
    background: linear-gradient(135deg, #7D2C40 0%, #D4A5A5 100%);
  }
  
  .tech-downloads-section {
    background: linear-gradient(135deg, #DAA520, #B8860B);
  }
  
  .tech-bring-card {
    background: linear-gradient(135deg, #DAA520, #B8860B);
  }
  
  .tech-need-card {
    border-color: #7D2C40;
  }
  
  .tech-highlight-box {
    background: linear-gradient(135deg, #7D2C40, #5A1F2E);
  }
}

/* LEGACY BROWSER SUPPORT */
.tech-hero-container {
  display: -ms-grid;
  -ms-grid-columns: 1fr 4rem 1fr;
  -ms-grid-rows: 1fr;
}

.tech-hero-left {
  -ms-grid-column: 1;
  -ms-grid-row: 1;
}

.tech-hero-right {
  -ms-grid-column: 3;
  -ms-grid-row: 1;
}

.tech-downloads-grid {
  display: -ms-grid;
  -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
  -ms-grid-rows: 1fr;
}

.tech-download-card:nth-child(1) {
  -ms-grid-column: 1;
  -ms-grid-row: 1;
}

.tech-download-card:nth-child(2) {
  -ms-grid-column: 3;
  -ms-grid-row: 1;
}

.tech-download-card:nth-child(3) {
  -ms-grid-column: 5;
  -ms-grid-row: 1;
}

/* SAFARI SPECIFIC FIXES */
@supports (-webkit-appearance: none) {
  .tech-hero-content h1 {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .tech-downloads-preview,
  .tech-card,
  .tech-download-card {
    -webkit-transform: translateZ(0);
  }
}

/* FIREFOX SPECIFIC FIXES */
@-moz-document url-prefix() {
  .tech-preview-item,
  .tech-item,
  .tech-contact-method {
    background-clip: padding-box;
  }
}

/* END OF TECHNISCH.CSS */


