/* =============================================
   센스맘 운전연수 - Modern Redesign 2026
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');

:root {
  --primary: #1b3d7a;
  --primary-dark: #122a58;
  --accent: #e8527a;
  --accent-light: #ff8fab;
  --bg: #f7f8fc;
  --white: #ffffff;
  --text: #1e293b;
  --text-light: #64748b;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s 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: 'Noto Sans KR', sans-serif; color: var(--text); background: var(--bg); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.navbar-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.3rem; font-weight: 700; color: var(--primary);
}
.navbar-logo img { height: 40px; width: auto; border-radius: 6px; }
.navbar-logo .logo-accent { color: var(--accent); }
.navbar-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.navbar-menu a {
  padding: 8px 16px; border-radius: 8px;
  font-size: 0.95rem; font-weight: 500; color: var(--text-light);
  transition: var(--transition);
}
.navbar-menu a:hover, .navbar-menu .active a {
  background: var(--bg); color: var(--primary); font-weight: 700;
}
.navbar-cta {
  background: var(--accent) !important; color: var(--white) !important;
  padding: 10px 20px !important; border-radius: 30px !important;
  font-weight: 700 !important;
}
.navbar-cta:hover { background: #d63a63 !important; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(232,82,122,0.4) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.mobile-menu {
  display: none; position: absolute; top: 70px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 16px 24px; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px; border-radius: 10px;
  font-size: 1rem; font-weight: 500; color: var(--text);
  transition: var(--transition); border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { background: var(--bg); color: var(--accent); }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  background: url('images/drivegirl1.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,61,122,0.85) 0%, rgba(232,82,122,0.45) 100%);
}
.hero-content {
  position: relative; text-align: center; color: var(--white);
  padding: 0 24px; max-width: 800px;
  animation: fadeInUp 1s ease-out;
}
.hero-badge {
  display: inline-block; background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 6px 18px; border-radius: 30px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 2px;
  margin-bottom: 20px; backdrop-filter: blur(10px);
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 900;
  line-height: 1.25; margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 .highlight { color: var(--accent-light); }
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem); font-weight: 300;
  opacity: 0.9; margin-bottom: 36px; line-height: 1.9;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--white);
  padding: 16px 32px; border-radius: 50px;
  font-size: 1.05rem; font-weight: 700;
  transition: var(--transition); box-shadow: 0 4px 20px rgba(232,82,122,0.5);
}
.btn-primary:hover { background: #d63a63; transform: translateY(-3px); box-shadow: 0 8px 30px rgba(232,82,122,0.6); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); color: var(--white);
  padding: 16px 32px; border-radius: 50px;
  font-size: 1.05rem; font-weight: 700; border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition); backdrop-filter: blur(10px);
}
.btn-outline:hover { background: rgba(255,255,255,0.28); transform: translateY(-3px); }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.65); font-size: 0.78rem; text-align: center;
  animation: bounce 2s infinite;
}
.hero-scroll::before {
  content: ''; display: block; width: 1px; height: 40px;
  background: rgba(255,255,255,0.45); margin: 0 auto 8px;
}

/* ===== SECTIONS ===== */
section { padding: 90px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; background: rgba(232,82,122,0.1); color: var(--accent);
  padding: 4px 14px; border-radius: 20px; font-size: 0.78rem;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900;
  color: var(--primary); line-height: 1.3; margin-bottom: 16px;
}
.section-desc { font-size: 1.05rem; color: var(--text-light); max-width: 580px; margin: 0 auto; line-height: 1.8; }

/* ===== FEATURES ===== */
.features { background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px 32px; text-align: center;
  border: 1px solid var(--border); transition: var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 72px; height: 72px; border-radius: 20px; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 8px 20px rgba(232,82,122,0.3);
}
.feature-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; color: var(--primary); }
.feature-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.85; }

/* ===== STATS ===== */
.stats { background: linear-gradient(135deg, var(--primary) 0%, #2d5be3 100%); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; color: var(--white); padding: 20px 0; }
.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 900;
  line-height: 1; margin-bottom: 8px;
  background: linear-gradient(135deg, #fff, var(--accent-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.95rem; opacity: 0.85; font-weight: 500; }

/* ===== CURRICULUM ===== */
.curriculum { background: var(--bg); }
.curriculum-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.curriculum-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.curriculum-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.curriculum-img { height: 220px; overflow: hidden; position: relative; }
.curriculum-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.curriculum-card:hover .curriculum-img img { transform: scale(1.08); }
.curriculum-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--accent); color: var(--white);
  padding: 6px 16px; border-radius: 20px; font-size: 0.82rem; font-weight: 700;
}
.curriculum-body { padding: 28px; }
.curriculum-body h3 { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.curriculum-subtitle { font-size: 0.85rem; color: var(--accent); font-weight: 600; margin-bottom: 20px; }
.curriculum-days { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.curriculum-days li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.88rem; line-height: 1.6; }
.day-label {
  flex-shrink: 0; background: var(--primary); color: var(--white);
  padding: 2px 10px; border-radius: 12px; font-size: 0.72rem; font-weight: 700;
  margin-top: 3px; white-space: nowrap;
}
.curriculum-cta {
  display: block; margin-top: 24px; text-align: center;
  background: var(--primary); color: var(--white);
  padding: 13px; border-radius: 10px; font-weight: 700;
  transition: var(--transition); font-size: 0.95rem;
}
.curriculum-cta:hover { background: var(--accent); }

/* ===== ABOUT SECTION (HOME) ===== */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; border-radius: var(--radius); object-fit: cover; height: 500px; box-shadow: var(--shadow-lg); }
.about-image-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--accent); color: var(--white);
  padding: 24px 28px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow);
}
.about-image-badge strong { display: block; font-size: 2.2rem; font-weight: 900; }
.about-image-badge span { font-size: 0.82rem; opacity: 0.9; }
.about-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 900; color: var(--primary); margin-bottom: 16px; line-height: 1.3; }
.about-content > p { color: var(--text-light); line-height: 1.9; margin-bottom: 32px; font-size: 1rem; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.about-feature {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: var(--bg); border-radius: var(--radius-sm);
}
.about-feature-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.about-feature h4 { font-weight: 700; color: var(--primary); margin-bottom: 4px; font-size: 0.95rem; }
.about-feature p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }
.btn-accent {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--white);
  padding: 14px 28px; border-radius: 50px;
  font-size: 1rem; font-weight: 700; transition: var(--transition);
  box-shadow: 0 4px 15px rgba(232,82,122,0.35);
}
.btn-accent:hover { background: #d63a63; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,82,122,0.5); }

/* ===== REVIEWS ===== */
.reviews { background: var(--bg); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.review-stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-text { color: var(--text); line-height: 1.85; font-size: 0.93rem; margin-bottom: 24px; }
.review-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 20px; flex-wrap: wrap; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 0.95rem; flex-shrink: 0;
}
.review-name { font-weight: 700; color: var(--primary); font-size: 0.92rem; }
.review-location { font-size: 0.78rem; color: var(--text-light); }
.review-date { font-size: 0.78rem; color: var(--text-light); margin-left: auto; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #c13560 100%);
  padding: 80px 24px; text-align: center;
}
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 36px; line-height: 1.8; }
.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--accent);
  padding: 18px 40px; border-radius: 50px;
  font-size: 1.2rem; font-weight: 900; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-white:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }

/* ===== FOOTER ===== */
footer {
  background: var(--primary-dark); color: rgba(255,255,255,0.78);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 32px; margin-bottom: 24px;
}
.footer-logo { font-size: 1.3rem; font-weight: 700; color: var(--white); }
.footer-logo .logo-accent { color: var(--accent-light); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 0.9rem; opacity: 0.7; transition: var(--transition); }
.footer-links a:hover { opacity: 1; color: var(--accent-light); }
.footer-contact { text-align: right; }
.footer-contact .phone { font-size: 1.5rem; font-weight: 900; color: var(--white); display: block; letter-spacing: 1px; }
.footer-contact .phone-label { font-size: 0.78rem; opacity: 0.6; }
.footer-copy { max-width: 1200px; margin: 0 auto; text-align: center; font-size: 0.82rem; opacity: 0.45; }

/* ===== FLOATING CALL BUTTON ===== */
.float-call {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 4px 20px rgba(232,82,122,0.5);
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}
.float-call:hover { transform: scale(1.15); box-shadow: 0 8px 30px rgba(232,82,122,0.7); animation: none; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding-top: 70px; background: linear-gradient(135deg, var(--primary) 0%, #2d5be3 100%);
  padding-bottom: 60px; text-align: center; color: var(--white);
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; margin-bottom: 12px; margin-top: 48px; }
.page-hero p { font-size: 1.05rem; opacity: 0.85; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; align-items: center; margin-top: 16px; font-size: 0.82rem; opacity: 0.7; }
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }

/* ===== ABOUT PAGE BLOCKS ===== */
.about-blocks-section { background: var(--white); }
.about-blocks { display: flex; flex-direction: column; gap: 36px; }
.about-block {
  display: flex; gap: 40px; align-items: center;
  background: var(--bg); border-radius: var(--radius); padding: 40px;
  transition: var(--transition);
}
.about-block:hover { box-shadow: var(--shadow); background: var(--white); }
.about-block img { width: 280px; flex-shrink: 0; height: 200px; object-fit: cover; border-radius: var(--radius-sm); }
.about-block-content h3 { font-size: 1.35rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.about-block-content p { color: var(--text-light); line-height: 1.9; margin-bottom: 20px; font-size: 0.96rem; }
.link-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent); font-weight: 700; font-size: 1.15rem;
  transition: var(--transition);
}
.link-phone:hover { color: var(--primary); }

/* ===== BLOG PAGE ===== */
.blog-section { background: var(--white); }
.blog-list { display: flex; flex-direction: column; gap: 40px; }
.blog-card {
  background: var(--bg); border-radius: var(--radius); overflow: hidden;
  transition: var(--transition); display: flex;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); background: var(--white); }
.blog-card-img { width: 320px; flex-shrink: 0; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 36px; flex: 1; }
.blog-date-box { display: flex; align-items: baseline; gap: 6px; margin-bottom: 16px; }
.blog-date-day { font-size: 2.8rem; font-weight: 900; color: var(--primary); line-height: 1; }
.blog-date-month { font-size: 1rem; font-weight: 600; color: var(--accent); }
.blog-card-body h3 { font-size: 1.3rem; font-weight: 700; color: var(--primary); margin-bottom: 14px; }
.blog-card-body p { color: var(--text-light); line-height: 1.9; font-size: 0.95rem; }
.blog-author-row { display: flex; align-items: center; gap: 10px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.blog-author-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
}
.blog-author-name { font-size: 0.9rem; font-weight: 600; color: var(--text-light); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(232,82,122,0.5); }
  50% { box-shadow: 0 4px 30px rgba(232,82,122,0.8), 0 0 0 10px rgba(232,82,122,0.08); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .curriculum-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image img { height: 360px; }
  .about-image-badge { right: 0; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card { flex-direction: column; }
  .blog-card-img { width: 100%; height: 260px; }
  .about-block { flex-direction: column; }
  .about-block img { width: 100%; height: 220px; }
}
@media (max-width: 768px) {
  section { padding: 60px 20px; }
  .navbar-menu { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .curriculum-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-contact { text-align: center; }
  .float-call { bottom: 20px; right: 20px; width: 54px; height: 54px; font-size: 1.3rem; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}

/* ===== SPLIT HERO ===== */
.hero-split {
  min-height: 100vh;
  padding-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, #0f2550 0%, #1b3d7a 60%, #2d5be3 100%);
  overflow: hidden;
}
.hero-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px 80px;
  color: #fff;
  animation: fadeInUp 0.9s ease-out;
}
.hero-split-content .hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 28px;
  width: fit-content;
  backdrop-filter: blur(10px);
}
.hero-split-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.22;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-split-content h1 .highlight {
  color: #ff8fab;
}
.hero-split-content p {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.88;
  margin-bottom: 36px;
  line-height: 1.9;
}
.hero-split-content .hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-tags span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.hero-split-image {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.hero-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 8s ease;
}
.hero-split-image:hover img {
  transform: scale(1.04);
}
.hero-split-image::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 80px;
  background: linear-gradient(to right, #1b3d7a, transparent);
  z-index: 1;
}
.hero-image-badge {
  position: absolute;
  bottom: 36px;
  left: 36px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  padding: 16px 22px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  z-index: 2;
  text-align: center;
}
.hero-image-badge strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: #1b3d7a;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-image-badge span {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-split-content {
    padding: 60px 32px 40px;
    order: 2;
  }
  .hero-split-image {
    order: 1;
    height: 320px;
  }
  .hero-split-image::before { display: none; }
  .hero-image-badge { bottom: 20px; left: 20px; }
}
@media (max-width: 480px) {
  .hero-split-content { padding: 48px 24px 36px; }
  .hero-split-content .hero-buttons { flex-direction: column; }
  .hero-split-content .hero-buttons a { justify-content: center; }
}
