/* =============================================
   APPN Website — Global Styles
   Association of Private Polytechnics in Nigeria
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  --green:        #1A6B2F;
  --green-dark:   #124d22;
  --green-light:  #2a8a42;
  --blue:         #1A5276;
  --blue-dark:    #123b54;
  --blue-light:   #2471a3;
  --red:          #C0392B;
  --red-dark:     #922b21;
  --gold:         #D4AC0D;
  --gold-dark:    #a88509;
  --gold-light:   #f0c930;
  --footer-bg:    #0b1e10;
  --dark:         #1A1A1A;
  --gray-800:     #2d2d2d;
  --gray-600:     #555555;
  --gray-400:     #888888;
  --gray-200:     #dddddd;
  --gray-100:     #f0f0f0;
  --bg:           #F8F9FA;
  --white:        #ffffff;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:    0 6px 28px rgba(0,0,0,0.13);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.18);
  --shadow-gold:  0 8px 28px rgba(212,172,13,0.30);
  --shadow-green: 0 8px 28px rgba(26,107,47,0.40);
  --radius:       8px;
  --radius-lg:    18px;
  --transition:   0.3s ease;
  --font-head:    'Merriweather', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.3;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.5rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--gray-600); line-height: 1.8; }

/* ---- Utility Classes ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad { padding: 6.5rem 0; }
.section-pad-sm { padding: 3.5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p  { max-width: 640px; margin: 0 auto; font-size: 1.08rem; line-height: 1.8; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(26, 107, 47, 0.08);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.divider {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 1.1rem auto 0;
  position: relative;
}
.divider::after {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 36px; height: 3px;
  background: linear-gradient(90deg, var(--green), transparent);
  border-radius: 2px;
  opacity: 0.5;
}
.divider-left { margin-left: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  color: var(--white);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-green); }
.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.18);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-blue {
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  color: var(--white);
  border-color: transparent;
}
.btn-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26, 82, 118, 0.45);
}

.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.82rem; }
.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; }

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}
.card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  transform: translateY(-6px);
}

.card-body { padding: 1.75rem; }
.card-footer {
  padding: 1.2rem 1.75rem;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-100);
}

/* ---- Badges ---- */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge-green  { background: rgba(26,107,47,0.1);  color: var(--green); }
.badge-blue   { background: rgba(26,82,118,0.1);  color: var(--blue); }
.badge-red    { background: rgba(192,57,43,0.1);  color: var(--red); }
.badge-gray   { background: var(--gray-100);       color: var(--gray-600); }

/* ---- Form Elements ---- */
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,107,47,0.12);
}
.form-textarea { resize: vertical; min-height: 130px; }

/* ---- Site Header ---- */

/* Top Bar */
.top-bar {
  background: #1A6B2F;
  padding: 0.45rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.top-bar-left,
.top-bar-centre {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.top-bar-left a,
.top-bar-centre a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.78rem;
}
.top-bar-left a:hover,
.top-bar-centre a:hover { color: #fff; }
.top-bar-centre { color: rgba(255,255,255,0.85); }
.top-bar-right { display: flex; align-items: center; }
.top-bar-social {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.top-bar-social a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  line-height: 1;
}
.top-bar-social a:hover {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

/* ---- Navbar ---- */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid #e0e8ec;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.navbar-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 0.75rem;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
  min-width: 0;
}
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-mark {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 26px; height: 26px; fill: var(--white); }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.logo-text strong {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo-text span {
  font-size: 0.63rem;
  color: var(--gray-600);
  letter-spacing: 0.03em;
  line-height: 1.3;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  min-width: 0;
}
.nav-links a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 0.55rem;
  color: var(--gray-800);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.4rem;
  right: 0.4rem;
  height: 3px;
  background: var(--green);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--green); font-weight: 600; }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
.nav-portal-btn {
  display: flex;
  align-items: center;
  height: 33px;
  padding: 0 0.8rem;
  color: var(--green);
  border: 1.5px solid var(--green);
  border-radius: 5px;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-portal-btn:hover {
  background: var(--green);
  color: var(--white);
}
.btn-join-appn {
  display: inline-flex;
  align-items: center;
  height: 33px;
  padding: 0 0.9rem;
  background: var(--green);
  color: #fff;
  border-radius: 5px;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-join-appn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  background: none;
  border: none;
  margin-left: auto;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #1A6B2F;
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---- Mobile Nav ---- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 1999;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open {
  display: flex;
  transform: translateX(0);
}
.mobile-nav a {
  padding: 1rem 0;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--green); }
.mobile-nav-cta { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-nav-close {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  background: none; border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
  padding: 0.5rem;
}

/* ---- Footer ---- */
.footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.75);
  padding: 5.5rem 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green-light), var(--gold));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-mark,
.footer-brand .logo-img { margin-bottom: 1rem; }
.footer-brand .logo-text strong { color: var(--white); }
.footer-brand .logo-text span   { color: rgba(255,255,255,0.5); }
.footer-tagline {
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin: 1rem 0 1.5rem;
  font-family: var(--font-head);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  line-height: 1.6;
}
.footer-address {
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.6);
}
.footer-address a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.footer-address a:hover { color: var(--white); }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  transition: all var(--transition);
  background: rgba(255,255,255,0.04);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}

.footer-newsletter p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
  line-height: 1.65;
}
.newsletter-form { display: flex; flex-direction: column; gap: 0.65rem; }
.newsletter-form input {
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--green); }
.newsletter-form button {
  padding: 0.7rem;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--green-light); }

.footer-bottom {
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

.footer-credit {
  padding: 0.55rem 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.035);
}
.footer-credit span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.03em;
}

/* ---- Page Header ---- */
.page-header {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-header::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.03'%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");
}
.page-header-inner { position: relative; }
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.page-header h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-header p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 640px; }

/* ---- Misc Helpers ---- */
.text-green  { color: var(--green); }
.text-blue   { color: var(--blue); }
.text-red    { color: var(--red); }
.text-center { text-align: center; }
.text-white  { color: var(--white); }

.bg-white    { background: var(--white); }
.bg-light    { background: var(--bg); }
.bg-green    { background: var(--green); }
.bg-dark     { background: var(--dark); }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ---- Animate on scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1),
              transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ---- Responsive Breakpoints ---- */

/* 1200px: compress footer, nav links */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .nav-links a { padding: 0 0.5rem; font-size: 0.8rem; }
  .navbar-inner { gap: 0.6rem; }
}

/* 1100px: hide tagline, compact buttons */
@media (max-width: 1100px) {
  .logo-text span { display: none; }
  .logo-text strong { font-size: 0.92rem; }
  .nav-links a { padding: 0 0.45rem; font-size: 0.78rem; }
  .nav-portal-btn { padding: 0 0.7rem; font-size: 0.74rem; height: 31px; }
  .btn-join-appn { padding: 0 0.75rem; font-size: 0.74rem; height: 31px; }
  .navbar-actions { gap: 0.35rem; }
  .navbar-inner { gap: 0.5rem; }
}

/* 1024px: further compress */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .logo-text strong { font-size: 0.88rem; }
  .nav-links a { padding: 0 0.38rem; font-size: 0.76rem; }
}

/* 768px: mobile nav */
@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav-links { display: none; }
  .navbar-actions { display: none; }
  .hamburger { display: flex; }
  .navbar-inner { height: 60px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-pad { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2.5rem; }
  .container { padding: 0 1.25rem; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  h1 { font-size: 1.65rem; }
  .btn-lg { padding: 0.875rem 1.5rem; }
  .container { padding: 0 1rem; }
  .mobile-nav-cta .btn { width: 100%; justify-content: center; text-align: center; }
}