/* ==========================================================================
   SnagSwift — Modern SaaS B2B Landing Page Styles
   Designed for speed, clarity, and site practicality.
   ========================================================================== */

:root {
  --i: #243746;          /* Deep ink navy */
  --p: #3d5467;          /* Slate primary */
  --t: #4f8c89;          /* Sage / teal accent */
  --t-light: #dcebea;    /* Soft teal tint */
  --m: #71808a;          /* Muted slate text */
  --bg: #f7f5f0;         /* Warm off-white site background */
  --l: #dfe5e7;          /* Card & divider border */
  --white: #ffffff;
  --focus-ring: rgba(79, 140, 137, 0.35);
  --shadow-sm: 0 4px 12px rgba(36, 55, 70, 0.05);
  --shadow-md: 0 12px 28px rgba(36, 55, 70, 0.08);
  --shadow-lg: 0 24px 50px rgba(36, 55, 70, 0.12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 30px;
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--i);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.w {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease, opacity 0.2s ease;
}

/* Navigation */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(61, 84, 103, 0.08);
  transition: background 0.3s ease;
}

.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--i);
}

.brand .check {
  color: var(--t);
  font-weight: 900;
}

.links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 14.5px;
  font-weight: 700;
}

.links a:not(.btn):hover {
  color: var(--t);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--i);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--p);
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(61, 84, 103, 0.18);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 3px solid var(--t);
  outline-offset: 2px;
}

.primary {
  background: var(--p);
  color: var(--white);
  border-color: var(--p);
}

.primary:hover {
  background: #334657;
}

/* Hero Section */
.hero {
  padding: 95px 0 85px;
}

.hg {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 55px;
  align-items: center;
}

.eye {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--t);
}

h1 {
  font-size: clamp(48px, 7vw, 90px);
  line-height: 0.94;
  letter-spacing: -0.06em;
  margin: 14px 0 24px;
  color: var(--i);
}

.accent {
  color: var(--t);
}

.lead {
  font-size: 19.5px;
  color: var(--m);
  max-width: 680px;
  line-height: 1.5;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.productShot {
  max-width: 410px;
  margin: auto;
  position: relative;
  transform: rotate(1.2deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.productShot:hover {
  transform: rotate(0deg) scale(1.01);
}

.productShot img {
  width: 100%;
  display: block;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(36, 55, 70, 0.22);
  border: 8px solid #ffffff;
  background: #ffffff;
}

.shotLabel {
  position: absolute;
  left: -24px;
  right: 24px;
  bottom: -28px;
  background: var(--i);
  color: var(--white);
  border-radius: 15px;
  padding: 14px 18px;
  box-shadow: 0 14px 34px rgba(36, 55, 70, 0.28);
}

.shotLabel b {
  display: block;
  font-size: 12.5px;
  font-weight: 800;
}

.shotLabel span {
  display: block;
  font-size: 10.5px;
  color: #bfd0d0;
  margin-top: 2px;
}

/* Sections */
.sec {
  padding: 95px 0;
}

.dark {
  background: var(--i);
  color: var(--white);
  padding: 95px 0;
}

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}

.dark h2,
.sec h2 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 12px 0 22px;
}

.dark p {
  font-size: 18px;
  color: #c9d1d5;
  line-height: 1.6;
}

.manifest {
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  border-left: 3px solid var(--t);
  padding-left: 26px;
  font-weight: 600;
}

.center {
  text-align: center;
  max-width: 830px;
  margin: 0 auto 52px;
}

.center p {
  font-size: 18.5px;
  color: var(--m);
  line-height: 1.55;
  margin-top: 10px;
}

/* 3-Card Grid */
.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  border: 1px solid var(--l);
  border-radius: 20px;
  padding: 30px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card .n {
  font-size: 11.5px;
  color: var(--t);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.card h3 {
  font-size: 23px;
  letter-spacing: -0.02em;
  margin: 14px 0 10px;
  color: var(--i);
}

.card p {
  color: var(--m);
  font-size: 15.5px;
  line-height: 1.55;
}

/* Founder Section */
.founder {
  background: var(--white);
}

.founderGrid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 65px;
  align-items: center;
}

.founderBadge {
  aspect-ratio: 1;
  border-radius: 28px;
  background: var(--p);
  color: var(--white);
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 24px 60px rgba(36, 55, 70, 0.16);
}

.founderBadge strong {
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.founderBadge span {
  color: #b9cfcd;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founderCopy p {
  font-size: 18px;
  color: var(--m);
  line-height: 1.6;
  margin-bottom: 16px;
}

.founderCopy .pull {
  font-size: 24px;
  color: var(--i);
  font-weight: 750;
  line-height: 1.35;
  border-left: 3px solid var(--t);
  padding-left: 20px;
  margin-top: 24px;
}

/* AI Assist Section */
.aibg {
  background: #e8efee;
}

.aigrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.quote {
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin: 12px 0 20px;
  color: var(--i);
}

.aigrid p {
  color: #607177;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.flow {
  background: var(--white);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 20px 50px rgba(36, 55, 70, 0.12);
  border: 1px solid var(--l);
}

.rough {
  background: #f3f1ed;
  padding: 20px;
  border-radius: 15px;
  color: #66747d;
  font-style: italic;
  font-size: 16px;
  border-left: 3px solid #c4bbb0;
}

.arrow {
  text-align: center;
  padding: 16px 0;
  color: var(--t);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.polished {
  background: var(--p);
  color: var(--white);
  padding: 22px;
  border-radius: 15px;
  line-height: 1.5;
  font-size: 15px;
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.chip {
  font-size: 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 10px;
  border-radius: 20px;
  font-weight: 600;
}

/* Close-out Section */
.closeout {
  background: #edf2f1;
}

.closeGrid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 55px;
  align-items: center;
}

.closeCopy p {
  font-size: 18px;
  color: var(--m);
  line-height: 1.6;
  margin-bottom: 16px;
}

.closeCopy strong {
  color: var(--i);
}

.workflow {
  display: grid;
  gap: 12px;
}

.step {
  background: var(--white);
  border: 1px solid var(--l);
  border-radius: 16px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  transition: transform 0.15s ease;
}

.step:hover {
  transform: translateX(3px);
}

.stepNo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--p);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 16px;
}

.step b {
  display: block;
  margin-bottom: 3px;
  font-size: 16px;
  color: var(--i);
}

.step span {
  font-size: 13.5px;
  color: var(--m);
  line-height: 1.45;
}

.decision {
  margin-top: 14px;
  background: var(--p);
  color: var(--white);
  border-radius: 17px;
  padding: 20px 22px;
  line-height: 1.45;
}

.decision small {
  display: block;
  color: #b9cfcd;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 850;
  margin-bottom: 6px;
  font-size: 11px;
}

.decision b {
  font-size: 14.5px;
}

/* ROI Calculator Section */
.calc {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  max-width: 1040px;
  margin: auto;
}

.box {
  border: 1px solid var(--l);
  border-radius: 24px;
  padding: 30px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.box h3 {
  font-size: 21px;
  margin-bottom: 22px;
  color: var(--i);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.currency-toggle {
  display: inline-flex;
  background: var(--bg);
  border-radius: 8px;
  padding: 2px;
  gap: 2px;
}

.currency-btn {
  background: transparent;
  border: none;
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  color: var(--m);
  transition: background 0.15s ease, color 0.15s ease;
}

.currency-btn.active {
  background: var(--white);
  color: var(--i);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.control {
  margin-bottom: 24px;
}

.lr {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 9px;
  color: var(--i);
}

.lr span {
  color: var(--t);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* Custom Styled Range Sliders */
input[type=range] {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  appearance: none;
  background: #e2e8ea;
  border-radius: 8px;
  outline: none;
  margin: 6px 0;
  cursor: pointer;
  transition: background 0.15s ease;
}

input[type=range]:focus-visible {
  outline: 2px solid var(--t);
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--t);
  border: 3px solid #ffffff;
  box-shadow: 0 2px 6px rgba(36, 55, 70, 0.25);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  background: #3c726f;
}

input[type=range]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--t);
  border: 3px solid #ffffff;
  box-shadow: 0 2px 6px rgba(36, 55, 70, 0.25);
  cursor: pointer;
}

.heroMetric {
  background: var(--p);
  color: var(--white);
  border-radius: 18px;
  padding: 24px 26px;
  position: relative;
  overflow: hidden;
}

.heroMetric small,
.metric small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 850;
  opacity: 0.75;
}

.heroMetric strong {
  display: block;
  font-size: clamp(38px, 5.5vw, 56px);
  line-height: 1.05;
  margin-top: 4px;
  letter-spacing: -0.03em;
}

.metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.metric {
  background: var(--bg);
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--l);
}

.metric strong {
  display: block;
  font-size: 23px;
  color: var(--i);
  margin-top: 4px;
  letter-spacing: -0.02em;
}

.roi {
  margin-top: 16px;
  padding: 18px 20px;
  border-left: 4px solid var(--t);
  background: #f5f8f7;
  border-radius: 0 14px 14px 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--i);
}

.roi b {
  color: var(--t);
}

/* Platform Section */
.platform {
  background: var(--white);
}

.platformGrid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 55px;
  align-items: center;
}

.platformCopy p {
  font-size: 18px;
  color: var(--m);
  line-height: 1.6;
  margin-bottom: 16px;
}

.platformCards {
  display: grid;
  gap: 13px;
}

.platformCard {
  border: 1px solid var(--l);
  border-radius: 18px;
  padding: 20px 22px;
  background: var(--bg);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.platformCard.primaryPlatform {
  background: var(--p);
  color: var(--white);
  border-color: var(--p);
}

.platformCard small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 900;
  color: var(--t);
  margin-bottom: 5px;
  font-size: 11px;
}

.platformCard.primaryPlatform small {
  color: #b7d0ce;
}

.platformCard b {
  font-size: 19px;
  display: block;
}

.platformCard p {
  margin: 6px 0 0;
  font-size: 13.5px;
  color: var(--m);
  line-height: 1.45;
}

.platformCard.primaryPlatform p {
  color: #d1dadd;
}

/* Simple Doesn't Mean Basic Section */
.simple {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.item {
  padding: 18px 0;
  border-bottom: 1px solid var(--l);
}

.item:last-child {
  border-bottom: none;
}

.item b {
  display: block;
  font-size: 17px;
  color: var(--i);
  margin-bottom: 4px;
}

.item span {
  color: var(--m);
  font-size: 14.5px;
  line-height: 1.5;
}

/* CTA Section */
.cta {
  background: var(--i);
  color: var(--white);
  border-radius: 32px;
  padding: 75px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta h2 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin: 12px 0 16px;
}

.cta p {
  color: #c7d0d5;
  font-size: 18.5px;
  max-width: 650px;
  margin: 18px auto 30px;
  line-height: 1.55;
}

.cta .btn {
  background: var(--white);
  color: var(--i);
  border-color: var(--white);
  font-size: 15px;
  padding: 14px 28px;
}

.cta .btn:hover {
  background: #f0f4f5;
  color: var(--i);
}

/* Footer */
footer {
  padding: 40px 0;
  color: var(--m);
  font-size: 13px;
  border-top: 1px solid rgba(61, 84, 103, 0.08);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a:hover {
  color: var(--i);
}

/* Modal for Early Access (Accessible) */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(36, 55, 70, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  padding: 20px;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 32px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(36, 55, 70, 0.25);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.2s ease;
}

.modal-backdrop.open .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--m);
  padding: 4px;
  line-height: 1;
}

.modal-card h3 {
  font-size: 24px;
  color: var(--i);
  margin-bottom: 8px;
}

.modal-card p {
  color: var(--m);
  font-size: 14.5px;
  margin-bottom: 20px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--l);
  border-radius: 12px;
  font-size: 15px;
  outline: none;
  font-family: inherit;
}

.modal-input:focus {
  border-color: var(--t);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .hg,
  .two,
  .aigrid,
  .calc,
  .simple,
  .founderGrid,
  .closeGrid,
  .platformGrid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .three {
    grid-template-columns: 1fr;
  }

  .productShot {
    max-width: 360px;
    margin-top: 20px;
  }

  .cta {
    padding: 50px 24px;
  }
}

@media (max-width: 820px) {
  .nav .links a:not(.btn) {
    display: none;
  }
}

@media (max-width: 540px) {
  .hero {
    padding: 60px 0 50px;
  }

  .sec {
    padding: 65px 0;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .w {
    width: calc(100% - 30px);
  }

  .shotLabel {
    left: -10px;
    right: 10px;
    bottom: -20px;
  }

  .actions {
    flex-direction: column;
  }

  .actions .btn {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Secondary Pages & SaaS Components (Extended)
   ========================================================================== */

/* Sub Hero Header for inner pages */
.sub-hero {
  padding: 85px 0 50px;
  background: var(--bg);
  border-bottom: 1px solid rgba(61, 84, 103, 0.08);
}

.sub-hero h1 {
  font-size: clamp(36px, 5.2vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 12px 0 16px;
  color: var(--i);
}

.sub-hero .lead {
  font-size: 19px;
  color: var(--m);
  max-width: 740px;
  line-height: 1.55;
}

/* Badge & Pills */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--t-light);
  color: #326c68;
  font-size: 11.5px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pill-badge.draft {
  background: #fdf3e7;
  color: #8f581b;
  border: 1px solid #fae3cc;
}

.pill-badge.accent {
  background: var(--p);
  color: var(--white);
}

/* Notice / Callout Boxes */
.notice-box {
  background: var(--white);
  border: 1px solid var(--l);
  border-left: 4px solid var(--t);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 15px;
  line-height: 1.55;
}

.notice-box.warning {
  border-left-color: #d97706;
  background: #fffdfa;
}

.notice-box small {
  display: block;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  margin-bottom: 6px;
  color: var(--m);
}

/* Prose & Document Layout */
.prose {
  max-width: 840px;
  margin: 0 auto;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--i);
}

.prose h2 {
  font-size: 28px;
  letter-spacing: -0.03em;
  margin: 44px 0 16px;
  color: var(--i);
}

.prose h3 {
  font-size: 21px;
  letter-spacing: -0.02em;
  margin: 32px 0 12px;
  color: var(--i);
}

.prose p {
  margin-bottom: 18px;
  color: #3d5467;
}

.prose ul, .prose ol {
  margin: 16px 0 24px 24px;
  color: #3d5467;
}

.prose li {
  margin-bottom: 10px;
}

.prose strong {
  color: var(--i);
}

.card-block {
  background: var(--white);
  border: 1px solid var(--l);
  border-radius: 20px;
  padding: 32px;
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
}

/* SaaS 4-Column Footer */
.footer-saas {
  background: var(--white);
  border-top: 1px solid var(--l);
  padding: 75px 0 45px;
  color: var(--m);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 55px;
}

.footer-brand b {
  font-size: 21px;
  color: var(--i);
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--m);
  max-width: 270px;
}

.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--i);
  font-weight: 850;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  font-size: 14px;
  color: var(--m);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--t);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--l);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--m);
}

/* Pricing Grid & Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--l);
  border-radius: 22px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card.featured {
  border-color: var(--t);
  box-shadow: 0 16px 40px rgba(79, 140, 137, 0.14);
  position: relative;
}

.pricing-card h3 {
  font-size: 22px;
  margin: 12px 0 6px;
  color: var(--i);
}

.pricing-card .price-desc {
  font-size: 14px;
  color: var(--m);
  margin-bottom: 24px;
  line-height: 1.45;
}

.pricing-card .price-tag {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--i);
  margin-bottom: 20px;
}

.pricing-card .price-tag span {
  font-size: 14px;
  font-weight: 600;
  color: var(--m);
}

.pricing-features {
  list-style: none;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--i);
}

.pricing-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pricing-features li::before {
  content: "✓";
  color: var(--t);
  font-weight: 900;
}

.pricing-philosophy {
  background: var(--white);
  border: 1px solid var(--l);
  border-radius: 24px;
  padding: 36px;
  margin: 40px 0;
}

.standard-reliability {
  background: var(--p);
  color: var(--white);
  border-radius: 22px;
  padding: 36px;
  margin-top: 40px;
}

.standard-reliability h3 {
  font-size: 24px;
  margin: 8px 0 12px;
}

.standard-reliability p {
  color: #d1dadd;
  font-size: 16px;
  line-height: 1.55;
  max-width: 800px;
}

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

.reliability-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 18px 20px;
}

.reliability-item b {
  display: block;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 4px;
}

.reliability-item span {
  font-size: 13px;
  color: #b9cfcd;
  line-height: 1.4;
  display: block;
}

/* Forms (Contact, Support) */
.form-card {
  background: var(--white);
  border: 1px solid var(--l);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 750;
  color: var(--i);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--l);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  color: var(--i);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-control:focus {
  border-color: var(--t);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

/* Spec / Comparison Table */
.spec-table-wrap {
  overflow-x: auto;
  margin: 32px 0;
  border: 1px solid var(--l);
  border-radius: 18px;
  background: var(--white);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  text-align: left;
}

.spec-table th, .spec-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--l);
}

.spec-table th {
  background: var(--bg);
  font-weight: 800;
  color: var(--i);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-table tr:last-child td {
  border-bottom: none;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--i);
  padding: 6px;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .pricing-grid,
  .standard-reliability-grid {
    grid-template-columns: 1fr;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .links {
    display: none;
  }
  .links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 24px;
    border-bottom: 1px solid var(--l);
    box-shadow: var(--shadow-md);
    gap: 16px;
    z-index: 99;
  }
  .links.mobile-open a:not(.btn) {
    display: block !important;
    font-size: 16px;
  }
  .links.mobile-open .btn {
    width: 100%;
    text-align: center;
  }
}
