/* Inter - weights 300,400,500,600,700,800 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/inter-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/inter-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/inter-800.woff2') format('woff2');
}

/* Plus Jakarta Sans - weights 400,500,600,700,800 */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/jakarta-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/jakarta-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/jakarta-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/jakarta-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/jakarta-800.woff2') format('woff2');
}
/* ============================================
   Cloud.nl — Design 5: Modern Minimal
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green: #90C845;
  --teal: #43C2CD;
  --blue: #0A76A9;
  --dark: #304C56;
  --grey: #4A6168;
  --light-grey: #5f7279;
  --bg-alt: #f7fafb;
  --border: #eef2f3;
  --gradient: linear-gradient(135deg, #0A76A9, #43C2CD, #90C845);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: white;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Announcement Bar */
.announcement-bar {
  background: var(--gradient);
  color: white;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Navigation ---- */
.nav {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1400px; margin: 0 auto;
  padding: 20px 60px;
}
.nav-logo { height: 42px; width: auto; }
.nav-links { display: flex; gap: 32px; align-items: center; font-size: 15px; font-weight: 500; color: var(--grey); }
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--dark); }
.nav-links a.active { color: var(--dark); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-switch {
  font-size: 13px; font-weight: 400; color: var(--light-grey);
  transition: color 0.2s;
}
.lang-switch .lang-active { font-weight: 700; color: var(--dark); }
.lang-switch:hover { color: var(--blue); }
.nav-scan {
  font-size: 13px; font-weight: 600; padding: 8px 20px;
  background: linear-gradient(135deg, #00a8e8 0%, #0077b6 100%); color: white; border-radius: 100px; transition: all 0.2s;
}
.nav-scan:hover { background: linear-gradient(135deg, #00b4f0 0%, #0088cc 100%); transform: translateY(-1px); }
.nav-cta {
  font-size: 13px; font-weight: 600; padding: 8px 20px;
  background: var(--dark); color: white; border-radius: 100px; transition: background 0.2s;
}
.nav-cta:hover { background: var(--blue); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; }
.nav-mobile-phone { display: none; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: var(--green); padding: 12px 0; border-top: 1px solid var(--border); margin-top: 8px; }
.nav-mobile-phone svg { flex-shrink: 0; }
.nav-mobile-scan { display: none; padding: 8px 0 0; }
.nav-mobile-scan a { display: inline-block; font-size: 14px; font-weight: 600; padding: 10px 24px; background: linear-gradient(135deg, #43C2CD 0%, #0A76A9 100%); color: white; border-radius: 100px; text-decoration: none; }
.nav-mobile-scan a:hover { background: linear-gradient(135deg, #00b4f0 0%, #0088cc 100%); }

/* Dropdowns */
.nav-links li { position: relative; }
.nav-dropdown-trigger {
  background: none; border: none; cursor: pointer;
  font-size: 15px; font-weight: 500; color: var(--grey);
  display: flex; align-items: center; gap: 4px; padding: 0;
  font-family: inherit; transition: color 0.2s;
}
.nav-dropdown-trigger:hover { color: var(--dark); }
.nav-dropdown-trigger svg { transition: transform 0.2s; }
.has-dropdown.dropdown-open > .nav-dropdown-trigger {
  color: var(--dark);
}
.has-dropdown.dropdown-open > .nav-dropdown-trigger::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 2px; background: var(--dark);
}
.nav-dropdown-trigger { position: relative; }
.has-dropdown.dropdown-open .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 16px); left: 0;
  background: white; border-radius: 0; box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.06);
  padding: 12px 0; min-width: auto; z-index: 200;
  list-style: none; flex-direction: column;
}
/* Invisible bridge between trigger and dropdown */
.has-dropdown::after {
  content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 20px;
  pointer-events: auto;
}
.has-dropdown.dropdown-open .nav-dropdown { display: flex; }
.nav-dropdown li { margin: 0; }
.nav-dropdown a {
  display: block; padding: 10px 20px; font-size: 13px; font-weight: 400;
  color: var(--grey); white-space: nowrap; transition: all 0.15s;
}
.nav-dropdown a:hover { background: var(--bg); color: var(--dark); }

/* ---- Hero ---- */
.hero {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 100px 60px 80px; height: 60vh; min-height: 400px; max-height: 600px;
}
.hero-tag {
  font-size: 13px; font-weight: 600; color: var(--blue);
  background: rgba(10,118,169,0.08); padding: 6px 18px; border-radius: 100px;
  margin-bottom: 28px; letter-spacing: 0.5px;
}
.hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 76px; font-weight: 800; line-height: 1.04; letter-spacing: -3.5px;
  margin-bottom: 24px; max-width: 800px;
}
.hero p { font-size: 19px; line-height: 1.7; color: var(--light-grey); max-width: 520px; margin-bottom: 40px; }
.hero-sm { padding: 100px 60px 60px; justify-content: flex-start; padding-top: 100px; height: 380px; min-height: 380px; }
.hero-sm h1 { font-size: 64px; }

/* ---- Buttons ---- */
.btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.btn-primary {
  display: inline-block; font-size: 15px; font-weight: 600; padding: 14px 36px;
  background: var(--dark); color: white; border-radius: 100px; border: none; cursor: pointer; transition: background 0.2s;
}
.btn-primary:hover { background: var(--blue); }
.btn-secondary {
  display: inline-block; font-size: 15px; font-weight: 500; padding: 14px 36px;
  color: var(--blue); border-radius: 100px; border: none; background: transparent; cursor: pointer; transition: color 0.2s;
}
.btn-secondary:hover { color: var(--teal); }
.btn-outline {
  display: inline-block; font-size: 15px; font-weight: 500; padding: 14px 36px;
  color: var(--dark); border-radius: 100px; border: 1px solid var(--border); background: white; cursor: pointer; transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

/* ---- Sections ---- */
.section { padding: 100px 60px; }
.section-alt { background: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: 64px; max-width: 680px; margin-left: auto; margin-right: auto; }
.section-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px; font-weight: 800; letter-spacing: -2px; line-height: 1.1; margin-bottom: 16px;
}
.section-header p { font-size: 18px; line-height: 1.7; color: var(--light-grey); }

/* ---- Cards ---- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.card {
  background: white; border-radius: 20px; padding: 36px; border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(48,76,86,0.08); }
.section-alt .card { background: white; }
.card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px;
}
.icon { display: inline-flex !important; align-items: center; justify-content: center; line-height: 0; }
.card-icon svg { width: 24px; height: 24px; fill: currentColor; }
.card-icon.c-blue { background: rgba(10,118,169,0.1); color: var(--blue); }
.card-icon.c-teal { background: rgba(67,194,205,0.1); color: var(--teal); }
.card-icon.c-green { background: rgba(144,200,69,0.1); color: var(--green); }
.card-icon.c-dark { background: rgba(48,76,86,0.08); color: var(--dark); }
.card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.5px;
}
.card p { font-size: 15px; color: var(--light-grey); line-height: 1.65; }

/* ---- Stats ---- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 1000px; margin: 0 auto; text-align: center; }
.stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 48px; font-weight: 800; letter-spacing: -2px; margin-bottom: 4px; }
.stat-label { font-size: 14px; color: var(--light-grey); }

/* ---- Clients ---- */
.clients-bar { display: flex; flex-direction: column; align-items: center; gap: 24px; padding: 48px 60px; border-top: 1px solid var(--border); }
.clients-label { font-size: 12px; color: #657780; text-transform: uppercase; letter-spacing: 2px; }
.clients-logos { display: flex; justify-content: center; align-items: flex-end; gap: 48px; flex-wrap: wrap; }
.client-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.client-logo-img { height: 40px; width: auto; max-width: 160px; object-fit: contain; opacity: 0.6; filter: grayscale(100%); transition: opacity 0.2s, filter 0.2s; }
.client-logo-img:hover { opacity: 1; filter: grayscale(0%); }
.client-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 600; color: #657780; text-transform: uppercase; letter-spacing: 1px; }

/* ---- Feature Rows ---- */
.feature-row { display: flex; align-items: center; gap: 80px; max-width: 1100px; margin: 0 auto 80px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { flex-direction: row-reverse; }
.feature-text { flex: 1; }
.feature-text h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px; font-weight: 800; letter-spacing: -1.5px; margin-bottom: 16px; line-height: 1.15;
}
.feature-text p { font-size: 17px; color: var(--light-grey); line-height: 1.75; margin-bottom: 24px; }
.feature-visual {
  flex: 1; background: var(--bg-alt); border-radius: 24px; height: 320px;
  display: flex; align-items: center; justify-content: center; border: 1px solid var(--border);
}
.feature-visual-inner { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 56px; font-weight: 800; opacity: 0.15; }

/* ---- Testimonial ---- */
.testimonial-block { max-width: 700px; margin: 0 auto; text-align: center; }
.testimonial-block blockquote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px; font-weight: 600; line-height: 1.45; letter-spacing: -0.5px; color: var(--dark); margin-bottom: 24px;
}
.testimonial-block blockquote::before { content: '\201C'; }
.testimonial-block blockquote::after { content: '\201D'; }
.testimonial-block cite { font-style: normal; font-size: 15px; color: var(--light-grey); }

/* ---- Process Steps ---- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 1000px; margin: 0 auto; }
.process-step { text-align: center; }
.process-num {
  width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #00a8e8 0%, #0077b6 100%);
  color: white; font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.process-step h3 { font-size: 18px; margin-bottom: 8px; color: var(--dark); }
.process-step p { font-size: 14px; color: var(--grey); line-height: 1.5; }
@media (max-width: 768px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ---- CTA Section ---- */
.cta-section { text-align: center; padding: 100px 60px; background: var(--dark); color: white; }
.cta-section h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px; font-weight: 800; letter-spacing: -2px; margin-bottom: 16px;
}
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-section .btn-primary { background: white; color: var(--dark); }
.cta-section .btn-primary:hover { background: var(--teal); color: white; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; max-width: 1100px; margin: 0 auto; }
.contact-info h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 12px; background: rgba(10,118,169,0.08);
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; color: var(--blue);
}
.contact-item-icon svg { width: 22px; height: 22px; fill: currentColor; }
.contact-item-text strong { display: block; font-size: 15px; margin-bottom: 2px; }
.contact-item-text span { font-size: 14px; color: var(--light-grey); }
.contact-map { display: flex; flex-direction: column; }
.contact-map iframe { flex: 1; min-height: 300px; border-radius: 12px; }
.contact-form-wrapper { max-width: 700px; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 500; color: var(--dark); }
.form-group input, .form-group textarea, .form-group select {
  font-family: 'Inter', sans-serif; font-size: 15px; padding: 14px 18px;
  border: 1px solid var(--border); border-radius: 12px; background: var(--bg-alt); color: var(--dark); outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ---- Footer ---- */
.footer { padding: 60px 60px 40px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: var(--light-grey); margin-top: 16px; max-width: 280px; line-height: 1.65; }
.footer-col h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 16px; color: var(--dark); }
.footer-heading { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 16px; color: var(--dark); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--light-grey); transition: color 0.2s; }
.footer-col a:hover { color: var(--blue); }
/* ---- Legal Pages ---- */
.legal-page { padding: 80px 20px; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h1 { font-size: 2rem; margin-bottom: 32px; }
.legal-content h2 { font-size: 1.2rem; margin-top: 40px; margin-bottom: 12px; color: var(--dark); }
.legal-content p { margin-bottom: 16px; line-height: 1.8; color: var(--grey); }
.legal-content ul { margin-bottom: 16px; padding-left: 24px; }
.legal-content li { margin-bottom: 8px; line-height: 1.7; color: var(--grey); }
.legal-content a { color: var(--blue); }
.legal-contact { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: 13px; color: #657780; }
.footer-bottom-left { flex-shrink: 0; }
.footer-cloud-icon { height: 28px; width: auto; opacity: 0.5; }
.footer-bottom-right { display: flex; align-items: center; gap: 12px; }
.footer-bottom-right a { color: #657780; text-decoration: none; transition: color 0.2s; }
.footer-bottom-right a:hover { color: var(--blue); }
.footer-sep { color: #d0d8dc; }

/* ---- Timeline ---- */
.timeline { max-width: 700px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { display: flex; gap: 32px; margin-bottom: 48px; position: relative; }
.timeline-dot {
  width: 50px; height: 50px; border-radius: 50%; background: white; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 700; color: var(--blue); flex-shrink: 0; z-index: 1;
}
.timeline-content h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.timeline-content p { font-size: 15px; color: var(--light-grey); line-height: 1.65; }

/* ---- Values ---- */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 900px; margin: 0 auto; }
.value-card { padding: 36px; border-radius: 20px; border: 1px solid var(--border); background: white; }
.value-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 10px;
  display: flex; align-items: center; gap: 12px;
}
.value-card p { font-size: 15px; color: var(--light-grey); line-height: 1.65; }

/* ---- Kai specifics ---- */
.kai-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 100px;
  background: rgba(67,194,205,0.1); color: var(--teal); margin-bottom: 24px;
}
.kai-status-dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ---- Data Sovereignty ---- */
.shield-visual { display: flex; align-items: center; justify-content: center; gap: 24px; max-width: 600px; margin: 0 auto 64px; }
.shield-icon { font-size: 72px; line-height: 1; }
.shield-stats { display: flex; flex-direction: column; gap: 8px; }
.shield-stat {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 600; color: var(--dark);
  display: flex; align-items: center; gap: 10px;
}
.shield-stat .check { color: var(--green); font-size: 18px; }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-item h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.faq-item p { font-size: 15px; color: var(--light-grey); line-height: 1.65; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero h1 { font-size: 56px; letter-spacing: -2.5px; }
  .hero-sm h1 { font-size: 48px; }
  .section-header h2 { font-size: 40px; }
  .feature-row { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Tablet nav breakpoint - hamburger for scaled displays (1920@150% = 1280px) */
@media (max-width: 1280px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-scan { display: none; }
  .nav-mobile-phone { display: flex; }
  .nav-mobile-scan { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: white; padding: 24px; gap: 20px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  }
  .nav-dropdown {
    position: static; transform: none; box-shadow: none; border-radius: 0;
    padding: 8px 0 0 16px; min-width: auto; display: none; border-top: none;
  }
  .has-dropdown.dropdown-open .nav-dropdown { display: flex; }
  .has-dropdown::after { display: none; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 16px 24px; }
  .hero { padding: 60px 24px 48px; min-height: 60vh; }
  .hero h1 { font-size: 42px; letter-spacing: -1.5px; }
  .hero-sm h1 { font-size: 36px; }
  .hero p { font-size: 17px; }
  .section { padding: 64px 24px; }
  .section-header h2 { font-size: 32px; letter-spacing: -1px; }
  .cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-num { font-size: 36px; }
  .feature-row, .feature-row.reverse { flex-direction: column; gap: 32px; }
  .feature-visual { height: 200px; }
  .feature-text h3 { font-size: 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer { padding: 40px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .clients-bar { gap: 16px; padding: 32px 24px; }
  .clients-logos { gap: 24px; }
  .client-logo-img { height: 32px; max-width: 120px; }
  .cta-section { padding: 64px 24px; }
  .cta-section h2 { font-size: 36px; }
  .values-grid { grid-template-columns: 1fr; }
  .shield-visual { flex-direction: column; text-align: center; }
  .btns { flex-direction: column; align-items: center; }
  .timeline::before { left: 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 34px; letter-spacing: -1px; }
  .hero-sm h1 { font-size: 30px; }
  .section-header h2 { font-size: 28px; }
  .stat-num { font-size: 32px; }
}

/* AI Page Visuals */
.ai-terminal {
  background: #1a1a2e;
  border-radius: 12px;
  overflow: hidden;
  font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
  font-size: 13px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 340px;
}
.ai-terminal-header {
  background: #252540;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ai-terminal-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.ai-terminal-header .dot.red { background: #ff5f56; }
.ai-terminal-header .dot.yellow { background: #ffbd2e; }
.ai-terminal-header .dot.green { background: #27ca40; }
.ai-terminal-title {
  margin-left: 8px;
  color: #888;
  font-size: 12px;
}
.ai-terminal-body {
  padding: 16px;
  color: #e0e0e0;
  line-height: 1.7;
}
.ai-terminal-line { margin-bottom: 4px; }
.ai-terminal-line .prompt { color: #5eead4; margin-right: 8px; }
.ai-terminal-line .success { color: #27ca40; margin-right: 6px; }
.ai-terminal-line.dim { color: #666; }

.ai-decision-box {
  background: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  max-width: 340px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.ai-decision-header {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.ai-decision-action {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  padding: 12px 16px;
  background: #f5f5f5;
  border-radius: 8px;
  font-family: 'SF Mono', monospace;
  margin-bottom: 16px;
}
.ai-decision-buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 12px;
}
.ai-btn-deny {
  padding: 8px 12px;
  background: #fee2e2;
  color: #dc2626;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}
.ai-btn-approve {
  padding: 8px 12px;
  background: #d1fae5;
  color: #059669;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}
.ai-decision-footer {
  font-size: 11px;
  color: #999;
}

.ai-stats-box {
  display: flex;
  gap: 24px;
  background: linear-gradient(135deg, #304C56 0%, #1a1a2e 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.ai-stat {
  text-align: center;
}
.ai-stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #5eead4;
  line-height: 1;
  margin-bottom: 6px;
}
.ai-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .ai-terminal, .ai-decision-box { max-width: 100%; }
  .ai-stats-box { flex-direction: column; gap: 16px; padding: 24px; }
}

/* Data Sovereignty Page Visuals */
.ds-risk-box {
  background: #fff;
  border: 2px solid #fecaca;
  border-radius: 12px;
  padding: 20px;
  max-width: 340px;
  font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
  font-size: 12px;
  box-shadow: 0 4px 16px rgba(220,38,38,0.1);
}
.ds-risk-header {
  font-size: 14px;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ds-risk-from, .ds-risk-to {
  color: #666;
  margin-bottom: 4px;
}
.ds-risk-content {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #fecaca;
}
.ds-risk-line { margin-bottom: 4px; color: #333; }
.ds-risk-line.dim { color: #888; }
.ds-risk-line.warn { color: #dc2626; font-weight: 600; margin-top: 8px; }

.ds-location-box {
  background: linear-gradient(135deg, #1e3a5f 0%, #1a1a2e 100%);
  border-radius: 16px;
  padding: 28px;
  max-width: 340px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  text-align: center;
}
.ds-location-map {
  margin-bottom: 20px;
}
.ds-nl-shape {
  font-size: 64px;
  font-weight: 800;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  margin-bottom: 12px;
}
.ds-dc-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  padding: 10px 16px;
  border-radius: 24px;
  width: fit-content;
  margin: 0 auto;
}
.ds-dc-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}
.ds-dc-label {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.ds-location-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.ds-flag { font-size: 18px; }

.ds-timeline-box {
  background: #f9fafb;
  border-radius: 12px;
  padding: 24px;
  max-width: 340px;
}
.ds-timeline-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-left: 3px solid #e5e7eb;
  padding-left: 16px;
  margin-left: 8px;
}
.ds-timeline-item.done { border-color: #22c55e; }
.ds-timeline-item.active { border-color: #3b82f6; }
.ds-timeline-item.future { border-color: #d1d5db; }
.ds-tl-year {
  font-weight: 700;
  font-size: 14px;
  min-width: 50px;
}
.ds-timeline-item.done .ds-tl-year { color: #22c55e; }
.ds-timeline-item.active .ds-tl-year { color: #3b82f6; }
.ds-timeline-item.future .ds-tl-year { color: #9ca3af; }
.ds-tl-label {
  font-size: 12px;
  color: #666;
}

@media (max-width: 768px) {
  .ds-risk-box, .ds-location-box, .ds-timeline-box { max-width: 100%; }
}

/* Vacatures Page Visuals */
.vac-team-box {
  background: linear-gradient(135deg, #304C56 0%, #1a1a2e 100%);
  border-radius: 16px;
  padding: 28px;
  max-width: 340px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  text-align: center;
}
.vac-team-header {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.vac-team-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vac-team-stat {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}
.vac-num {
  font-size: 32px;
  font-weight: 700;
  color: #5eead4;
  line-height: 1;
}
.vac-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.vac-open-box {
  background: #f9fafb;
  border: 2px dashed #d1d5db;
  border-radius: 16px;
  padding: 32px 24px;
  max-width: 340px;
  text-align: center;
}
.vac-open-icon {
  font-size: 40px;
  margin-bottom: 12px;
}
.vac-open-text {
  font-size: 16px;
  font-weight: 600;
  color: #304C56;
  margin-bottom: 8px;
}
.vac-open-email {
  font-size: 13px;
  color: #0a76a9;
  font-family: 'SF Mono', monospace;
}

@media (max-width: 768px) {
  .vac-team-box, .vac-open-box { max-width: 100%; }
}

/* Support Page Visuals */
.sup-fence-box {
  background: #f9fafb;
  border-radius: 16px;
  padding: 28px;
  max-width: 340px;
}
.sup-fence-compare {
  display: flex;
  gap: 16px;
}
.sup-fence-side {
  flex: 1;
  text-align: center;
}
.sup-fence-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: #666;
}
.sup-fence-wall {
  font-family: monospace;
  font-size: 24px;
  color: #dc2626;
  margin-bottom: 16px;
  line-height: 1;
}
.sup-fence-wall.low {
  color: #22c55e;
  font-size: 18px;
}
.sup-fence-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}
.sup-fence-side.bad .sup-fence-items { color: #888; }
.sup-fence-side.good .sup-fence-items { color: #304C56; font-weight: 500; }

.sup-response-box {
  background: linear-gradient(135deg, #304C56 0%, #1a1a2e 100%);
  border-radius: 16px;
  padding: 28px;
  max-width: 340px;
  color: #fff;
}
.sup-response-header {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.7);
}
.sup-response-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sup-response-item:last-of-type { border-bottom: none; }
.sup-resp-label { font-size: 14px; }
.sup-resp-time {
  font-weight: 700;
  font-size: 16px;
}
.sup-response-item.urgent .sup-resp-time { color: #f87171; }
.sup-response-item.high .sup-resp-time { color: #fbbf24; }
.sup-response-item.normal .sup-resp-time { color: #5eead4; }
.sup-response-footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

@media (max-width: 768px) {
  .sup-fence-box, .sup-response-box { max-width: 100%; }
}

/* Kai Page Visuals */
.kai-speed-box {
  background: linear-gradient(135deg, #304C56 0%, #1a1a2e 100%);
  border-radius: 16px;
  padding: 28px;
  max-width: 340px;
  color: #fff;
  text-align: center;
}
.kai-speed-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.kai-speed-item { text-align: center; }
.kai-speed-time {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.kai-speed-item.old .kai-speed-time { color: #f87171; }
.kai-speed-item.new .kai-speed-time { color: #5eead4; }
.kai-speed-label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.kai-speed-arrow {
  font-size: 24px;
  color: rgba(255,255,255,0.4);
}
.kai-speed-footer {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 12px;
}

.kai-human-box {
  background: #f9fafb;
  border-radius: 16px;
  padding: 28px;
  max-width: 340px;
  text-align: center;
}
.kai-human-header {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
  margin-bottom: 16px;
}
.kai-human-flow {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.kai-human-step {
  padding: 8px 12px;
  background: #e5e7eb;
  border-radius: 8px;
  font-size: 13px;
  color: #666;
}
.kai-human-step.active {
  background: #22c55e;
  color: #fff;
  font-weight: 600;
}
.kai-human-footer {
  margin-top: 16px;
  font-size: 11px;
  color: #888;
}

.kai-pricing-box {
  background: #f9fafb;
  border-radius: 16px;
  padding: 28px;
  max-width: 340px;
}
.kai-pricing-compare {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.kai-pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
}
.kai-pricing-item.enterprise { background: #fee2e2; }
.kai-pricing-item.smb { background: #d1fae5; }
.kai-pricing-label { font-size: 13px; }
.kai-pricing-cost { font-weight: 700; font-size: 16px; }
.kai-pricing-item.enterprise .kai-pricing-cost { color: #dc2626; }
.kai-pricing-item.smb .kai-pricing-cost { color: #22c55e; }
.kai-pricing-footer {
  font-size: 11px;
  color: #888;
  text-align: center;
}

.kai-trial-box {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 16px;
  padding: 28px;
  max-width: 340px;
  color: #fff;
  text-align: center;
}
.kai-trial-header {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 8px;
}
.kai-trial-offer {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}
.kai-trial-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

/* Cloud Oplossingen Visuals */
.cloud-redundancy-box {
  background: linear-gradient(135deg, #304C56 0%, #1a1a2e 100%);
  border-radius: 16px;
  padding: 28px;
  max-width: 340px;
  color: #fff;
}
.cloud-red-header {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 16px;
}
.cloud-red-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cloud-red-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.cloud-red-check { color: #5eead4; }
.cloud-red-footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 11px;
  opacity: 0.6;
}

.cloud-segment-box {
  background: #f9fafb;
  border-radius: 16px;
  padding: 28px;
  max-width: 340px;
  text-align: center;
}
.cloud-seg-header {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
  margin-bottom: 16px;
}
.cloud-seg-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}
.cloud-seg-tag {
  background: #304C56;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}
.cloud-seg-footer {
  font-size: 11px;
  color: #888;
}

/* About/Over-ons Visuals */
.about-origin-box {
  background: linear-gradient(135deg, #304C56 0%, #1a1a2e 100%);
  border-radius: 16px;
  padding: 32px;
  max-width: 340px;
  color: #fff;
  text-align: center;
}
.about-origin-year {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.about-origin-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 4px;
}
.about-origin-detail {
  font-size: 13px;
  opacity: 0.5;
}

/* Services Visuals */
.svc-managed-box {
  background: linear-gradient(135deg, #304C56 0%, #1a1a2e 100%);
  border-radius: 16px;
  padding: 28px;
  max-width: 340px;
  color: #fff;
}
.svc-managed-header {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 16px;
}
.svc-managed-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.svc-migration-box {
  background: #f9fafb;
  border-radius: 16px;
  padding: 28px;
  max-width: 340px;
}
.svc-mig-step {
  padding: 10px 16px;
  margin-bottom: 8px;
  border-radius: 8px;
  font-size: 13px;
  background: #e5e7eb;
  color: #666;
}
.svc-mig-step.done {
  background: #d1fae5;
  color: #166534;
}
.svc-mig-step.active {
  background: #3b82f6;
  color: #fff;
  font-weight: 600;
}

.svc-perf-box {
  background: #f9fafb;
  border-radius: 16px;
  padding: 28px;
  max-width: 340px;
}
.svc-perf-meter {
  height: 24px;
  background: #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}
.svc-perf-bar {
  height: 100%;
  background: linear-gradient(90deg, #22c55e 0%, #5eead4 100%);
  border-radius: 12px;
}
.svc-perf-stats {
  display: flex;
  justify-content: space-around;
  font-size: 14px;
  color: #666;
}
.svc-perf-stats strong { color: #22c55e; }

@media (max-width: 768px) {
  .kai-speed-box, .kai-human-box, .kai-pricing-box, .kai-trial-box,
  .cloud-redundancy-box, .cloud-segment-box, .about-origin-box,
  .svc-managed-box, .svc-migration-box, .svc-perf-box { max-width: 100%; }
}

/* Private Cloud Visuals */
.priv-dedicated-box {
  background: linear-gradient(135deg, #304C56 0%, #1a1a2e 100%);
  border-radius: 16px;
  padding: 28px;
  max-width: 340px;
  color: #fff;
}
.priv-ded-header {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 16px;
}
.priv-ded-items { display: flex; flex-direction: column; gap: 10px; }
.priv-ded-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.priv-ded-icon { font-size: 16px; }
.priv-ded-footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 11px;
  opacity: 0.6;
}

.priv-compare-box {
  background: #f9fafb;
  border-radius: 16px;
  padding: 28px;
  max-width: 340px;
}
.priv-cmp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 14px;
}
.priv-cmp-row:last-child { margin-bottom: 0; }
.priv-cmp-row.bad { background: #fee2e2; }
.priv-cmp-row.good { background: #d1fae5; }
.priv-cmp-label { font-weight: 500; }
.priv-cmp-val { font-weight: 700; }
.priv-cmp-row.bad .priv-cmp-val { color: #dc2626; }
.priv-cmp-row.good .priv-cmp-val { color: #22c55e; }

/* Public Cloud Visuals */
.pub-aws-box {
  background: linear-gradient(135deg, #FF9900 0%, #CC7A00 100%);
  border-radius: 16px;
  padding: 28px;
  max-width: 340px;
  color: #fff;
  text-align: center;
}
.pub-aws-logo {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 4px;
}
.pub-aws-managed {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 16px;
}
.pub-aws-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.pub-scale-box {
  background: #f9fafb;
  border-radius: 16px;
  padding: 28px;
  max-width: 340px;
}
.pub-scale-header {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
  margin-bottom: 16px;
}
.pub-scale-bar {
  height: 16px;
  background: #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}
.pub-scale-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #3b82f6 0%, #22c55e 100%);
  border-radius: 8px;
}
.pub-scale-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #888;
}

.pub-ownership-box {
  background: #f9fafb;
  border-radius: 16px;
  padding: 28px;
  max-width: 340px;
  text-align: center;
}
.pub-own-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  margin-bottom: 8px;
  background: #fff;
  border-radius: 8px;
  font-size: 14px;
}
.pub-own-icon { font-size: 20px; }
.pub-own-footer {
  margin-top: 8px;
  font-size: 11px;
  color: #888;
}

/* Hybrid Cloud Visuals */
.hyb-multi-box {
  background: linear-gradient(135deg, #304C56 0%, #1a1a2e 100%);
  border-radius: 16px;
  padding: 28px;
  max-width: 340px;
  color: #fff;
  text-align: center;
}
.hyb-multi-header {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 16px;
}
.hyb-multi-platforms {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hyb-plat {
  background: rgba(255,255,255,0.15);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
.hyb-multi-footer {
  font-size: 11px;
  opacity: 0.6;
}

.hyb-flow-box {
  background: #f9fafb;
  border-radius: 16px;
  padding: 28px;
  max-width: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hyb-flow-item {
  background: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.hyb-flow-arrow {
  font-size: 20px;
  color: #3b82f6;
}

.hyb-growth-box {
  background: #f9fafb;
  border-radius: 16px;
  padding: 28px;
  max-width: 340px;
}
.hyb-growth-step {
  padding: 10px 16px;
  margin-bottom: 8px;
  border-radius: 8px;
  font-size: 13px;
  background: #e5e7eb;
  color: #666;
}
.hyb-growth-step.done {
  background: #d1fae5;
  color: #166534;
}
.hyb-growth-step.active {
  background: #3b82f6;
  color: #fff;
  font-weight: 600;
}
.hyb-growth-footer {
  margin-top: 8px;
  font-size: 11px;
  color: #888;
  text-align: center;
}

@media (max-width: 768px) {
  .priv-dedicated-box, .priv-compare-box, .pub-aws-box, .pub-scale-box,
  .pub-ownership-box, .hyb-multi-box, .hyb-flow-box, .hyb-growth-box { max-width: 100%; }
}

/* Migration Visuals */
.mig-process-box {
  background: #f9fafb;
  border-radius: 16px;
  padding: 28px;
  max-width: 340px;
}
.mig-step {
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 8px;
  font-size: 14px;
  background: #e5e7eb;
  color: #666;
}
.mig-step:last-child { margin-bottom: 0; }
.mig-step.done {
  background: #d1fae5;
  color: #166534;
}
.mig-step.active {
  background: #3b82f6;
  color: #fff;
  font-weight: 600;
}

.mig-zero-box {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 16px;
  padding: 32px;
  max-width: 340px;
  color: #fff;
  text-align: center;
}
.mig-zero-main {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.mig-zero-label {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 16px;
}
.mig-zero-footer {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

.mig-dest-box {
  background: linear-gradient(135deg, #304C56 0%, #1a1a2e 100%);
  border-radius: 16px;
  padding: 28px;
  max-width: 340px;
  color: #fff;
  text-align: center;
}
.mig-dest-header {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 16px;
}
.mig-dest-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.mig-dest-tag {
  background: rgba(255,255,255,0.15);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
}
.mig-dest-footer {
  font-size: 11px;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .mig-process-box, .mig-zero-box, .mig-dest-box { max-width: 100%; }
}

/* Card V3: Minimal Line + Watermark (Concept 5) */
.cards-grid-v3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.card-v3 {
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid #e8ecf0;
}
.card-v3:nth-child(6n+1) { --accent: #1e88e5; }
.card-v3:nth-child(6n+2) { --accent: #26a69a; }
.card-v3:nth-child(6n+3) { --accent: #43a047; }
.card-v3:nth-child(6n+4) { --accent: #5c6bc0; }
.card-v3:nth-child(6n+5) { --accent: #f59e0b; }
.card-v3:nth-child(6n+6) { --accent: #e53935; }
.card-v3 .card-watermark {
  position: absolute;
  top: -10px; right: -10px;
  width: 100px; height: 100px;
  opacity: 0.04;
}
.card-v3 .card-watermark svg { width: 100%; height: 100%; fill: var(--accent); }
.card-v3 .card-icon-sm {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card-v3 .card-icon-sm svg { width: 18px; height: 18px; }
.card-v3 .card-icon-sm.c-blue { background: rgba(30,136,229,0.12); color: #1e88e5; }
.card-v3 .card-icon-sm.c-teal { background: rgba(38,166,154,0.12); color: #26a69a; }
.card-v3 .card-icon-sm.c-green { background: rgba(67,160,71,0.12); color: #43a047; }
.card-v3 .card-icon-sm.c-purple { background: rgba(92,107,192,0.12); color: #5c6bc0; }
.card-v3 .card-icon-sm.c-amber { background: rgba(245,158,11,0.12); color: #f59e0b; }
.card-v3 .card-icon-sm.c-red { background: rgba(229,57,53,0.12); color: #e53935; }
.card-v3 .card-divider {
  width: 32px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
  margin-bottom: 12px;
}
.card-v3 h3 { font-size: 15px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.card-v3 p { font-size: 13px; color: #6b7280; line-height: 1.6; }
@media (max-width: 768px) {
  .cards-grid-v3 { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .cards-grid-v3 { grid-template-columns: repeat(2, 1fr); }
}

/* Card watermark for existing .card class */
.card { position: relative; overflow: hidden; }
.card .card-watermark {
  position: absolute;
  top: -10px; right: -10px;
  width: 100px; height: 100px;
  opacity: 0.04;
}
.card .card-watermark svg { width: 100%; height: 100%; }
.card:nth-child(6n+1) .card-watermark svg { fill: #1e88e5; }
.card:nth-child(6n+2) .card-watermark svg { fill: #26a69a; }
.card:nth-child(6n+3) .card-watermark svg { fill: #43a047; }
.card:nth-child(6n+4) .card-watermark svg { fill: #5c6bc0; }
.card:nth-child(6n+5) .card-watermark svg { fill: #f59e0b; }
.card:nth-child(6n+6) .card-watermark svg { fill: #e53935; }

/* Content links - visible styling */
.feature-text a,
.section p a,
.cards-grid a:not(.btn-primary) {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.feature-text a:hover,
.section p a:hover {
  color: var(--dark-blue);
}

/* About page - office photo */
.about-photo {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .dcc-logo {
    width: 150px;
  }
}

/* DCC Community Section */
.community-section {
  padding: 3rem 0;
}
.community-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}
.dcc-logo {
  width: 180px;
  height: auto;
  flex-shrink: 0;
}
.community-text h2 {
  margin-bottom: 0.75rem;
}
.community-text p {
  margin: 0;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .community-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .dcc-logo {
    width: 150px;
  }
}
