/* ============================================================
   Northwind Tech — Main Stylesheet
   Brand: Teal (#1D9E75), warm-neutral backgrounds, friendly & local
   ============================================================ */

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

:root {
  --teal:        #1D9E75;
  --teal-dark:   #0F6E56;
  --teal-light:  #E1F5EE;
  --teal-mid:    #5DCAA5;
  --text:        #1a1a1a;
  --text-muted:  #5a5a5a;
  --text-light:  #888;
  --bg:          #f8f7f4;
  --bg-white:    #ffffff;
  --border:      #e4e2dc;
  --border-mid:  #cccac4;
  --radius:      8px;
  --radius-lg:   14px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.05);
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;
  --font-display:'Inter', system-ui, -apple-system, sans-serif;
  --max-w:       1100px;
  --transition:  0.18s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

/* --- Utility --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.section-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.5rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 34px;
  height: 34px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--teal);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text);
}
.nav-hamburger svg { display: block; }
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-top: 1px solid var(--border);
}
.nav-mobile a {
  display: block;
  padding: 14px 2rem;
  font-size: 15px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--teal); }
.nav-mobile .nav-cta { margin: 1rem 2rem 1.25rem; display: block; text-align: center; padding: 11px; border-radius: var(--radius); }
.nav-mobile.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 5rem 0 4rem;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% -10%, rgba(29,158,117,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.hero-badge svg { flex-shrink: 0; }
.hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal);
}
.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 2rem;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  font-family: var(--font-sans);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-mid);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  font-family: var(--font-sans);
}
.btn-secondary:hover { border-color: var(--teal); background: var(--teal-light); transform: translateY(-1px); }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
.hero-trust-item svg { color: var(--teal); flex-shrink: 0; }
.hero-visual {
  position: relative;
}
.hero-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.hero-card-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--teal-dark);
  flex-shrink: 0;
}
.hero-card-name { font-size: 14px; font-weight: 600; }
.hero-card-meta { font-size: 12px; color: var(--text-light); }
.hero-card-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-light);
  padding: 4px 10px;
  border-radius: 20px;
}
.hero-card-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-ticket {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-ticket-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: var(--bg);
  border-radius: var(--radius);
  font-size: 13px;
}
.hero-ticket-row .ticket-label { color: var(--text-muted); }
.hero-ticket-row .ticket-val { font-weight: 500; }
.ticket-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}
.ticket-badge.resolved { background: var(--teal-light); color: var(--teal-dark); }
.ticket-badge.open { background: #FFF3CD; color: #856404; }
.hero-float {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.hero-float-icon {
  width: 32px;
  height: 32px;
  background: var(--teal-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.hero-float-label { font-size: 12px; color: var(--text-light); }
.hero-float-value { font-weight: 600; font-size: 13px; }

/* ============================================================
   SECTIONS — shared
   ============================================================ */
section { padding: 5rem 0; }
section.alt { background: var(--bg-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-header { margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.section-header p { font-size: 16px; color: var(--text-muted); max-width: 520px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal-mid);
  transform: translateY(-2px);
}
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--teal);
}
.service-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.plan {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow var(--transition);
}
.plan:hover { box-shadow: var(--shadow-md); }
.plan.featured {
  border: 2px solid var(--teal);
  position: relative;
}
.plan-badge {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}
.plan h3 { font-size: 16px; font-weight: 700; margin-bottom: 0.25rem; }
.plan-tagline { font-size: 13px; color: var(--text-muted); margin-bottom: 1.25rem; }
.plan-price { font-size: 36px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 0.25rem; color: var(--text); }
.plan-price span { font-size: 15px; font-weight: 400; color: var(--text-muted); }
.plan-divider { height: 1px; background: var(--border); margin: 1.25rem 0; }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1.5rem; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.plan-features li svg { color: var(--teal); flex-shrink: 0; margin-top: 3px; }
.plan-btn {
  display: block;
  width: 100%;
  padding: 11px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  border: 1px solid var(--border-mid);
  background: transparent;
  color: var(--text);
}
.plan-btn:hover { border-color: var(--teal); background: var(--teal-light); }
.plan.featured .plan-btn {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.plan.featured .plan-btn:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 1rem; }
.about-text p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 2rem;
}
.stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.stat-num { font-size: 22px; font-weight: 700; color: var(--teal); }
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.trust-list { display: flex; flex-direction: column; gap: 1.25rem; }
.trust-item { display: flex; align-items: flex-start; gap: 14px; }
.trust-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.trust-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.trust-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-wrap h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.contact-form-wrap > p { font-size: 15px; color: var(--text-muted); margin-bottom: 2rem; }
.form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29,158,117,0.12);
}
.form-group textarea { height: 100px; resize: vertical; line-height: 1.6; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-submit {
  background: var(--teal);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition), transform var(--transition);
  align-self: flex-start;
  margin-top: 4px;
}
.form-submit:hover { background: var(--teal-dark); transform: translateY(-1px); }
.form-success {
  display: none;
  background: var(--teal-light);
  border: 1px solid var(--teal-mid);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.form-success svg { color: var(--teal); margin: 0 auto 0.75rem; }
.form-success h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.form-success p { font-size: 14px; color: var(--text-muted); }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.contact-info-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 1rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: 14px;
}
.contact-detail:first-of-type { border-top: none; padding-top: 0; }
.contact-detail svg { color: var(--teal); flex-shrink: 0; }
.contact-detail span { color: var(--text-muted); }
.contact-detail a { color: var(--teal); }
.ticket-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ticket-card h3 { font-size: 15px; font-weight: 600; }
.ticket-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.ticket-card .btn-secondary { font-size: 14px; padding: 10px 20px; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .nav-logo { color: #fff; margin-bottom: 0.75rem; }
.footer-brand .nav-logo-icon { background: var(--teal); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 14px; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--teal-mid); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 13px; }
.footer-bottom-badges { display: flex; gap: 10px; }
.footer-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: block; }
  section { padding: 3.5rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero { padding: 3rem 0 2.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   LANDING PAGE
   ============================================================ */
.landing-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}
.landing-nav {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.landing-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 4rem;
  text-align: center;
}
.landing-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 3rem;
}
.landing-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.landing-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.landing-eyebrow::before,
.landing-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--teal-mid);
  opacity: 0.5;
}
.landing-h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  max-width: 580px;
  margin: 0 auto 1.25rem;
}
.landing-h1 em {
  font-style: normal;
  color: var(--teal);
}
.landing-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.landing-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}
.landing-path {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.landing-path::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29,158,117,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.landing-path:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal-mid);
  transform: translateY(-3px);
}
.landing-path:hover::after { opacity: 1; }
.landing-path-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}
.landing-path h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.landing-path p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.landing-path-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  margin-top: auto;
}
.landing-path-cta svg {
  transition: transform var(--transition);
}
.landing-path:hover .landing-path-cta svg {
  transform: translateX(4px);
}
.landing-footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 13px;
  color: var(--text-light);
  border-top: 1px solid var(--border);
}
.landing-footer a { color: var(--teal); }

@media (max-width: 520px) {
  .landing-paths { grid-template-columns: 1fr; }
  .landing-h1 { font-size: 1.75rem; }
}
