/* ==========================================================================
   MOVINGLIFT.NL - Unique Premium Design
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

:root {
  --primary: #060097;
  --mid: #8204ff;
  --purple: #c10fff;
  --yellow: #ffcd57;
  --dark: #0c0c1d;
  --text: #4a4a68;
  --text-light: #7a7a96;
  --border: rgba(150,150,150,0.2);
  --white: #ffffff;
  --off-white: #f7f7fb;
  --radius: 16px;
  --radius-xl: 24px;
  --radius-full: 50px;
  --grad: linear-gradient(135deg, #060097 0%, #8204ff 50%, #c10fff 100%);
  --max-w: 1280px;
  --ease: cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px; line-height: 1.7; color: var(--text);
  background: var(--white); -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--dark); line-height: 1.1; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 36px; border: none; border-radius: var(--radius-full);
  font-size: 16px; font-weight: 700; text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.4s var(--ease); cursor: pointer; position: relative;
}
.btn-yellow {
  background: var(--yellow); color: var(--dark);
  box-shadow: 0 4px 24px rgba(255,205,87,0.35);
}
.btn-yellow:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(255,205,87,0.5); }
.btn-primary { background: var(--grad); color: var(--white); box-shadow: 0 4px 24px rgba(6,0,151,0.25); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(6,0,151,0.35); }
.btn-ghost { background: transparent; border: 2px solid rgba(255,255,255,0.3); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.4); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); transform: translateY(-3px); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(12,12,29,0.3); }
.btn-full { width: 100%; }
.btn-lg { padding: 22px 48px; font-size: 18px; }
.btn-sm { padding: 14px 28px; font-size: 14px; }
.text-yellow { color: var(--yellow) !important; }
.text-grad {
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

/* ==================== HEADER ==================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; transition: all 0.4s var(--ease);
}
.header-scrolled {
  background: rgba(6,0,151,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 40px rgba(6,0,151,0.3);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 88px;
}
.header-logo { display: flex; align-items: center; text-decoration: none; z-index: 10; }
.logo-svg { height: 44px; width: auto; }
@media (max-width: 768px) { .logo-svg { height: 36px; } }
.header-nav { display: flex; align-items: center; gap: 8px; }
.header-nav-link {
  color: rgba(255,255,255,0.7); font-weight: 500; font-size: 15px;
  padding: 10px 20px; border-radius: var(--radius-full);
  transition: all 0.3s var(--ease);
}
.header-nav-link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.header-nav-link.active { color: var(--yellow); }
.header-cta { font-size: 14px; padding: 14px 28px; }
.header-cta-mobile { display: none; }
.hamburger { display: none; background: none; border: none; padding: 8px; flex-direction: column; gap: 6px; z-index: 10; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

@media (max-width: 960px) {
  .header-nav {
    display: none; position: fixed; inset: 0;
    background: linear-gradient(180deg, #060097 0%, #3a0ca3 100%);
    flex-direction: column; justify-content: center;
    padding: 32px; gap: 0; z-index: 5;
  }
  .header-nav.active { display: flex; }
  .header-nav-link { font-size: 28px; font-weight: 700; padding: 20px 0; border-radius: 0; color: rgba(255,255,255,0.8); width: 100%; text-align: center; }
  .header-cta-mobile { display: flex; margin-top: 32px; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
}

/* ==================== HERO ==================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--dark); overflow: hidden;
  background-size: cover; background-position: center;
}
/* Gradient overlay for all hero sections (works with both inline bg and .hero-bg) */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(6,0,151,0.9) 0%, rgba(12,12,29,0.7) 40%, rgba(193,15,255,0.4) 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(6,0,151,0.9) 0%, rgba(12,12,29,0.7) 40%, rgba(193,15,255,0.4) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center;
  padding: 140px 0 100px;
}
.hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem); font-weight: 900; color: var(--white);
  margin-bottom: 28px; letter-spacing: -2px;
}
.hero-subtitle {
  font-size: 1.2rem; color: rgba(255,255,255,0.7); margin-bottom: 40px;
  max-width: 480px; line-height: 1.8;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; gap: 48px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem; font-weight: 900; color: var(--yellow); line-height: 1;
}
.hero-stat-label { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* Hero form glassmorphism */
.hero-form-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl); padding: 40px;
}
.hero-form-title {
  font-size: 1.3rem; color: var(--white); margin-bottom: 8px; font-weight: 700;
}
.hero-form-sub { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 6px; }
.form-group input, .form-group select {
  width: 100%; height: 52px; padding: 0 18px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 12px; font-size: 15px; font-family: inherit;
  background: rgba(255,255,255,0.06); color: var(--white);
  transition: all 0.3s var(--ease); appearance: none;
}
.form-group input::placeholder { color: rgba(255,255,255,0.3); }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 44px;
}
.form-group select option { background: var(--dark); color: var(--white); }
.form-group input:focus, .form-group select:focus {
  border-color: var(--yellow); outline: none;
  box-shadow: 0 0 0 3px rgba(255,205,87,0.15);
}

@media (max-width: 960px) {
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; padding: 120px 0 60px; gap: 48px; }
  .hero-stats { gap: 32px; }
}

/* ==================== TRUST BAR ==================== */
.trust-bar {
  background: var(--off-white); border-bottom: 1px solid var(--border); padding: 20px 0;
}
.trust-bar-inner { display: flex; justify-content: center; gap: 56px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--dark); }

/* ==================== BENTO GRID SERVICES ==================== */
.section { padding: clamp(80px, 10vw, 120px) 0; }
.section-alt { background: var(--off-white); }
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-label {
  display: inline-block; padding: 8px 20px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--grad); color: var(--white); margin-bottom: 20px;
}
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-light); max-width: 540px; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* Bento grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.bento-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  transition: all 0.5s var(--ease); position: relative;
}
.bento-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(6,0,151,0.1); }
.bento-card.featured {
  grid-row: span 2; border: 2px solid var(--purple);
}
.bento-card-img { height: 220px; overflow: hidden; }
.bento-card.featured .bento-card-img { height: 280px; }
.bento-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.bento-card:hover .bento-card-img img { transform: scale(1.06); }
.bento-card-badge {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  background: var(--grad); color: var(--white);
  padding: 6px 18px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.bento-card-body { padding: 28px; }
.bento-card-body h3 { font-size: 1.25rem; margin-bottom: 10px; font-weight: 700; }
.bento-card-body > p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 20px; }
.bento-features li {
  display: flex; align-items: center; gap: 10px; padding: 5px 0; font-size: 14px; color: var(--dark);
}
.bento-features li::before {
  content: ''; width: 20px; height: 20px; min-width: 20px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(6,0,151,0.08), rgba(193,15,255,0.08));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23060097' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}
.bento-price { padding-top: 20px; border-top: 1px solid var(--border); margin-top: 20px; }
.bento-price span { font-size: 14px; color: var(--text-light); }
.bento-price strong {
  font-size: 2.4rem; font-weight: 900; color: var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif; margin: 0 4px;
}
@media (max-width: 768px) { .bento-grid { grid-template-columns: 1fr; } .bento-card.featured { grid-row: span 1; } }

/* ==================== DIAGONAL STATS ==================== */
.diagonal-section {
  position: relative; overflow: hidden;
  background: var(--grad); color: var(--white);
  padding: 100px 0; margin: 0;
  clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; text-align: center;
}
.stat-number {
  font-size: clamp(2.8rem, 5vw, 4rem); font-weight: 900;
  color: var(--yellow); line-height: 1; margin-bottom: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.stat-label { font-size: 15px; color: rgba(255,255,255,0.6); }
@media (max-width: 768px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .diagonal-section { clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%); } }

/* ==================== PHOTO MOSAIC ==================== */
.mosaic-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 16px;
}
.mosaic-item { border-radius: var(--radius-xl); overflow: hidden; position: relative; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.mosaic-item:hover img { transform: scale(1.08); }
.mosaic-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,0,151,0.5), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.mosaic-item:hover::after { opacity: 1; }
.mosaic-item:first-child { grid-row: span 2; }
@media (max-width: 768px) {
  .mosaic-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .mosaic-item:first-child { grid-row: span 1; grid-column: span 2; }
}

/* ==================== SPLIT FEATURES ==================== */
.split-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.split-image { position: relative; overflow: hidden; }
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 6vw, 80px);
}
.split-content h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 20px; letter-spacing: -0.5px; }
.split-content p { margin-bottom: 20px; color: var(--text); }
.feature-list { margin: 24px 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 12px 0; font-size: 16px;
}
.feature-icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: 14px;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { color: var(--white); }
.feature-list h4 { font-size: 16px; margin-bottom: 4px; }
.feature-list p { font-size: 14px; color: var(--text-light); margin: 0; }
@media (max-width: 768px) {
  .split-section { grid-template-columns: 1fr; }
  .split-image { height: 300px; }
}

/* ==================== REVIEWS ==================== */
.reviews-scroll {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.review-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px;
  transition: all 0.5s var(--ease); position: relative;
}
.review-card::before {
  content: '\201C'; position: absolute; top: 20px; right: 28px;
  font-size: 80px; font-family: Georgia, serif; color: rgba(6,0,151,0.06);
  line-height: 1;
}
.review-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(6,0,151,0.1); }
.review-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.review-text { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.review-author { display: flex; flex-direction: column; gap: 2px; }
.review-author strong { font-size: 15px; color: var(--dark); font-weight: 700; }
.review-author span { font-size: 13px; color: var(--text-light); }
@media (max-width: 768px) { .reviews-scroll { grid-template-columns: 1fr; } }

/* ==================== FAQ ==================== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); transition: all 0.3s; }
.faq-item.active { background: var(--off-white); margin: 0 -24px; padding: 0 24px; border-radius: var(--radius); border-bottom-color: transparent; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; background: none; border: none;
  font-size: 17px; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--dark); cursor: pointer; text-align: left;
}
.faq-question span { flex: 1; padding-right: 20px; }
.faq-icon { flex-shrink: 0; transition: transform 0.3s; color: var(--text-light); }
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--purple); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 0 24px; color: var(--text); font-size: 15px; line-height: 1.8; }

/* ==================== CTA ==================== */
.cta-section {
  position: relative; overflow: hidden; background: var(--dark);
  padding: 120px 0; text-align: center;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad); opacity: 0.9;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); font-weight: 800; margin-bottom: 16px; }
.cta-section p { font-size: 1.15rem; color: rgba(255,255,255,0.7); margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==================== FOOTER ==================== */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-brand { margin-bottom: 16px; }
.footer-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px; font-weight: 900; color: var(--white); text-decoration: none;
}
.footer-logo span { color: var(--yellow); }
.footer-brand p { font-size: 15px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-top: 16px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.footer-contact a { font-size: 15px; color: rgba(255,255,255,0.7); font-weight: 500; transition: color 0.3s; }
.footer-contact a:hover { color: var(--yellow); }
.footer-column h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; color: rgba(255,255,255,0.4); }
.footer-column ul li a { display: block; font-size: 15px; color: rgba(255,255,255,0.6); padding: 6px 0; transition: all 0.3s; }
.footer-column ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom { padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.06); text-align: center; font-size: 14px; color: rgba(255,255,255,0.3); }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ==================== CONTACT ==================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-card { background: var(--grad); color: var(--white); border-radius: var(--radius-xl); padding: 44px; }
.contact-info-card h3 { font-size: 1.4rem; margin-bottom: 36px; color: var(--white); }
.contact-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { stroke: #fff; }
.contact-item h4 { font-size: 15px; margin-bottom: 4px; color: var(--white); }
.contact-item p, .contact-item a { font-size: 14px; color: rgba(255,255,255,0.75); }
.contact-item a:hover { color: var(--yellow); }
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 44px; box-shadow: 0 20px 60px rgba(6,0,151,0.08); }
.contact-form-card h3 { font-size: 1.4rem; margin-bottom: 32px; }
.contact-form-card .form-group input,
.contact-form-card .form-group select {
  background: var(--white); color: var(--dark); border-color: var(--border);
}
.contact-form-card .form-group input::placeholder { color: var(--text-light); }
.contact-form-card .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%234a4a68' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 44px;
}
.contact-form-card .form-group select option { background: var(--white); color: var(--dark); }
.contact-form-card .form-group label { color: var(--dark); }
.contact-form-card .form-group input:focus,
.contact-form-card .form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(6,0,151,0.08); }
.contact-form-card textarea {
  width: 100%; padding: 16px 18px; border: 1.5px solid var(--border); border-radius: 12px;
  font-size: 15px; font-family: inherit; min-height: 120px; resize: vertical;
  transition: all 0.3s; color: var(--dark); background: var(--white);
}
.contact-form-card textarea:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(6,0,151,0.08); }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ==================== ABOUT PAGE ==================== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-grid-text h2 { font-size: 2rem; margin-bottom: 20px; font-weight: 800; }
.about-grid-text p { margin-bottom: 16px; }
.about-grid-image { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(6,0,151,0.15); }
.about-grid-image img { width: 100%; height: 400px; object-fit: cover; }
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid-image img { height: 280px; }
}

/* ==================== STEPS (for subpages) ==================== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step-card {
  text-align: center; padding: 48px 32px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); transition: all 0.5s var(--ease);
}
.step-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(6,0,151,0.1); }
.step-number {
  width: 72px; height: 72px; margin: 0 auto 24px;
  background: var(--grad); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 24px; font-weight: 900; color: var(--white);
}
.step-card h3 { font-size: 1.15rem; margin-bottom: 12px; font-weight: 700; }
.step-card p { font-size: 0.95rem; color: var(--text-light); }
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; } }

/* ==================== GALLERY (subpages) ==================== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 16px; }
.gallery-item { border-radius: var(--radius-xl); overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; } .gallery-item.large { grid-column: span 2; grid-row: span 1; } }

/* ==================== SECTION STATS (subpages) ==================== */
.section-stats { background: var(--grad); color: var(--white); padding: 80px 0; }

/* ==================== CTA BANNER (subpages) ==================== */
.cta-banner { position: relative; overflow: hidden; background-size: cover; background-position: center; background-color: var(--primary); }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6,0,151,0.92), rgba(193,15,255,0.85)); z-index: 1; }
.cta-banner-inner { position: relative; z-index: 2; text-align: center; padding: 100px 0; max-width: 680px; margin: 0 auto; }
.cta-banner-inner h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--white); margin-bottom: 16px; font-weight: 800; }
.cta-banner-inner p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.cta-banner-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }
