:root {
  /* Lighter, poster-inspired palette */
  --bg: #d8f0cf;
  --bg-elevated: #f5f3e6;
  --accent: #1f8f4d;
  --accent-soft: rgba(31, 143, 77, 0.12);
  --text-main: #143225;
  --text-muted: #4b6654;
  --radius-xl: 20px;
  --shadow-soft: 0 18px 40px rgba(22, 63, 42, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top left, #f6f1dd 0, #d8f0cf 40%, #b9dfb0 85%);
  color: var(--text-main);
  scroll-behavior: smooth;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(20, 50, 37, 0.95), rgba(20, 50, 37, 0.85), rgba(20, 50, 37, 0.7));
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.35rem;
  text-decoration: none;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  letter-spacing: 0.06em;
  font-weight: 800;
}

.nav-logo-green {
  color: var(--accent);
}

.nav-logo-light {
  color: #3eb1e5;
}

.nav-logo .nav-logo-green {
  color: #d1e231;
}

.nav-logo .nav-logo-light {
  color: #3eb1e5;
}

.nav-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
}

.nav-links a {
  color: rgba(234, 246, 225, 0.9);
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 999px;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(31, 143, 77, 0.3);
}

/* Hamburger: hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: rgba(234, 246, 225, 0.95);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-cta {
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.6);
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  background: rgba(31, 143, 77, 0.8);
}

.main {
  flex: 1;
  width: 100%;
  max-width: min(1600px, 96vw);
  margin: 0 auto;
  padding: 14px 20px 24px;
  box-sizing: border-box;
}

/* Fullscreen hero with background image + centered PPC-PARA! (full width, outside main) */
.hero-fullscreen {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/6/66/Multicab_in_Camiguin.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-fullscreen-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 50, 37, 0.75) 0%, rgba(20, 50, 37, 0.5) 50%, rgba(20, 50, 37, 0.7) 100%);
  pointer-events: none;
}

.hero-fullscreen-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px;
  max-width: 720px;
}

.hero-fullscreen-tagline {
  margin: 0 0 12px;
  font-size: clamp(0.85rem, 2vw, 1rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.hero-fullscreen-title {
  margin: 0 0 24px;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-fullscreen-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #022c22;
  background: var(--accent);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
}

.hero-fullscreen-cta:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.hero {
  display: block;
  margin-bottom: 32px;
  padding-top: 4rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-eyebrow {
  margin: 0;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.eyebrow {
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(1.6rem, 2.1vw, 2rem);
  line-height: 1.25;
  margin: 0;
}

.hero-subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-features li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

/* Right column: "What you get" card */
.hero-side {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  width: 100%;
  max-width: 320px;
  padding: 20px 22px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 60%), var(--bg-elevated);
  border-radius: 16px;
  border: 1px solid rgba(166, 200, 150, 0.85);
  box-shadow: 0 12px 28px rgba(53, 94, 65, 0.2);
}

.hero-card-title {
  margin: 0 0 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.02em;
}

.hero-card-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-card-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
}


.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  text-decoration: none;
  cursor: pointer;
}

.primary-cta {
  background: var(--accent);
  color: #022c22;
  border: 1px solid rgba(34, 197, 94, 0.9);
}

.secondary-cta {
  background: rgba(245, 244, 232, 0.98);
  color: var(--text-main);
  border: 1px solid rgba(166, 200, 150, 0.9);
}

.primary-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(31, 143, 77, 0.35);
}

.secondary-cta:hover {
  background: #eef6e6;
  border-color: rgba(119, 153, 120, 1);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(53, 94, 65, 0.25);
}

.nav-cta:hover {
  background: rgba(34, 197, 94, 0.9);
  border-color: rgba(34, 197, 94, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(34, 197, 94, 0.4);
}

.hero-media {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-phone {
  width: 100%;
  max-width: 360px;
  border-radius: 28px;
  padding: 10px 10px 12px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 55%),
    #cbeac4;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(119, 153, 120, 0.55);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-main);
}

.hero-phone-title {
  font-weight: 600;
}

.hero-phone-status {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(31, 143, 77, 0.12);
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-phone-map {
  position: relative;
  flex: 1;
  min-height: 170px;
  border-radius: 18px;
  background: radial-gradient(circle at top, #e8f7e0, #b8dfb0);
  overflow: hidden;
}

.hero-phone-route {
  position: absolute;
  inset: 40px 26px 30px;
  border-radius: 999px;
  border: 3px dashed rgba(53, 94, 65, 0.6);
}

.hero-phone-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.06);
}

.hero-phone-user {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.3);
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
}

.pin-green {
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.35);
  top: 34px;
  left: 26%;
}

.pin-yellow {
  background: #eab308;
  box-shadow: 0 0 0 4px rgba(234, 179, 8, 0.35);
  top: 60%;
  right: 22%;
}

.pin-red {
  background: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.35);
  top: 40%;
  left: 60%;
}

.hero-phone-card {
  border-radius: 16px;
  padding: 6px 10px;
  background: rgba(245, 244, 232, 0.98);
  border: 1px solid rgba(148, 181, 140, 0.7);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-phone-card-title {
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--text-main);
}

.hero-phone-card-meta {
  font-size: 0.72rem;
}

.hero-pill {
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(245, 244, 232, 0.98);
  border: 1px solid rgba(148, 181, 140, 0.7);
  font-size: 0.75rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.dot.live {
  background: #1f8f4d;
  box-shadow: 0 0 0 4px rgba(31, 143, 77, 0.28);
}

.section {
  margin-bottom: 24px;
}

.section h2,
.section h3 {
  margin: 0 0 6px;
}

.section p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.section.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.section-block {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 55%),
    rgba(245, 244, 232, 0.98);
  border-radius: 16px;
  padding: 14px 16px 13px;
  border: 1px solid rgba(166, 200, 150, 0.8);
  box-shadow: 0 14px 32px rgba(53, 94, 65, 0.35);
}

#how-to-use .how-to-use-block {
  max-width: 880px;
  margin: 0 auto;
  padding: 18px 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.how-to-use-intro {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.how-to-use-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.how-to-use-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.how-to-use-step-badge {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #f9fafb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(22, 63, 42, 0.45);
  flex-shrink: 0;
}

.how-to-use-step strong {
  display: block;
  margin-bottom: 2px;
}

@media (max-width: 600px) {
  #how-to-use .how-to-use-block {
    padding: 16px 14px 14px;
  }

  .how-to-use-intro {
    font-size: 0.9rem;
  }

  .how-to-use-step-badge {
    width: 22px;
    height: 22px;
    font-size: 0.78rem;
  }
}

#about {
  min-height: auto;
  display: block;
  padding-block: 8px;
  scroll-margin-top: 70px;
}

#how-to-use {
  scroll-margin-top: 70px;
}

#about .section-block {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
  background: var(--bg);
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.how-works-board {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
}

.how-works-board::before,
.how-works-board::after {
  display: none;
}

.how-works-main {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.how-works-header h2 {
  margin-bottom: 4px;
}

.how-works-header p {
  font-size: 0.86rem;
}

.about-note {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 10px;
  padding: 8px 10px;
  background: rgba(31, 143, 77, 0.08);
  border-radius: 10px;
  border-left: 3px solid var(--accent);
}

.how-works-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.how-works-card {
  position: relative;
  border-radius: 14px;
  padding: 9px 10px 10px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 60%),
    linear-gradient(135deg, rgba(31, 143, 77, 0.12), rgba(59, 130, 246, 0.12));
  border: 1px solid rgba(166, 200, 150, 0.95);
  box-shadow: 0 10px 24px rgba(53, 94, 65, 0.45);
  overflow: hidden;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out,
    background 0.18s ease-out;
}

.how-works-card-main {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 120px;
}

.how-works-card h3 {
  margin: 0 0 2px;
  font-size: 0.9rem;
}

.how-works-card p {
  margin: 0;
  font-size: 0.8rem;
}

.how-works-card::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.25), transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease-out;
}

.how-works-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 46px rgba(31, 143, 77, 0.7);
  border-color: rgba(31, 143, 77, 0.95);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.98), transparent 62%),
    linear-gradient(135deg, rgba(59, 130, 246, 0.16), rgba(31, 143, 77, 0.16));
}

.how-works-card:hover::after {
  opacity: 1;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 9px;
  margin-bottom: 5px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(129, 140, 248, 0.22);
  color: #312e81;
  border: 1px solid rgba(129, 140, 248, 0.68);
}

.step-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  margin-bottom: 4px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(31, 143, 77, 0.16);
  color: var(--accent);
  border: 1px solid rgba(31, 143, 77, 0.5);
}

.how-works-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 1;
}

.how-works-character {
  position: relative;
  border-radius: 22px;
  padding: 16px;
  width: 100%;
  max-width: 380px;
  background: rgba(248, 250, 252, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: none;
  overflow: hidden;
}

.how-works-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: #022c22;
  box-shadow: 0 10px 26px rgba(31, 143, 77, 0.4);
  margin-bottom: 8px;
  border: 1px solid rgba(31, 143, 77, 0.6);
}

.how-works-caption {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.how-works-screenshot {
  display: block;
  width: 100%;
  height: auto;
  min-height: 280px;
  border-radius: 14px;
  margin-bottom: 12px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: #f1f5f9;
  object-fit: contain;
  object-position: center;
}

.cab-slider-wrap {
  position: relative;
  width: 100%;
  max-width: 230px;
  border-radius: 20px;
}

.cab-slider-below {
  margin-top: 16px;
  max-width: 100%;
  overflow: hidden;
  box-shadow: none;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: #f8fafc;
}

.cab-slider-wrap .cab-slider {
  display: flex;
  width: 300%;
  transition: transform 0.4s ease-out;
}

.cab-slider-wrap .cab-slider.cab-slider-three {
  width: 300%;
}

.cab-slide {
  flex: 0 0 33.333%;
  width: 33.333%;
  height: auto;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
}

.cab-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(31, 143, 77, 0.5);
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.cab-arrow:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 16px rgba(31, 143, 77, 0.4);
}

.cab-arrow-prev {
  left: 10px;
}

.cab-arrow-next {
  right: 10px;
}

#about:target .section-block {
  box-shadow: none;
  border: none;
  transform: none;
}

@keyframes sectionGlow {
  0% {
    box-shadow: 0 0 0 rgba(31, 143, 77, 0);
  }
  40% {
    box-shadow: 0 24px 55px rgba(31, 143, 77, 0.75);
  }
  100% {
    box-shadow: 0 18px 40px rgba(53, 94, 65, 0.35);
  }
}

.highlight .section-block {
  border-color: rgba(31, 143, 77, 0.7);
}

/* Footer – matches landing theme (green/beige) */
.footer {
  margin-top: auto;
  color: var(--text-main);
  font-size: 0.875rem;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Top bar: Get connected + social icons */
.footer-connect {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 24px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-connect-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-main);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--text-muted);
  border-radius: 50%;
  transition: color 0.2s, background 0.2s, transform 0.2s;
}

.footer-social-icon:hover {
  color: var(--accent);
  background: rgba(31, 143, 77, 0.15);
  transform: scale(1.1);
  text-decoration: none;
}

/* Main content: 4 columns */
.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 32px 24px 28px;
  max-width: min(1600px, 96vw);
  margin: 0 auto;
  background: #fff;
  border: none;
  box-shadow: none;
}

.footer-title {
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-main);
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(31, 143, 77, 0.4);
  display: inline-block;
}

.footer-desc {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-list li a {
  color: var(--text-muted);
}

.footer-list li a:hover {
  color: var(--accent);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-muted);
}

.footer-icon {
  flex-shrink: 0;
}

/* Copyright bar */
.footer-copyright {
  padding: 12px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-copyright span {
  color: inherit;
}

@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-connect {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 18px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .footer-copyright {
    padding: 10px 18px;
    font-size: 0.75rem;
  }
}

@media (max-width: 800px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-side {
    order: 1;
    margin-top: 8px;
  }

  .hero-card {
    max-width: 100%;
  }

  .hero-media {
    order: -1;
    margin-bottom: 8px;
  }

  .how-works-board {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .nav {
    padding-inline: 14px;
    flex-wrap: wrap;
  }

  .nav-right {
    gap: 8px;
    position: relative;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    flex-direction: column;
    align-items: stretch;
    min-width: 180px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(20, 50, 37, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
  }

  .main {
    padding-inline: 14px;
  }

  .section.grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

