/* ── Design tokens ───────────────────────────────────── */
:root {
  --yellow: #fdc;
  --yellow: #FFD43B;
  --yellow-light: #fff3bf;
  --yellow-soft: #fffbea;
  --black: #0d0d0d;
  --bg: #ffffff;
  --text: #111111;
  --muted: #6b7280;
  --border: #e5e7eb;
  --card-bg: #fafafa;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 12px 32px rgba(0,0,0,.05);
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* ── Navbar ──────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  flex-shrink: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.brand strong { font-weight: 800; }

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--black);
  background: var(--yellow-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  background: var(--yellow);
  color: var(--black);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-nav {
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 800;
  background: var(--yellow);
  box-shadow: 0 2px 8px rgba(253,196,28,0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text);
}

.btn-outline:hover {
  background: var(--yellow-soft);
  border-color: var(--yellow);
}

.btn-lg {
  padding: 16px 34px;
  font-size: 17px;
  border-radius: var(--radius-lg);
}

/* ── Language switch ─────────────────────────────────── */
.lang-switch {
  display: flex;
  gap: 4px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 3px;
}

.lang-btn {
  border: none;
  background: transparent;
  border-radius: 7px;
  padding: 5px 11px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  color: var(--muted);
  font-family: inherit;
  transition: all var(--transition);
}

.lang-btn.active {
  background: var(--yellow);
  color: var(--black);
}

/* ── Hamburger ───────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--border);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}

.mobile-menu .btn {
  margin-top: 6px;
  text-align: center;
}

/* ── Flash messages ──────────────────────────────────── */
.flash-wrap { padding-top: 20px; }

.flash {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  font-weight: 500;
}

.flash.success { background: #ecfdf5; border: 1px solid #6ee7b7; color: #065f46; }
.flash.error   { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }

/* ── Section spacing ─────────────────────────────────── */
.section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

.section-header {
  margin-bottom: 48px;
}

.section-header h1,
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.section-header p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 18px;
  max-width: 560px;
}

/* ── Cards ───────────────────────────────────────────── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--yellow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ── Grid ────────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* ── Hero ────────────────────────────────────────────── */
.hero-section {
  padding: 72px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--yellow-light);
  border: 1px solid #ffe066;
  font-size: 13px;
  font-weight: 700;
  color: #7c5700;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.hero-title span {
  color: #c8900a;
  display: inline;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-item strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.stat-item span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 560px;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-chip {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chip-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px #dcfce7;
}

.chip-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.chip-text span {
  font-size: 13px;
  color: var(--muted);
}

/* ── Subject / Course cards ──────────────────────────── */
.subject-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.subject-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.subject-card .card-icon { margin-bottom: 0; }

.subject-card h3 {
  font-size: 18px;
  font-weight: 700;
}

.subject-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  margin-top: 4px;
  transition: gap var(--transition);
}

.card-cta:hover { gap: 8px; }

/* ── Testimonials ────────────────────────────────────── */
.quote-mark {
  font-size: 40px;
  line-height: 1;
  color: var(--yellow);
  font-weight: 900;
  margin-bottom: 8px;
}

.quote-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
}

.quote-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

/* ── Info strip (3 cards) ────────────────────────────── */
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Final CTA strip ─────────────────────────────────── */
.cta-strip {
  background: var(--yellow-soft);
  border: 1px solid #ffe066;
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-strip h2 {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  max-width: 480px;
  line-height: 1.2;
}

.cta-strip p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
  max-width: 440px;
}

/* ── Apply page ──────────────────────────────────────── */
.apply-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.apply-info h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.apply-info p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 32px;
}

.apply-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.apply-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--yellow);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-body strong {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 3px;
}

.step-body span {
  font-size: 14px;
  color: var(--muted);
}

.apply-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(253,196,28,0.18);
}

.form-field textarea { resize: vertical; min-height: 100px; }

.check-section-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.check-hint {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 400;
}

.check-grid {
  display: grid;
  gap: 9px;
}

.check-scroll {
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--yellow) #f3f4f6;
}

.check-scroll::-webkit-scrollbar { width: 5px; }
.check-scroll::-webkit-scrollbar-track { background: #f3f4f6; border-radius: 99px; }
.check-scroll::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 99px; }

/* ── Price boxes ─────────────────────────────────────── */
.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.price-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--yellow-soft);
  border: 1.5px solid #ffe066;
  border-radius: var(--radius-md);
  padding: 16px;
}

.price-box-alt {
  background: #f0fdf4;
  border-color: #86efac;
}

.price-type {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-amount {
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.price-sub {
  font-size: 13px;
  color: var(--muted);
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  font-size: 15px;
  font-weight: 500;
}

.check-item:has(input:checked) {
  border-color: var(--yellow);
  background: var(--yellow-soft);
}

.check-item input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--yellow);
  cursor: pointer;
  flex-shrink: 0;
}

.check-item input:disabled + span {
  opacity: 0.4;
}

.check-item:has(input:disabled) {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ── Footer ──────────────────────────────────────────── */
.footer {
  background: #0d0d0d;
  color: #e5e7eb;
  padding: 56px 0 0;
  margin-top: 80px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  width: min(1100px, 92%);
  margin: 0 auto;
  padding-bottom: 48px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 12px;
}

.footer-brand p {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
  max-width: 260px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong,
.footer-contact strong {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #6b7280;
  margin-bottom: 4px;
}

.footer-links a,
.footer-contact a {
  color: #9ca3af;
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--yellow);
}

.footer-copy {
  border-top: 1px solid #1f2937;
  padding: 18px 0;
  text-align: center;
  color: #4b5563;
  font-size: 13px;
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* ── Subject grid (clickable big cards) ─────────────── */
.subject-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.subject-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: var(--radius-lg);
}

.subject-card-big {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition), background var(--transition);
  height: 100%;
}

.subject-card-link:hover .subject-card-big {
  border-color: var(--yellow);
  box-shadow: 0 8px 32px rgba(253,196,28,0.18), var(--shadow-md);
  transform: translateY(-4px);
  background: var(--yellow-soft);
}

.scb-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.scb-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--yellow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: background var(--transition);
}

.subject-card-link:hover .scb-icon {
  background: var(--yellow);
}

.scb-arrow {
  font-size: 22px;
  color: var(--muted);
  transition: transform var(--transition), color var(--transition);
}

.subject-card-link:hover .scb-arrow {
  transform: translateX(4px);
  color: var(--text);
}

.subject-card-big h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}

.subject-card-big p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.scb-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ── Pills ───────────────────────────────────────────── */
.pill {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--yellow-light);
  border: 1px solid #ffe066;
  font-size: 13px;
  font-weight: 600;
  color: #7c5700;
}

.pill-lg {
  padding: 7px 16px;
  font-size: 14px;
}

/* ── Subject detail page ─────────────────────────────── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 28px;
  transition: color var(--transition);
}

.back-link:hover { color: var(--text); }

.sd-hero {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 8px;
}

.sd-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  background: var(--yellow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.sd-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  background: var(--card-bg);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.sd-input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(253,196,28,0.18);
}

/* ── Subject detail stats ────────────────────────────── */
.detail-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.detail-stat {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}

.detail-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.detail-stat span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.detail-stat small {
  display: block;
  font-size: 12px;
  color: #9ca3af;
  margin-top: 2px;
}

.detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
}

.dl-icon {
  flex-shrink: 0;
  font-size: 16px;
  margin-top: 1px;
  color: var(--muted);
  width: 20px;
}

.kol-card {
  display: flex;
  align-items: center;
  gap: 20px;
}

.kol-num {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  color: #c8900a;
  flex-shrink: 0;
}

/* ── Hero inline form ────────────────────────────────── */
.hero-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.hero-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-form input,
.hero-form select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  background: var(--card-bg);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.hero-form input:focus,
.hero-form select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(253,196,28,0.18);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .detail-stats  { grid-template-columns: 1fr 1fr; }
  .subject-grid  { grid-template-columns: 1fr; }

  .hero-grid,
  .apply-wrap {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    aspect-ratio: 16/9;
    max-height: 340px;
    order: -1;
  }

  .grid-3,
  .info-strip {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand { grid-column: 1 / -1; }

  .cta-strip {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
  }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }

  .nav-links { display: none; }
  .btn-nav   { display: none; }
  .hamburger { display: flex; }

  .hero-form-row { grid-template-columns: 1fr; }
  .detail-stats  { grid-template-columns: 1fr 1fr; }
  .kol-card      { flex-direction: column; align-items: flex-start; gap: 8px; }
  .sd-hero       { flex-direction: column; }

  .hero-section { padding: 40px 0 48px; }
  .hero-stats   { gap: 20px; }

  .grid-3,
  .grid-2,
  .info-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .btn-lg {
    width: 100%;
    text-align: center;
  }
}
