:root {
  --navy: #0d1b2a;
  --navy-deep: #07111f;
  --navy-mid: #0d2d48;
  --accent: #5eb8ff;
  --accent-strong: #31d6f3;
  --white: #ffffff;
  --gray-50: #f7fafc;
  --gray-100: #edf2f7;
  --gray-200: #d8e2eb;
  --gray-400: #8291a3;
  --gray-700: #3a4553;
  --gray-900: #111827;
  --blue-50: #e6f1fb;
  --blue-800: #0c447c;
  --amber-50: #faeeda;
  --amber-800: #633806;
  --purple-50: #eeedfe;
  --purple-800: #3c3489;
  --teal-50: #dff8f1;
  --teal-800: #0f766e;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  color: var(--gray-900);
  background: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: #67e8f9;
  color: var(--navy-deep);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #38bdf8;
  outline-offset: 3px;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 5%;
  border-bottom: 1px solid var(--gray-100);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1140px, 100%);
  min-height: 68px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(13, 27, 42, 0.18);
}

.logo-text span {
  display: block;
}

.logo-text .name {
  color: var(--gray-900);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.logo-text .sub {
  color: var(--gray-400);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 29px);
  list-style: none;
}

.nav-links a {
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #057a9a;
}

.nav-links a[aria-current="page"] {
  font-weight: 700;
}

.nav-links .nav-cta {
  padding: 10px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), #087d9e);
  color: var(--white);
  font-weight: 700;
}

.nav-links .nav-cta:hover {
  color: var(--white);
  background: var(--navy);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--gray-700);
}

.pricing-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 10vw, 124px) 5%;
  background:
    radial-gradient(circle at 78% 18%, rgba(49, 214, 243, 0.24), transparent 28%),
    radial-gradient(circle at 12% 94%, rgba(94, 184, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #0b2134 54%, #123b58 100%);
  color: var(--white);
}

.pricing-hero::after {
  position: absolute;
  right: -90px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(103, 232, 249, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1140px, 100%);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px 12px;
  border: 1px solid rgba(94, 184, 255, 0.36);
  border-radius: 999px;
  color: #67e8f9;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #67e8f9;
  box-shadow: 0 0 0 5px rgba(103, 232, 249, 0.1);
  content: "";
}

.pricing-hero h1 {
  max-width: 830px;
  font-size: clamp(40px, 6.2vw, 74px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.pricing-hero h1 span {
  color: #67e8f9;
}

.hero-copy {
  max-width: 680px;
  margin-top: 24px;
  color: #bad0e2;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.75;
}

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

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 11px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-btn.primary {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
  color: var(--navy-deep);
}

.hero-btn:hover {
  transform: translateY(-2px);
  background: var(--white);
  color: var(--navy-deep);
}

.pricing-page {
  padding: clamp(68px, 8vw, 104px) 5%;
  background:
    radial-gradient(circle at 8% 10%, rgba(94, 184, 255, 0.12), transparent 25%),
    linear-gradient(180deg, #f8fbfe 0%, #ffffff 100%);
}

.section-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.pricing-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  margin-bottom: 42px;
}

.section-label {
  margin-bottom: 12px;
  color: #0586aa;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-heading h2 {
  max-width: 720px;
  color: var(--navy-deep);
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.pricing-heading > p {
  max-width: 470px;
  color: var(--gray-400);
  font-size: 16px;
  line-height: 1.75;
}

.founding-offer-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 22px 28px;
  border: 1px solid rgba(103, 232, 249, 0.35);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(13, 27, 42, 0.18);
}

.founding-offer-badge {
  flex: 0 0 auto;
  padding: 7px 13px;
  border-radius: 999px;
  background: #54d7ef;
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.founding-offer-text {
  flex: 1 1 330px;
}

.founding-offer-text strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}

.founding-offer-text del {
  margin-right: 6px;
  color: #8fa9bf;
  font-weight: 500;
}

.founding-offer-text span {
  color: #a8bdd0;
  font-size: 13px;
}

.founding-offer-btn,
.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.founding-offer-btn {
  flex: 0 0 auto;
  padding: 12px 22px;
  background: #54d7ef;
  color: var(--navy-deep);
}

.founding-offer-btn:hover {
  transform: translateY(-2px);
  background: var(--white);
}

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

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid #dce6ef;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(13, 27, 42, 0.07);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #63e6dc);
  content: "";
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(58, 157, 232, 0.45);
  box-shadow: 0 24px 58px rgba(13, 27, 42, 0.12);
}

.pricing-card-featured {
  border-color: rgba(94, 184, 255, 0.6);
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  box-shadow: 0 22px 60px rgba(13, 27, 42, 0.22);
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 24px;
  padding: 7px 13px;
  border-radius: 0 0 10px 10px;
  background: var(--accent);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.pricing-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 14px;
  background: var(--blue-50);
  color: var(--blue-800);
  font-size: 13px;
  font-weight: 800;
}

.pricing-code-amber {
  background: var(--amber-50);
  color: var(--amber-800);
}

.pricing-code-food {
  background: var(--purple-50);
  color: var(--purple-800);
}

.pricing-code-booking {
  background: #dcf8ff;
  color: #03647d;
}

.pricing-code-hotel {
  background: var(--teal-50);
  color: var(--teal-800);
}

.pricing-code-supply {
  background: #e8edf3;
  color: #365269;
}

.pricing-type {
  color: var(--gray-400);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: right;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: 6px;
  color: var(--gray-900);
  font-size: 20px;
  line-height: 1.35;
}

.pricing-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.pricing-price span {
  flex-basis: 100%;
  color: var(--gray-400);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0 0 28px;
  color: var(--gray-700);
  font-size: 13px;
  line-height: 1.55;
  list-style: none;
}

.pricing-features li {
  position: relative;
  padding-left: 22px;
}

.pricing-features li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #0796b7;
  font-weight: 800;
  content: "\2713";
}

.pricing-cta {
  width: 100%;
  margin-top: auto;
  padding: 12px 18px;
  border: 1px solid #c9d9e6;
  background: var(--white);
  color: var(--navy);
}

.pricing-cta:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.pricing-card-featured h3,
.pricing-card-featured .pricing-price {
  color: var(--white);
}

.pricing-card-featured .pricing-type,
.pricing-card-featured .pricing-price span,
.pricing-card-featured .pricing-features {
  color: #a8bdd0;
}

.pricing-card-featured .pricing-cta {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--navy);
}

.pricing-card-featured .pricing-cta:hover {
  border-color: var(--white);
  background: var(--white);
}

.pricing-note {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  margin-top: 28px;
  padding: 24px 28px 24px 30px;
  border: 1px solid #cfe1f5;
  border-left: 5px solid var(--accent);
  border-radius: 18px;
  background: #eef6fd;
  color: #51606f;
  font-size: 13px;
  line-height: 1.7;
}

.pricing-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 14px;
}

.payment-terms {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  color: var(--gray-400);
  font-size: 12px;
}

.payment-terms span {
  padding: 4px 24px;
  border-right: 1px solid #d6e1ea;
}

.payment-terms span:last-child {
  border-right: 0;
}

.payment-terms b {
  margin-right: 4px;
  color: var(--navy);
}

.quote-process {
  padding: clamp(68px, 8vw, 96px) 5%;
  background: var(--white);
}

.quote-process h2 {
  max-width: 660px;
  color: var(--navy-deep);
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.process-card {
  padding: 26px;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  background: var(--gray-50);
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: var(--navy);
  color: #67e8f9;
  font-size: 12px;
  font-weight: 800;
}

.process-card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
}

.process-card p {
  color: #607083;
  font-size: 14px;
}

.final-cta {
  padding: 76px 5%;
  background: linear-gradient(135deg, var(--navy-deep), #123b58);
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.035em;
}

.final-cta p {
  max-width: 600px;
  margin: 0 auto 26px;
  color: #a8bdd0;
}

.final-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 11px;
  background: #67e8f9;
  color: var(--navy-deep);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

footer {
  padding: 56px 5% 24px;
  background: #06101d;
  color: #a8bdd0;
}

.footer-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 38px;
}

.footer-brand .logo-text .name {
  color: var(--white);
}

.footer-brand p {
  max-width: 340px;
  margin-top: 18px;
  font-size: 13px;
}

.footer-col h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 9px;
  list-style: none;
}

.footer-col a {
  font-size: 13px;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(168, 189, 208, 0.16);
  font-size: 12px;
}

@media (max-width: 1000px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 12px;
  }
}

@media (max-width: 850px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    right: 5%;
    left: 5%;
    display: none;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 18px 40px rgba(13, 27, 42, 0.15);
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
  }

  .nav-links a {
    display: block;
    padding: 10px 12px;
    font-size: 14px;
  }

  .nav-links .nav-cta {
    text-align: center;
  }

  .pricing-heading,
  .pricing-note {
    grid-template-columns: 1fr;
  }

  .pricing-heading {
    gap: 12px;
  }

  .process-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-top {
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .logo-text .sub {
    display: none;
  }

  .pricing-hero {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .hero-actions,
  .hero-btn {
    width: 100%;
  }

  .founding-offer-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .founding-offer-btn {
    width: 100%;
  }

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

  .pricing-card {
    min-height: 0;
    padding: 24px;
  }

  .payment-terms {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .payment-terms span {
    padding: 8px 12px;
    border-right: 0;
    border-bottom: 1px solid #d6e1ea;
    text-align: center;
  }

  .payment-terms span:last-child {
    border-bottom: 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
