/* PGfy Extended Design System - CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  /* Colors */
  --primary-blue: #1d70b8;
  --primary-hover: #155a96;
  --accent-cyan: #06b6d4;
  --bg-dark-navy: #0b1220;
  --bg-dark-card: #131e35;
  --bg-dark-footer: #0a0f1d;
  --bg-light-gray: #f8fafc;
  --bg-white: #fff;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-light: #f8fafc;
  --text-light-muted: #94a3b8;
  --border-light: #e2e8f0;
  --border-dark: #1e293b;

  /* Fonts */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', sans-serif;

  /* Transitions & Shadows */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.05), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
  --shadow-dark: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.3);

  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
}

/* Container */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Sections */

section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section-dark {
  background-color: var(--bg-dark-navy);
  color: var(--text-light);
}

.section-light {
  background-color: var(--bg-light-gray);
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title-wrapper h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-title-wrapper p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

.section-dark .section-title-wrapper p {
  color: var(--text-light-muted);
}

/* Wave Separator */

.wave-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-container svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.wave-container .shape-fill {
  fill: var(--bg-white);
}

/* Header / Navigation */

header {
  height: var(--header-height);
  background: var(--bg-white);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hero Section */

.hero-section {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 6rem;
  background-color: var(--bg-dark-navy);
  color: var(--text-light);
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(29, 112, 184, 0.15);
  border: 1px solid rgba(29, 112, 184, 0.3);
  color: var(--accent-cyan);
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.8s ease;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  animation: slideUp 0.8s ease;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-light-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: slideUp 1s ease;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 112, 184, 0.25);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-outline-white:hover {
  background-color: white;
  color: var(--bg-dark-navy);
  border-color: white;
  transform: translateY(-2px);
}

/* CTA Section */

.cta-section {
  text-align: center;
  position: relative;
  background-color: var(--bg-dark-navy);
  color: var(--text-light);
  padding: 5rem 0;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--text-light-muted);
  margin-bottom: 2rem;
}

/* Breadcrumb */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.875rem;
  color: var(--text-light-muted);
  margin-bottom: 1.5rem;
  justify-content: center;
}

.breadcrumb-item a {
  color: var(--text-light-muted);
}

.breadcrumb-item a:hover {
  color: var(--accent-cyan);
}

.breadcrumb-item.active {
  color: var(--text-light);
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.2);
}

/* Cards & Grids */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

/* Payment Cards */

.payment-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.payment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(29, 112, 184, 0.3);
}

.payment-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(29, 112, 184, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.payment-card:hover .payment-icon-wrapper {
  background: var(--primary-blue);
  color: white;
  transform: scale(1.1);
}

.payment-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.payment-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Feature Cards */

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid var(--border-light);
  display: flex;
  gap: 1.25rem;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(29, 112, 184, 0.2);
}

.feature-check-icon {
  width: 24px;
  height: 24px;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.feature-card-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.feature-card-content p {
  color: var(--text-muted);
  font-size: 0.925rem;
}

/* Dark theme elements for features */

.section-dark .feature-card {
  background: var(--bg-dark-card);
  border-color: var(--border-dark);
}

.section-dark .feature-card-content h3 {
  color: var(--text-light);
}

.section-dark .feature-card-content p {
  color: var(--text-light-muted);
}

/* Flow Diagram */

.flow-diagram-container {
  max-width: 800px;
  margin: 3rem auto;
  position: relative;
  padding-left: 2.5rem;
}

.flow-diagram-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 11px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-blue), var(--accent-cyan));
}

.flow-step {
  position: relative;
  padding-bottom: 2.5rem;
  opacity: 0.85;
  transition: var(--transition);
}

.flow-step:last-child {
  padding-bottom: 0;
}

.flow-step:hover {
  opacity: 1;
}

.flow-dot {
  position: absolute;
  left: -2.5rem;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-dark-navy);
  border: 4px solid var(--primary-blue);
  transition: var(--transition);
  z-index: 2;
}

.flow-step:hover .flow-dot {
  background: var(--accent-cyan);
  border-color: white;
  transform: scale(1.2);
  box-shadow: 0 0 10px var(--accent-cyan);
}

.flow-content {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.flow-step:hover .flow-content {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-dark);
  transform: translateX(5px);
}

.flow-text h4 {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.flow-text p {
  font-size: 0.9rem;
  color: var(--text-light-muted);
}

.flow-arrow-icon {
  color: var(--text-light-muted);
  transition: var(--transition);
}

.flow-step:hover .flow-arrow-icon {
  color: var(--accent-cyan);
  transform: rotate(90deg) scale(1.1);
}

/* Step Cards */

.step-cards-container {
  margin-top: 4rem;
}

.step-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(29, 112, 184, 0.25);
}

.step-badge {
  position: absolute;
  top: -15px;
  left: 20px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
  color: white;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
}

.step-card h3 {
  font-size: 1.3rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Callout Box / Information Box */

.callout-box {
  background: rgba(29, 112, 184, 0.05);
  border-left: 4px solid var(--primary-blue);
  border-radius: 0 12px 12px 0;
  padding: 2rem;
  margin: 4rem auto;
  max-width: 850px;
  display: flex;
  gap: 1.5rem;
}

.callout-icon {
  color: var(--primary-blue);
  flex-shrink: 0;
}

.callout-content h4 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.callout-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Timeline */

.timeline-container {
  max-width: 900px;
  margin: 4rem auto;
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--border-light);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 3.5rem;
  position: relative;
  width: 50%;
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
  margin-left: 50%;
  justify-content: flex-start;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  right: -8px;
  top: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 3px solid var(--primary-blue);
  z-index: 2;
  transition: var(--transition);
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -8px;
  right: auto;
}

.timeline-item:hover .timeline-dot {
  background: var(--primary-blue);
  transform: scale(1.3);
}

.timeline-content {
  width: 85%;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.timeline-item:hover .timeline-content {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.timeline-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.timeline-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Accordion */

.accordion-container {
  max-width: 850px;
  margin: 3rem auto;
}

.accordion-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item:hover {
  border-color: rgba(29, 112, 184, 0.25);
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
  color: var(--text-dark);
  transition: var(--transition);
}

.accordion-header h3 {
  font-size: 1.15rem;
  font-weight: 600;
}

.accordion-icon-chevron {
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon-chevron {
  transform: rotate(180deg);
  color: var(--primary-blue);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease-out,
    padding 0.3s ease-out;
  padding: 0 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: 1px solid transparent;
}

.accordion-item.active .accordion-content {
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid var(--border-light);
}

.accordion-content p {
  margin-bottom: 1rem;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

.accordion-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.accordion-content li {
  margin-bottom: 0.5rem;
}

/* Info Cards & Policy Cards */

.info-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  text-align: left;
  transition: var(--transition);
  height: 100%;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue);
}

.info-card-icon {
  color: var(--primary-blue);
  margin-bottom: 1.25rem;
  width: 48px;
  height: 48px;
  background: rgba(29, 112, 184, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.info-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.6;
}

/* Legal Cards */

.legal-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2.25rem;
  transition: var(--transition);
  border-left: 4px solid var(--primary-blue);
}

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

.legal-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-family: var(--font-display);
}

.legal-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card ul {
  padding-left: 1.25rem;
  margin-top: 0.75rem;
}

.legal-card li {
  margin-bottom: 0.5rem;
  font-size: 0.925rem;
  color: var(--text-muted);
}

/* Scroll Animation classes */

.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
  visibility: hidden;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}

/* Footer styling */

footer {
  background-color: var(--bg-dark-footer);
  color: var(--text-light-muted);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border-dark);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(5, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.footer-desc {
  max-width: 280px;
  line-height: 1.6;
  font-size: 0.925rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-muted);
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
  transform: translateY(-3px);
}

.footer-column h4 {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: capitalize;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--text-light-muted);
}

.footer-link:hover {
  color: var(--primary-blue);
  padding-left: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}

.footer-copyright {
  max-width: 40%;
  line-height: 1.6;
}

.footer-copyright a {
  color: var(--primary-blue);
}

.footer-powered {
  text-align: right;
  max-width: 50%;
  line-height: 1.6;
}

.footer-powered address {
  font-style: normal;
  margin-top: 0.5rem;
  color: var(--text-light-muted);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Media Queries */
@media (width <= 1200px) {
  :root {
    --max-width: 960px;
  }

  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem 2rem;
  }
}

@media (width <= 992px) {
  :root {
    --max-width: 720px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-container::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    justify-content: flex-start;
    padding-left: 40px;
  }

  .timeline-item:nth-child(even) {
    margin-left: 0;
  }

  .timeline-dot {
    left: 12px !important;
    right: auto !important;
  }

  .timeline-content {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-copyright,
  .footer-powered {
    max-width: 100%;
    text-align: left;
  }
}

@media (width <= 768px) {
  :root {
    --max-width: 540px;
  }

  header {
    height: 70px;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    align-items: flex-start;
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2rem;
  }

  .grid-5,
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .callout-box {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (width <= 576px) {
  .hero-title {
    font-size: 1.75rem;
  }

  section {
    padding: 3.5rem 0;
  }
}
