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

:root {
  /* Brand Colors - STRICT 2-COLOR CORE */
  --green: #1a4d3a;
  --green-hover: #133a2b;
  --green-light: rgba(26, 77, 58, 0.08); /* 8% opacity of brand green */
  --white: #ffffff;
  --bg: #f8fafc; /* Very subtle off-white for contrast against white plates */
  
  /* Text Colors */
  --text: #1e293b;
  --text-mid: #475569;
  --text-muted: #64748b;
  
  /* Utilities */
  --border: rgba(0, 0, 0, 0.08);
  --border-green: rgba(26, 77, 58, 0.15);
  
  /* Typography */
  --font-en: 'Inter', system-ui, sans-serif;
  --font-bn: 'Noto Sans Bengali', system-ui, sans-serif;
  
  /* Border Radius - Very Round */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-pill: 9999px;
  
  /* Shadows - Smooth & Modern */
  --shadow-sm: 0 2px 8px -2px rgba(0, 0, 0, 0.05), 0 4px 12px -4px rgba(0,0,0,0.02);
  --shadow-md: 0 4px 16px -4px rgba(0, 0, 0, 0.08), 0 8px 24px -8px rgba(0,0,0,0.03);
  --shadow-lg: 0 12px 32px -8px rgba(0, 0, 0, 0.12), 0 16px 48px -16px rgba(0,0,0,0.04);
}

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

body {
  font-family: var(--font-bn);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography Utilities */
.en { font-family: var(--font-en); }
.bn { font-family: var(--font-bn); }
a { text-decoration: none; color: inherit; }
.text-center { text-align: center; }

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-family: var(--font-bn);
}
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 17px; }

.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(26, 77, 58, 0.2);
}
.btn-green:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 77, 58, 0.3);
}

.btn-white {
  background: var(--white);
  color: var(--green);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green);
}

/* ─── Top Bar ─── */
.top-bar {
  background: var(--green);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.top-contact { display: flex; gap: 20px; align-items: center; }
.top-contact span { display: flex; align-items: center; gap: 6px; }
.top-right { display: flex; align-items: center; gap: 16px; }
.top-socials { display: flex; gap: 12px; }
.top-socials a { color: rgba(255,255,255,0.8); transition: color 0.2s; display: flex; align-items: center; }
.top-socials a:hover { color: #fff; }
.top-divider { color: rgba(255,255,255,0.3); }

/* ─── Main Header ─── */
.main-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border);
}
.main-header.shadow {
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}
.header-inner {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  font-family: sans-serif;
  box-shadow: 0 4px 10px rgba(26,77,58,0.2);
}
.logo-text-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--green);
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.logo-text-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Desktop Nav */
.main-nav {
  display: flex;
  gap: 8px;
  align-items: center;
}
.main-nav > a, .nav-dropdown > a {
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  border-radius: var(--r-pill);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav > a:hover, .nav-dropdown > a:hover, .main-nav > a.active {
  background: var(--green-light);
  color: var(--green);
}
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  padding: 12px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(8px) scale(1);
}
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-md);
  transition: 0.2s;
}
.dropdown-menu a:hover {
  background: var(--green-light);
  color: var(--green);
  transform: translateX(4px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--white);
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  z-index: 999;
  padding: 80px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open { right: 0; }
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--bg);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  color: var(--text);
}
.mobile-nav a {
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  border-radius: var(--r-md);
  background: var(--bg);
}
.mobile-nav a.active {
  background: var(--green-light);
  color: var(--green);
}

/* ─── Section Shared ─── */
.section { padding: 100px 0; }
.section-alt { background: var(--bg); }
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--green-light);
  color: var(--green);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-title {
  font-size: 40px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 600px;
}

/* ─── Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Bento Plate Cards ─── */
.plate {
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.plate:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--border-green);
}

/* ─── Hero Section ─── */
.hero {
  position: relative;
  padding: 120px 0;
  background: var(--green);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero-content p {
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 32px;
}
.h-stat h4 { font-size: 32px; font-weight: 900; color: #fff; margin-bottom: 4px; font-family: var(--font-en); }
.h-stat p { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }

/* ─── Hero Graphic Box ─── */
.hero-visual {
  position: relative;
}
.glass-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-2xl);
  padding: 40px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  transition: transform 0.4s ease;
}
.glass-card:hover {
  transform: rotate(0deg) scale(1.02);
}
.glass-card img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.float-badge {
  position: absolute;
  background: var(--white);
  color: var(--green);
  padding: 12px 24px;
  border-radius: var(--r-pill);
  font-weight: 800;
  font-size: 15px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 6s ease-in-out infinite;
}
.fb-1 { top: -20px; left: -30px; animation-delay: 0s; }
.fb-2 { bottom: 40px; right: -20px; animation-delay: -3s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ─── Page Hero (Inner Pages) ─── */
.page-hero {
  background: var(--green);
  padding: 80px 0 60px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero h2 { font-size: 42px; font-weight: 900; margin-bottom: 16px; letter-spacing: -1px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,.8); margin-bottom: 24px; max-width: 600px; margin-inline: auto; }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  padding: 8px 24px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
}
.breadcrumb a { color: #fff; transition: opacity .2s; }
.breadcrumb a:hover { opacity: .8; }
.breadcrumb span { color: rgba(255,255,255,.5); }

/* ─── Courses Section ─── */
.course-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.course-img {
  height: 200px;
  background-color: var(--bg);
  border-radius: var(--r-lg);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.course-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.plate:hover .course-img img { transform: scale(1.05); }
.course-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--white);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}
.course-body { flex: 1; display: flex; flex-direction: column; }
.course-title { font-size: 22px; font-weight: 900; margin-bottom: 12px; line-height: 1.3; color: var(--text); }
.course-meta { display: flex; gap: 16px; font-size: 13px; color: var(--text-muted); margin-bottom: 20px; font-weight: 600; }
.course-meta span { display: flex; align-items: center; gap: 6px; }
.course-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.course-price { font-size: 20px; font-weight: 900; color: var(--green); font-family: var(--font-en); }

/* ─── Features (Bento Style) ─── */
.feature-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 24px;
}
.bento-box {
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: 40px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.bento-large { grid-column: span 2; background: var(--green); color: #fff; }
.bento-icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.bento-large .bento-icon { background: rgba(255,255,255,0.1); color: #fff; }
.bento-box h3 { font-size: 24px; font-weight: 900; margin-bottom: 12px; }
.bento-box p { color: var(--text-mid); font-size: 15px; }
.bento-large p { color: rgba(255,255,255,0.8); }

/* ─── Stats Band ─── */
.stats-band {
  background: var(--green);
  border-radius: var(--r-2xl);
  padding: 64px 48px;
  color: #fff;
  display: flex;
  justify-content: space-around;
  text-align: center;
  box-shadow: var(--shadow-lg);
  margin: -60px auto 100px;
  max-width: 1100px;
  position: relative;
  z-index: 10;
}
.stat-item h3 { font-size: 48px; font-weight: 900; font-family: var(--font-en); margin-bottom: 8px; }
.stat-item p { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.8); }

/* ─── Forms & Inputs ─── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  transition: all 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--green-light);
}

/* ─── Info Cards (Contact) ─── */
.info-card {
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: 32px;
  border: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.info-icon {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-body h4 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.info-body p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ─── CTA Strip ─── */
.cta-strip {
  background: var(--green);
  border-radius: var(--r-2xl);
  padding: 80px 60px;
  margin: 60px 24px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-lg);
  max-width: 1192px;
}
.cta-strip h2 { font-size: 36px; font-weight: 900; margin-bottom: 12px; letter-spacing: -1px; }
.cta-strip p { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 500px; }
.cta-btns { display: flex; gap: 16px; }

/* ─── Gallery ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  align-items: start;
}
.gallery-item {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,77,58,0.9), rgba(26,77,58,0));
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-weight: 800; font-size: 16px; transform: translateY(10px); transition: 0.3s; }
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

/* ─── Footer ─── */
.footer {
  background: var(--green);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 80px 0 32px;
  color: rgba(255, 255, 255, 0.8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
  max-width: 300px;
  font-size: 15px;
}
.footer h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer ul a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 600;
}

/* ─── Modals ─── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; visibility: hidden; transition: 0.3s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--white); border-radius: var(--r-2xl); width: 100%; max-width: 440px;
  padding: 40px; text-align: center; box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.95); transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-icon { font-size: 48px; margin-bottom: 16px; }
.modal-box h3 { font-size: 24px; font-weight: 900; margin-bottom: 12px; }
.modal-box p { color: var(--text-mid); margin-bottom: 24px; }
.modal-actions { display: flex; flex-direction: column; gap: 12px; }

/* ─── Teacher Cards ─── */
.teacher-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.teacher-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--border-green);
}
.teacher-avatar {
  width: 72px;
  height: 72px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  margin: 0 auto 16px;
  font-family: var(--font-bn);
}
.teacher-card h4 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.teacher-card .role { font-size: 13px; color: var(--green); font-weight: 700; margin-bottom: 4px; }
.teacher-card .dept { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* ─── Bento Meta Items ─── */
.bento-meta-item {
  background: var(--bg);
  border-radius: var(--r-md);
  padding: 16px 20px;
  border: 1px solid var(--border);
}
.bento-meta-item h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.bento-meta-item p {
  font-size: 16px;
  font-weight: 800;
  color: var(--green);
  font-family: var(--font-en);
}

/* ─── Bento Card (Steps) ─── */
.bento-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: all 0.3s ease;
}
.bento-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--border-green);
}
.bento-card h3 { font-size: 18px; font-weight: 800; color: var(--text); }
.bento-card p { font-size: 14px; color: var(--text-muted); }

/* ─── Gap Stack (Mission list) ─── */
.gap-stack { display: flex; flex-direction: column; gap: 16px; }

/* ─── Verify Row ─── */
.verify-row {
  display: flex;
  gap: 12px;
  align-items: center;
}
.verify-row input { flex: 1; }

/* ─── CTA strip auto margins ─── */
.cta-strip { max-width: calc(1240px - 48px); margin: 0 auto 100px; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content p { margin: 0 auto 40px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .glass-card { transform: rotate(0); max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-strip { flex-direction: column; text-align: center; gap: 32px; padding: 60px 40px; }
}
@media (max-width: 768px) {
  .top-right { display: none; }
  .main-nav, .nav-cta { display: none; }
  .mobile-toggle { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .feature-bento { grid-template-columns: 1fr; }
  .bento-large { grid-column: span 1; }
  .stats-band { flex-direction: column; gap: 40px; padding: 48px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .section-title { font-size: 32px; }
  .hero-content h1 { font-size: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .float-badge { display: none; }
  /* Inline grid overrides for pages using style="" grids */
  [style*="grid-template-columns: 1fr 380px"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1.1fr"],
  [style*="grid-template-columns: 2fr 1fr"],
  [style*="grid-template-columns: 1.1fr 0.9fr"] {
    grid-template-columns: 1fr !important;
  }
  .verify-row { flex-direction: column; }
  .verify-row button { width: 100%; justify-content: center; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-btns .btn { justify-content: center; }
  .section { padding: 60px 0; }
  .cta-strip { padding: 48px 24px; margin: 0 16px 60px; }
  .plate { padding: 24px; }
  .info-card { flex-direction: column; }
  .bento-card { padding: 24px 20px; }
  .top-contact span:last-child { display: none; }
}

