/* =============================================
   WeDate - Main Stylesheet
   ============================================= */

:root {
  --primary: #e91e8c;
  --primary-dark: #c2185b;
  --secondary: #7c3aed;
  --accent: #ff6b9d;
  --dark: #1a1a2e;
  --text: #4a4a6a;
  --light-pink: #fff0f6;
  --gradient: linear-gradient(135deg, #e91e8c 0%, #7c3aed 100%);
  --gradient-soft: linear-gradient(135deg, #ffeef8 0%, #f0e6ff 100%);
  --shadow: 0 10px 40px rgba(233,30,140,0.15);
  --shadow-lg: 0 20px 60px rgba(233,30,140,0.2);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background: #fff;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ---- NAVBAR ---- */
#mainNav {
  background: transparent;
  transition: var(--transition);
  padding: 18px 0;
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
  padding: 10px 0;
}
.navbar-brand { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.brand-heart { font-size: 1.6rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.brand-text { font-size: 1.5rem; font-weight: 800; color: var(--dark); }
.brand-accent { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-link { font-weight: 500; color: var(--dark) !important; padding: 8px 14px !important; border-radius: 8px; transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; background: var(--light-pink); }
#mainNav:not(.scrolled) .nav-link { color: rgba(255,255,255,0.9) !important; }
#mainNav:not(.scrolled) .nav-link:hover { color: #fff !important; background: rgba(255,255,255,0.15); }
#mainNav:not(.scrolled) .brand-text { color: #fff; }
#mainNav:not(.scrolled) .btn-outline-primary { border-color: rgba(255,255,255,0.7); color: #fff !important; }
#mainNav:not(.scrolled) .btn-primary { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }
.btn-primary { background: var(--gradient); border: none; border-radius: 50px; font-weight: 600; transition: var(--transition); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); opacity: 0.9; }
.btn-outline-primary { border-color: var(--primary); color: var(--primary); border-radius: 50px; font-weight: 600; transition: var(--transition); }
.btn-outline-primary:hover { background: var(--gradient); border-color: transparent; color: #fff; transform: translateY(-2px); }

/* ---- HERO ---- */
.hero-section {
  min-height: 100vh;
  background: var(--gradient);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="3" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="20" r="1.5" fill="rgba(255,255,255,0.12)"/></svg>');
  pointer-events: none;
}
.hero-title { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; color: #fff; line-height: 1.15; }
.text-gradient,
.hero-stats .stat-num,
.hero-stats .stat-label {
  background: linear-gradient(135deg, #ffe0f0 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.85); max-width: 500px; line-height: 1.7; }
.hero-badge {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(10px);
  color: #fff; padding: 8px 18px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; border: 1px solid rgba(255,255,255,0.3);
}
.hero-search-box { background: rgba(255,255,255,0.15); backdrop-filter: blur(20px); padding: 20px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.25); }
.hero-select { border-radius: 50px !important; border: none; font-size: 0.9rem; padding: 10px 18px; background: rgba(255,255,255,0.9); }
.btn-hero { border-radius: 50px; background: #fff; color: var(--primary); font-weight: 700; border: none; padding: 10px 28px; transition: var(--transition); }
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); color: var(--primary-dark); }
.hero-stats { gap: 30px !important; }
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ---- HERO CARDS STACK ---- */
.hero-cards-stack { position: relative; height: 480px; display: flex; align-items: center; justify-content: center; }
.floating-card {
  position: absolute; width: 200px;
  background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.floating-card img { width: 100%; height: 160px; object-fit: cover; }
.card-info { padding: 10px 12px 6px; }
.card-info strong { display: block; font-size: 0.9rem; color: var(--dark); }
.card-info span { font-size: 0.75rem; color: var(--text); }
.card-match { padding: 6px 12px 10px; font-size: 0.75rem; font-weight: 600; color: var(--primary); }
.card-match i { color: var(--primary); }
.card-1 { transform: rotate(-8deg) translate(-120px, -20px); z-index: 1; animation: float1 4s ease-in-out infinite; }
.card-2 { transform: rotate(5deg) translate(100px, 30px); z-index: 2; animation: float2 5s ease-in-out infinite; }
.card-3 { transform: rotate(-2deg) translate(-10px, -60px); z-index: 3; animation: float3 3.5s ease-in-out infinite; }
.match-notification {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  background: #fff; padding: 10px 20px; border-radius: 50px;
  box-shadow: var(--shadow); font-size: 0.85rem; font-weight: 600;
  color: var(--dark); white-space: nowrap; z-index: 10;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes float1 { 0%,100%{transform:rotate(-8deg) translate(-120px,-20px)} 50%{transform:rotate(-8deg) translate(-120px,-35px)} }
@keyframes float2 { 0%,100%{transform:rotate(5deg) translate(100px,30px)} 50%{transform:rotate(5deg) translate(100px,15px)} }
@keyframes float3 { 0%,100%{transform:rotate(-2deg) translate(-10px,-60px)} 50%{transform:rotate(-2deg) translate(-10px,-75px)} }
@keyframes pulse { 0%,100%{transform:translateX(-50%) scale(1)} 50%{transform:translateX(-50%) scale(1.05)} }

.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.hero-wave svg { display: block; width: 100%; }

/* ---- SECTIONS ---- */
.section-padding { padding: 90px 0; }
.bg-light-pink { background: var(--light-pink); }
.section-badge {
  display: inline-block; background: var(--gradient);
  color: #fff; padding: 5px 18px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.section-subtitle { font-size: 1.05rem; color: var(--text); max-width: 550px; margin: 0 auto; }

/* ---- HOVER CARD ---- */
.hover-card {
  background: #fff; border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition); cursor: pointer;
  border: 1px solid rgba(233,30,140,0.08);
}
.hover-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(233,30,140,0.2); }

/* ---- STEP CARDS ---- */
.step-card { padding: 40px 30px; border-radius: var(--radius); background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: var(--transition); }
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.step-icon-wrap { position: relative; display: inline-block; }
.step-icon { width: 80px; height: 80px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #fff; margin: 0 auto; }
.step-num { position: absolute; top: -5px; right: -5px; width: 28px; height: 28px; background: var(--dark); color: #fff; border-radius: 50%; font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }

/* ---- PROFILE CARDS ---- */
.profile-card { border-radius: var(--radius); overflow: hidden; background: #fff; }
.profile-img-wrap { position: relative; }
.profile-img { width: 100%; height: 260px; object-fit: cover; display: block; }
.profile-online { position: absolute; top: 14px; right: 14px; width: 14px; height: 14px; background: #22c55e; border-radius: 50%; border: 2px solid #fff; }
.profile-match-badge { position: absolute; bottom: 12px; left: 12px; background: var(--gradient); color: #fff; padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.profile-body { padding: 18px; }
.profile-name { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.profile-location { font-size: 0.85rem; color: var(--text); margin-bottom: 10px; }
.profile-location i { color: var(--primary); }
.interest-tag { display: inline-block; background: var(--light-pink); color: var(--primary); padding: 3px 10px; border-radius: 50px; font-size: 0.72rem; font-weight: 600; margin: 2px; }
.profile-actions { display: flex; justify-content: center; gap: 12px; }
.btn-action { width: 46px; height: 46px; border-radius: 50%; border: 2px solid; display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer; transition: var(--transition); background: #fff; }
.btn-skip { border-color: #ef4444; color: #ef4444; }
.btn-skip:hover { background: #ef4444; color: #fff; transform: scale(1.1); }
.btn-super { border-color: #3b82f6; color: #3b82f6; }
.btn-super:hover { background: #3b82f6; color: #fff; transform: scale(1.1); }
.btn-like { border-color: var(--primary); color: var(--primary); }
.btn-like:hover { background: var(--primary); color: #fff; transform: scale(1.1); }

/* ---- SWIPER ---- */
.profileSwiper { padding: 20px 10px 50px !important; }
.profileSwiper .swiper-pagination-bullet-active { background: var(--primary); }
.profileSwiper .swiper-button-prev, .profileSwiper .swiper-button-next { color: var(--primary); background: #fff; width: 44px; height: 44px; border-radius: 50%; box-shadow: var(--shadow); }
.profileSwiper .swiper-button-prev::after, .profileSwiper .swiper-button-next::after { font-size: 1rem; font-weight: 900; }
.storiesSwiper { padding-bottom: 50px !important; }
.storiesSwiper .swiper-pagination-bullet-active { background: var(--primary); }

/* ---- FEATURE CARDS ---- */
.feature-card { padding: 35px 28px; border-radius: var(--radius); }
.feature-icon { width: 64px; height: 64px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }

/* ---- SWIPE SECTION ---- */
.swipe-section { background: var(--gradient-soft); }
.swipe-demo-wrap { display: flex; flex-direction: column; align-items: center; }
.swipe-card-stack { position: relative; width: 280px; height: 380px; }
.swipe-card { position: absolute; width: 260px; height: 360px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.swipe-card img { width: 100%; height: 100%; object-fit: cover; }
.sc-back { transform: rotate(-6deg) translateY(10px); z-index: 1; opacity: 0.6; }
.sc-mid { transform: rotate(3deg) translateY(5px); z-index: 2; opacity: 0.8; }
.sc-front { z-index: 3; cursor: grab; transition: transform 0.3s ease; }
.sc-front:active { cursor: grabbing; }
.swipe-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,0.7)); color: #fff; }
.swipe-info h4 { font-weight: 700; margin-bottom: 4px; }
.swipe-info p { font-size: 0.85rem; opacity: 0.85; margin: 0; }
.swipe-label { position: absolute; top: 30px; padding: 8px 20px; border-radius: 8px; font-size: 1.2rem; font-weight: 800; letter-spacing: 2px; opacity: 0; transition: opacity 0.2s; border: 3px solid; }
.like-label { left: 20px; color: #22c55e; border-color: #22c55e; transform: rotate(-15deg); }
.nope-label { right: 20px; color: #ef4444; border-color: #ef4444; transform: rotate(15deg); }
.swipe-btn { width: 60px; height: 60px; border-radius: 50%; border: none; font-size: 1.3rem; cursor: pointer; transition: var(--transition); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.btn-nope { background: #fff; color: #ef4444; }
.btn-nope:hover { background: #ef4444; color: #fff; transform: scale(1.1); }
.btn-boost { background: #fff; color: #3b82f6; width: 50px; height: 50px; font-size: 1.1rem; }
.btn-boost:hover { background: #3b82f6; color: #fff; transform: scale(1.1); }
.btn-heart { background: var(--gradient); color: #fff; }
.btn-heart:hover { transform: scale(1.1); box-shadow: var(--shadow); }
.swipe-features-list { list-style: none; padding: 0; }
.swipe-features-list li { padding: 8px 0; font-size: 1rem; color: var(--text); }
.swipe-features-list i { font-size: 1.1rem; }

/* ---- STORY CARDS ---- */
.story-card { background: #fff; border-radius: var(--radius); padding: 35px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); margin: 10px; }
.story-hearts { color: #fbbf24; font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 15px; }
.story-text { font-size: 1rem; color: var(--text); line-height: 1.8; font-style: italic; }
.story-couple { display: flex; align-items: center; gap: 15px; }
.couple-imgs { display: flex; }
.couple-imgs img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.couple-imgs img:last-child { margin-left: -15px; }
.couple-info { display: flex; flex-direction: column; }
.couple-info strong { font-size: 0.95rem; color: var(--dark); }
.couple-info span { font-size: 0.8rem; color: var(--text); }

/* ---- STATS ---- */
.stats-section { background: var(--gradient); }
.counter-card { padding: 30px 20px; }
.counter-icon { font-size: 2.5rem; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.counter-num { font-size: 2.8rem; font-weight: 900; color: #fff; line-height: 1; }
.counter-label { font-size: 0.9rem; color: rgba(255,255,255,0.8); font-weight: 500; margin-top: 6px; }

/* ---- PRICING ---- */
.pricing-card { background: #fff; border-radius: var(--radius); padding: 40px 35px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 2px solid transparent; transition: var(--transition); position: relative; }
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(233,30,140,0.2); }
.pricing-popular { border-color: var(--primary); transform: scale(1.03); box-shadow: var(--shadow-lg); }
.pricing-popular:hover { transform: scale(1.03) translateY(-8px); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gradient); color: #fff; padding: 5px 20px; border-radius: 50px; font-size: 0.78rem; font-weight: 700; white-space: nowrap; }
.pricing-header h5 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.price { font-size: 3rem; font-weight: 900; color: var(--dark); line-height: 1; }
.currency { font-size: 1.5rem; vertical-align: top; margin-top: 8px; display: inline-block; color: var(--primary); }
.period { font-size: 1rem; color: var(--text); font-weight: 400; }
.pricing-features { list-style: none; padding: 0; margin: 25px 0; }
.pricing-features li { padding: 8px 0; font-size: 0.95rem; color: var(--text); border-bottom: 1px solid #f5f5f5; display: flex; align-items: center; gap: 10px; }
.pricing-features li i { color: var(--primary); font-size: 1rem; }
.pricing-features li.disabled { color: #ccc; }
.pricing-features li.disabled i { color: #ddd; }

/* ---- CTA ---- */
.cta-section { background: var(--gradient); padding: 100px 0; }
.cta-hearts { font-size: 2rem; color: rgba(255,255,255,0.5); letter-spacing: 10px; margin-bottom: 20px; }
.cta-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #fff; margin-bottom: 15px; }
.cta-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 500px; margin: 0 auto; }

/* ---- FOOTER ---- */
.footer-section { background: var(--dark); color: rgba(255,255,255,0.7); }
.footer-top { padding: 70px 0 50px; }
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-brand .brand-text { color: #fff; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer-heading { color: #fff; font-weight: 700; font-size: 0.95rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 5px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition); font-size: 1rem; }
.social-links a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.app-btn { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); text-decoration: none; padding: 10px 16px; border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 600; transition: var(--transition); }
.app-btn:hover { background: var(--primary); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; font-size: 0.85rem; }

/* ---- PAGE HEADERS ---- */
.page-hero { background: var(--gradient); padding: 130px 0 70px; color: #fff; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; }
.page-hero p { font-size: 1.1rem; opacity: 0.85; }

/* ---- BROWSE FILTERS ---- */
.filter-card { background: #fff; border-radius: var(--radius); padding: 25px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.filter-card .form-label { font-weight: 600; font-size: 0.85rem; color: var(--dark); }
.form-range::-webkit-slider-thumb { background: var(--primary); }
.form-check-input:checked { background-color: var(--primary); border-color: var(--primary); }

/* ---- AUTH PAGES ---- */
.auth-section { min-height: 100vh; background: var(--gradient-soft); display: flex; align-items: center; padding: 100px 0 50px; }
.auth-card { background: #fff; border-radius: var(--radius); padding: 50px 45px; box-shadow: var(--shadow-lg); max-width: 480px; width: 100%; margin: 0 auto; }
.auth-title { font-size: 1.8rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.auth-subtitle { color: var(--text); margin-bottom: 30px; }
.form-control { border-radius: var(--radius-sm); border: 2px solid #f0f0f0; padding: 12px 16px; font-size: 0.95rem; transition: var(--transition); }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(233,30,140,0.1); }
.input-group-text { border-radius: var(--radius-sm) 0 0 var(--radius-sm); border: 2px solid #f0f0f0; border-right: none; background: #fafafa; color: var(--primary); }
.input-group .form-control { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; border-left: none; }
.divider { display: flex; align-items: center; gap: 15px; color: var(--text); font-size: 0.85rem; margin: 20px 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: #eee; }
.social-auth-btn { border: 2px solid #eee; border-radius: var(--radius-sm); padding: 12px; font-weight: 600; font-size: 0.9rem; transition: var(--transition); background: #fff; color: var(--dark); }
.social-auth-btn:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

/* ---- MATCH ANIMATION ---- */
@keyframes heartBeat { 0%,100%{transform:scale(1)} 14%{transform:scale(1.3)} 28%{transform:scale(1)} 42%{transform:scale(1.3)} 70%{transform:scale(1)} }
.heart-beat { animation: heartBeat 1.3s ease-in-out infinite; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero-search-box form { flex-direction: column; }
  .hero-select, .btn-hero { width: 100%; }
  .hero-stats { gap: 20px !important; }
  .auth-card { padding: 35px 25px; }
  .pricing-popular { transform: scale(1); }
}
/* ---- REGISTER STEPS ---- */
.reg-step { display:flex; flex-direction:column; align-items:center; gap:4px; }
.reg-step span { width:36px; height:36px; border-radius:50%; border:2px solid #ddd; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:0.9rem; color:#aaa; }
.reg-step small { font-size:0.72rem; color:#aaa; font-weight:600; }
.reg-step.active span { background:var(--gradient); border-color:transparent; color:#fff; }
.reg-step.active small { color:var(--primary); }
.reg-step-line { flex:1; height:2px; background:#eee; align-self:center; min-width:40px; }

/* ---- PRICING ACCORDION ---- */
.accordion-button:not(.collapsed) { background:var(--light-pink); color:var(--primary); box-shadow:none; }
.accordion-button:focus { box-shadow:none; }
.accordion-item { background:#fff; border-radius:var(--radius-sm) !important; overflow:hidden; box-shadow:0 2px 10px rgba(0,0,0,0.04); }

/* ---- BILLING TOGGLE ---- */
.billing-toggle { border:2px solid #eee; }
#billingToggle:checked { background-color:var(--primary); border-color:var(--primary); }

/* ---- FEATURE VISUAL ---- */
.feature-visual { transition:var(--transition); }
.feature-visual:hover { transform:scale(1.02); }

/* ---- PAGE HERO (subpages) ---- */
.page-hero { background:var(--gradient); padding:140px 0 80px; color:#fff; text-align:center; position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
