@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local(""), url("/fonts/RobotoSlab-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local(""), url("/fonts/RobotoSlab-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: local(""), url("/fonts/RobotoSlab-ExtraBold.ttf") format("truetype");
}

html,
body {
  height: 100%;
  font-family: "Roboto Slab", serif;
  /* font-weight: 200; */
  justify-content: space-between !important;
}

:root {
  --primary-color: #1976d2;
  --background-color: #0a1929;
  --text-color: #e3eafc;
  --heading-color: #90caf9;
  --accent-color: #04aa6d;
  --border-radius: 3px;
}

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

body {
  background: var(--background-color);
  color: var(--text-color);
  overflow-x: hidden;
  line-height: 1.5 !important;
  animation: fadeIn 0.3s ease-in-out;
}

header {
  background: #132f4c;
  color: #fff;
  padding: 0.5em 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 10;
  background: #132f4c;
  padding: 0;
}

.navbar {
  width: 100%;
  background: #132f4c;
  display: flex;
  align-items: center;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: center;
  padding-left: 24px;
  padding-right: 24px;
}

.nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.2em;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: none;
  width: auto;
  flex-wrap: nowrap;
  justify-content: center;
}

.nav-links>li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-logo {
  display: none;
}

.nav-links a,
.dropbtn {
  color: #e3eafc;
  text-decoration: none;
  font-weight: 700;
  padding: 0.45em 0.7em;
  border-radius: 3px;
  transition: background 0.2s;
  display: inline-block;
  line-height: 1.2;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-links a:hover,
.dropbtn:hover {
  background: #1976d2;
  color: #fff;
}

.nav-links a.active,
.dropbtn.active {
  background: #1976d2;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(41, 182, 246, 0.1);
}

.dropdown-content a.active {
  background: #1976d2;
  color: #fff;
  font-weight: 700;
}

main {
  max-width: 1024px;
  margin: 2em auto;
  padding: 2em;
  background: #132f4c;
  border-radius: 3px;
  box-shadow: 0 2px 16px rgba(13, 71, 161, 0.13);
}

h1,
h2,
h3,
h4,
h5,
h6,
.plan-title {
  font-family: "Roboto Slab", serif;
}

h1 {
  color: #b3d8f6;
  background: #162a3a;
  font-size: 2.1em;
  font-weight: 700;
  margin-bottom: 0.7em;
  margin-top: 1.2em;
  letter-spacing: 1.2px;
  border: none;
  border-radius: 3px;
  padding: calc(0.8em * 1.02) 1em;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 12px rgba(25, 118, 210, 0.08);
  text-shadow: 0 2px 8px rgba(13, 71, 161, 0.08);
  background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="2" height="2" fill="%231b3147" fill-opacity="0.13"/></svg>');
  background-repeat: repeat;
  background-size: 20px 20px;
}

h2 {
  color: #90caf9;
  background: none;
  font-size: 1.5em;
  font-weight: 700;
  margin-top: 2.2em;
  margin-bottom: 0.7em;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 3px;
  padding: 0;
  box-shadow: none;
  text-shadow: none;
}

h3 {
  color: #ecf87f;
  background: none;
  font-size: 1.2em;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.4em;
  letter-spacing: 0.2px;
  border: none;
  border-radius: 3px;
  padding: 0;
  box-shadow: none;
  text-shadow: none;
}

h4,
.plan-title {
  font-weight: 700;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #90caf9;
  font-size: 1.05em;
  margin: 2em 0 20px 0;
  line-height: 1.8;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.75em;
  margin: 2em 0;
}

.testimonial-grid img {
  width: 100%;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 2px 12px rgba(41, 182, 246, 0.13);
  background: #0a1929;
  border: 1px solid #1976d2;
}

.landing-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75em;
  margin: 2em 0;
}

.testimonial-card {
  background: #162a3a;
  border-radius: 3px;
  box-shadow: 0 2px 12px rgba(41, 182, 246, 0.13);
  border: 1px solid #1976d2;
  padding: 1.2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 1rem;
  /* font-style: italic; */
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 3px;
  margin-right: 0.8rem;
  border: 1px solid #1976d2;
}

.letter-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1976d2;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-info strong {
  color: #90caf9;
  font-size: 0.9rem;
}

.testimonial-info span {
  color: #90caf9;
  font-size: 0.8rem;
  opacity: 0.8;
}

@media (max-width: 800px) {

  h1,
  h2,
  h3 {
    scroll-margin-top: 100px;
  }

  .landing-testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1em;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-content p {
    font-size: 0.9rem;
  }
}

ul,
p,
li,
a {
  color: #e3eafc;
}

p,
li,
td {
  font-size: 1em;
  justify-content: space-evenly !important;
  line-height: 1.25em !important;
}

main ul,
main ol {
  padding-left: 2em;
}

a {
  text-decoration: underline;
  color: #75e6da;
}

a:hover {
  color: #fff;
  background: #1976d2;
  border-radius: 3px;
  text-decoration: none;
}

.green-emphasis {
  color: #04aa6d;
  font-weight: 600 !important;
}

q {
  color: #90caf9;
  font-style: italic;
  display: block;
  margin: 1em 2em;
  padding: 0.5em 1em;
  border-left: 3px solid #90caf9;
  background-color: rgba(144, 202, 249, 0.05);
}

.footer-link,
footer a {
  color: #75e6da;
  text-decoration: underline;
  font-weight: 500;
}

.footer-link:hover,
footer a:hover {
  color: #fff;
  background: #1976d2;
  border-radius: 3px;
  text-decoration: none;
}

.dropdown {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

nav>.dropdown {
  margin-bottom: -0.2em;
  position: relative;
  z-index: 20;
}

dropbtn {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 0.3em 0.7em;
}

nav>a,
nav>.dropdown>.dropbtn {
  line-height: 2.2em;
  position: relative;
  z-index: 20;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #132f4c;
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(13, 71, 161, 0.13);
  z-index: 30;
  border-radius: 3px;
  padding: 0.5em 0;
  left: 0;
  top: 100%;
}

.dropdown-content a {
  color: #75e6da;
  padding: 0.7em 1.2em;
  text-decoration: none;
  display: block;
  font-weight: 500;
  border-bottom: 1px solid #1976d2;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: #1976d2;
  color: #fff;
}

.nav-links>li.dropdown>.dropdown-content {
  min-width: 250px;
}

@media (min-width: 801px) {

  .dropdown:hover .dropdown-content,
  .dropdown:focus-within .dropdown-content,
  .dropdown:active .dropdown-content {
    display: block;
  }

  .dropdown:hover .dropbtn,
  .dropdown:focus-within .dropbtn {
    background-color: #1976d2;
    color: #fff;
    border-radius: 3px;
  }
}

.section-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2.5em 0 2.5em 0;
}

.section-block h2,
.section-block h3,
.section-block p,
.section-block ul {
  width: 100%;
  max-width: 700px;
  text-align: center;
}

.formula {
  display: inline-block;
  background: #222;
  color: #75e6da;
  font-family: "Consolas", monospace;
  font-size: 1.1em;
  padding: 0.3em 0.8em;
  border-radius: 3px;
  margin: 0.7em 0 1.2em 0;
  box-shadow: 0 2px 8px rgba(13, 71, 161, 0.1);
  letter-spacing: 0.5px;
}

.video-placeholder {
  background: #222;
  border: 2px dashed #04aa6d;
  border-radius: 3px;
  padding: 2em;
  text-align: center;
  margin: 1.5em 0 2.5em 0;
}

.video-placeholder .video-title {
  color: #90caf9;
  font-size: 1.1em;
}

.video-placeholder .video-desc {
  color: #75e6da;
  font-size: 0.95em;
}

hr {
  margin: 2.5em 0;
  border: none;
  border-top: 1.5px solid #1976d2;
}

pre,
pre>code,
.formula,
[class*="language-"] {
  background: #181f2a;
  color: #e3eafc;
  font-family: "Consolas", monospace;
  font-size: 0.85em;
  border-radius: 3px;
  padding: 1em 1.2em;
  margin: 1.2em 0;
  overflow-x: auto;
  display: block;
  line-height: 1.6;
  white-space: pre-wrap;
  word-wrap: break-word;
  max-width: 100%;
}

.code-block {
  background: #181f2a;
  color: #e3eafc;
  font-family: "Consolas", monospace;
  font-size: 1em;
  border-radius: 3px;
  padding: 0.4em 0.8em;
  margin: 0.5em 0;
  display: inline-block;
  word-break: break-all;
}

@media (max-width: 900px) {

  pre,
  pre>code,
  code.language-bash,
  code.language-javascript,
  code.language-json,
  code.language-http {
    font-size: 0.85em;
    padding: 0.8em 1em;
  }
}

@media (max-width: 600px) {

  pre,
  pre>code,
  code.language-bash,
  code.language-javascript,
  code.language-json,
  code.language-http {
    font-size: 0.85em;
    padding: 0.7em 0.8em;
    margin: 1em 0;
  }
}

pre>code {
  background: none;
  padding: 0;
  border-radius: 0;
}

code {
  font-family: "Consolas", monospace;
  font-size: 0.85em;
}

.centered-bottom-cta {
  text-align: center;
  margin: 2.5em 0 1.5em 0;
}

@media (max-width: 800px) {
  .navbar {
    justify-content: flex-start;
    padding: 0.5em 1em;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .navbar .mobile-menu-toggle,
  header .mobile-menu-toggle,
  .mobile-menu-toggle {
    display: flex;
    position: relative;
    z-index: 10000;
    background: rgba(19, 47, 76, 0.9);
    border: 2px solid #e3eafc;
    color: #e3eafc;
    font-size: 2em;
    cursor: pointer;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-right: 10px;
    border-radius: 3px;
    opacity: 1;
    visibility: visible;
  }

  .navbar .mobile-menu-toggle span,
  header .mobile-menu-toggle span,
  .mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 3px;
    background: #e3eafc;
    border-radius: 2px;
    transition: all 0.3s;
    opacity: 1;
    visibility: visible;
    min-height: 3px;
    max-height: 3px;
    line-height: 3px;
    font-size: 0;
    border: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100vw;
    width: min(80vw, 320px);
    max-width: 320px;
    height: 100%;
    background: linear-gradient(135deg, #132f4c 0%, #0a1929 100%);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 80px 0 100px 0;
    transition: right 0.3s ease;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    display: flex;
    pointer-events: auto;
    box-sizing: border-box;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links>li {
    width: 100%;
    display: block;
    border-bottom: 1px solid rgba(25, 118, 210, 0.2);
    margin: 0;
  }

  .nav-links>li:last-child {
    border-bottom: none;
    margin-top: 20px;
  }

  .nav-links>li>a,
  .dropdown>.dropbtn {
    display: block;
    padding: 16px 24px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    color: #e3eafc;
    border-radius: 3px;
    font-size: 1.1em;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    z-index: 10001;
    pointer-events: auto;
  }

  .nav-links>li>a:hover,
  .dropdown>.dropbtn:hover {
    background: rgba(25, 118, 210, 0.15);
    border-left: 4px solid #1976d2;
  }

  .dropdown-content {
    display: none;
    position: static;
    background: rgba(10, 25, 41, 0.95);
    border-left: 4px solid rgba(25, 118, 210, 0.3);
    box-shadow: none;
    border-radius: 3px;
    width: 100%;
    padding: 0;
    z-index: 1201;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  .dropdown-content a {
    padding: 12px 32px;
    font-size: 1em;
    border-bottom: 1px solid rgba(25, 118, 210, 0.1);
    color: #e3eafc;
    background: none;
    display: block;
  }

  .dropdown-content a:hover {
    background: rgba(25, 118, 210, 0.1);
    border-left: 4px solid #1976d2;
  }

  .cta-button {
    margin: 20px 24px 0 24px;
    width: auto;
  }

  .cta-button a {
    display: block;
    text-align: center;
    padding: 14px 20px;
    border-radius: 3px;
    margin: 0;
    background: #04aa6d;
    color: #fff;
    font-size: 1.1em;
  }
}

@media (max-width: 800px) {
  .nav-links.active {
    position: fixed;
    top: 0;
    right: 0;
    width: min(80vw, 320px);
    max-width: 320px;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #132f4c 0%, #0a1929 100%);
    pointer-events: auto;
    box-sizing: border-box;
  }

  .nav-links.active>li {
    pointer-events: auto;
    z-index: 100000;
  }

  .nav-links.active>li>a {
    pointer-events: auto;
    z-index: 100001;
    display: block;
    cursor: pointer;
  }
}

@media (min-width: 801px) and (max-width: 900px) {
  .nav-links {
    padding-left: 8px;
  }

  .navbar {
    max-width: 100%;
    padding: 1em;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 0.95em;
  }
}

.alternative-payment {
  background: #152837;
  border: 1px solid #1976d2;
  border-radius: 8px;
  padding: 1.5em;
  margin: 2em auto;
  text-align: center;
  box-shadow: 0 2px 12px rgba(13, 71, 161, 0.13);
  width: 75%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.alternative-payment h3 {
  color: #ecf87f;
  margin-top: 1em;
}

.alternative-payment p {
  color: #e3eafc;
  margin-bottom: 1em;
}

.footer-divider {
  display: inline-block;
  width: 1.5px;
  height: 1.8em;
  background: #1976d2;
  margin: 0 0.7em;
  vertical-align: middle;
  border-radius: 3px;
  opacity: 0.7;
}

.cta-button a {
  background: #04aa6d;
  color: #fff;
  padding: 0.5em 1.6em;
  border-radius: 3px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(4, 170, 109, 0.15);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-left: 0.8em;
  border: none;
  outline: none;
  display: inline-block;
  font-size: 1.08em;
  line-height: 1.2;
  vertical-align: middle;
}

.cta-button a:hover,
.cta-button a:focus {
  background: #038e5a;
  color: #fff;
  box-shadow: 0 4px 16px rgba(4, 170, 109, 0.25);
  text-decoration: none;
}

.cta-button a,
.cta-button a:hover,
.cta-button a:focus {
  text-decoration: none;
  background: #04aa6d;
  color: #fff;
}

.cta-button a:hover,
.cta-button a:focus {
  background: #038e5a;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #eafcff;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-menu-toggle:hover {
  background: rgba(25, 118, 210, 0.1);
}

.mobile-overlay {
  display: none;
}

@media (max-width: 800px) {
  body {
    overflow-x: hidden;
  }

  main {
    margin: 1em auto;
    padding: 1em;
    max-width: 100vw;
    box-sizing: border-box;
  }

  h1 {
    font-size: 1.5em;
    padding: 0.35em 1em;
    margin-bottom: 1em;
    margin-left: -1em;
    margin-right: -1em;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  h1 {
    padding: 0.3em 1em;
  }

  h2 {
    font-size: 1.25em;
    text-align: left;
  }

  h3 {
    font-size: 1.1em;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1em;
    margin: 1.5em 0;
  }

  .navbar {
    padding: 0.8em;
  }

  .mobile-menu-toggle {
    display: flex;
    width: 35px;
    height: 35px;
    background: rgba(19, 47, 76, 0.8);
    border: 1px solid rgba(227, 239, 252, 0.3);
    border-radius: 3px;
  }

  .nav-links>li>a,
  .dropdown>.dropbtn {
    padding: 14px 20px;
    font-size: 15px;
  }

  .dropdown-content a {
    padding: 10px 28px;
    font-size: 13px;
  }

  .cta-button {
    display: none;
  }

  .cta-button a {
    padding: 12px 16px;
    font-size: 14px;
  }
}

.centered-title {
  text-align: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.nav-links>li>a,
.nav-links>li.dropdown>.dropbtn {
  font-size: 1em;
}

@media (max-width: 800px) {

  .nav-links>li>a,
  .nav-links>li.dropdown>.dropbtn {
    font-size: 1.1em;
    padding: 16px 24px;
  }
}

@media (max-width: 480px) {

  .nav-links>li>a,
  .nav-links>li.dropdown>.dropbtn {
    font-size: 15px;
    padding: 14px 20px;
  }
}

.nav-links>li.dropdown>.dropbtn {
  color: #e3eafc;
  background: none;
  border: none;
  padding: 0.45em 0.7em;
  border-radius: 3px;
  transition: background 0.2s;
  display: inline-block;
  line-height: 1.2;
  cursor: pointer;
}

.nav-links>li.dropdown>.dropbtn:hover,
.nav-links>li.dropdown>.dropbtn.active {
  background: #1976d2;
  color: #fff;
  border-radius: 3px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(41, 182, 246, 0.1);
}

@media (max-width: 800px) {
  .nav-links>li.dropdown>.dropbtn {
    display: block;
    padding: 16px 24px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    color: #e3eafc;
    border-radius: 3px;
    font-size: 1.1em;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    z-index: 10001;
    pointer-events: auto;
    line-height: normal;
    font-weight: 700;
    transition: background 0.2s;
    box-shadow: none;
  }

  .nav-links>li.dropdown>.dropbtn:hover {
    background: rgba(25, 118, 210, 0.15);
    border-left: 4px solid #1976d2;
    color: #e3eafc;
    border-radius: 3px;
    font-weight: 500;
    box-shadow: none;
  }
}

@media (max-width: 480px) {
  .nav-links>li.dropdown>.dropbtn {
    font-size: 15px;
    padding: 14px 20px;
  }
}

.landing-hero {
  background: #132f4c;
  padding: 2em 0 3em 0;
  border-radius: 3px;
  box-shadow: 0 8px 32px rgba(25, 118, 210, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.5em;
  position: relative;
  overflow: hidden;
  justify-content: center;
  min-height: 70vh;
}

.landing-hero .hero-logo {
  width: 90px;
  height: 90px;
  margin-bottom: 1.2em;
  border-radius: 3px;
  box-shadow: 0 4px 24px rgba(25, 118, 210, 0.18);
  background: #fff;
}

.landing-hero .hero-subtitle {
  max-width: 800px;
  margin: 0 auto 1.5em auto;
  display: block;
}

.landing-hero .hero-subtitle p {
  color: #e3eafc;
  text-align: center;
  margin: 1em 0;
  line-height: 1.6;
  font-size: 1.1em;
}

.hero-cta-row {
  display: flex;
  gap: 1em;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.7em;
}

.cta-secondary {
  background: #1976d2;
  color: #fff;
}

.cta-secondary:hover {
  background: #125ea6;
}

.landing-hero .cta-button {
  background: #04aa6d;
  color: #fff;
  font-size: 1.18em;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(4, 170, 109, 0.3);
  text-decoration: none;
  margin-bottom: 0.7em;
  transition: background 0.2s, box-shadow 0.2s;
  display: inline-block;
  border: none;
  min-width: 250px;
  max-width: 250px;
  width: 250px;
  text-align: center;
  box-sizing: border-box;
}

.landing-hero .cta-button:hover {
  background: #038e5a;
  box-shadow: 0 3px 6px rgba(4, 170, 109, 0.4);
  transform: translateY(-1px);
}

.landing-hero .cta-button.cta-secondary {
  background: #1976d2;
  min-width: 250px;
  max-width: 250px;
  width: 250px;
}

.landing-hero .cta-button.cta-secondary:hover {
  background: #125ea6;
  box-shadow: 0 3px 6px rgba(25, 118, 210, 0.4);
}

@media (max-width: 700px) {

  .landing-hero .cta-button,
  .landing-hero .cta-button.cta-secondary {
    min-width: 250px;
    max-width: 320px;
    width: calc(100% - 2em);
    display: block;
    margin: 0.5em auto;
  }
}

.landing-hero .hero-secondary-cta {
  color: #e3eafc;
  font-size: 1em;
  margin-top: 0.2em;
  opacity: 0.85;
  text-align: center;
}

.landing-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2em;
  margin: 3em 0 2em 0;
}

.landing-feature-card {
  background: #162a3a;
  border-radius: 3px;
  box-shadow: 0 2px 16px rgba(25, 118, 210, 0.1);
  padding: 2em 1.3em 1.5em 1.3em;
  text-align: center;
  transition: transform 0.12s, box-shadow 0.12s;
  border: 1.5px solid #1976d2;
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
}

.landing-feature-card:hover {
  background: none;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 18px rgba(25, 118, 210, 0.13);
  text-decoration: none;
}

.landing-feature-card:visited {
  color: inherit;
  text-decoration: none;
}

.landing-feature-card h3 {
  color: #ecf87f;
  font-size: 1.18em;
  margin-bottom: 0.5em;
}

.landing-feature-card p {
  color: #e3eafc;
  font-size: 1.05em;
  opacity: 0.92;
}

.landing-testimonials {
  margin: 3em 0 2em 0;
}

.landing-testimonials .section-title {
  text-align: center;
  color: #90caf9;
  font-size: 1.4em;
  margin-bottom: 1.5em;
}

.landing-cta-section {
  text-align: center;
  margin: 3em 0 1.5em 0;
}

.landing-cta-section .cta-button {
  margin-top: 1em;
  border-radius: 3px;
}

@media (max-width: 700px) {
  .landing-hero {
    box-sizing: border-box;
    padding: 1.2em 0 2em 0;
  }

  .landing-hero .hero-title {
    font-size: 1.9em;
    padding: 0.4em 1em;
    margin-bottom: 1em;
    margin-left: -1em;
    margin-right: -1em;
    margin-top: 1.1em;
    box-sizing: border-box;
  }

  .landing-hero .hero-subtitle p {
    font-size: 1em;
  }

  .landing-hero .hero-subtitle {
    padding: 0 1em;
  }

  .landing-feature-card {
    padding: 1.2em 0.7em 1em 0.7em;
  }

  .landing-testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1em;
    max-width: 400px;
  }

  .landing-hero .cta-button,
  .landing-hero .cta-button.cta-secondary {
    min-width: 180px;
    max-width: 100%;
    width: 100%;
    display: block;
    margin: 0.5em auto;
  }
}

@media (max-width: 480px) {
  .landing-hero {
    box-sizing: border-box;
    padding: 1em 0 1.5em 0;
  }

  .landing-hero .hero-title {
    font-size: 1.8em;
    padding: 0.3em 0.5em;
    margin-bottom: 1em;
    margin-left: -0.5em;
    margin-right: -0.5em;
    margin-top: 1em;
    box-sizing: border-box;
  }
}

.demo-callout {
  background: linear-gradient(135deg, #1a2744 0%, #2a3f5f 100%);
  border: 2px solid #4fc3f7;
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0 32px 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(79, 195, 247, 0.15);
}

.demo-callout h3 {
  color: #4fc3f7;
  margin-bottom: 12px;
  font-size: 1.4em;
  font-weight: 700;
}

.demo-callout p {
  color: #b3c5d7;
  margin-bottom: 16px;
}

.demo-button {
  display: inline-block;
  background: #4fc3f7;
  color: #0a1929;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1em;
  transition: all 0.3s ease;
  margin: 12px 0;
}

.demo-button:hover {
  background: #29b6f6;
  color: #0a1929;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 195, 247, 0.25);
  text-decoration: none;
}

.demo-note {
  margin-top: 16px;
  opacity: 0.8;
}

.demo-note small {
  color: #81a4c7;
}

@media (max-width: 600px) {
  .demo-callout {
    padding: 20px 16px;
    margin: 16px 0 24px 0;
  }

  .demo-button {
    width: 100%;
    max-width: 280px;
  }
}

.cta-button,
.cta-button a {
  border-radius: 3px;
}

.cta-button,
.cta-button a,
button,
.dropbtn,
.pricing-button,
input[type="button"],
input[type="submit"],
input[type="reset"],
nav a,
.nav-links>li>a,
.dropdown>.dropbtn {
  border-radius: 3px;
}

@media (max-width: 800px) {

  .mobile-menu-toggle,
  .navbar .mobile-menu-toggle,
  header .mobile-menu-toggle {
    border-radius: 3px;
  }
}

.landing-hero .cta-button,
.landing-hero .cta-button.cta-secondary,
.pricing-button,
.landing-cta-section .cta-button {
  border-radius: 3px;
}

.landing-hero .cta-button,
.landing-hero .cta-button.cta-secondary,
.pricing-button {
  min-width: 250px;
  max-width: 250px;
  width: 250px;
  text-align: center;
  box-sizing: border-box;
}

@media (max-width: 700px) {

  .landing-hero .cta-button,
  .landing-hero .cta-button.cta-secondary,
  .pricing-button {
    width: calc(100% - 2em);
    margin: 0.5em auto;
  }
}

.docs-tile:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #04aa6d;
  transition: background 0.3s ease;
}

.docs-tile:hover:after {
  background: #04aa6d;
}

.plan-cards-container {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  margin-bottom: 2em;
  flex-wrap: wrap;
}

.plan-card {
  background: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(13, 71, 161, 0.13);
  padding: 2em 2em 1.5em 2em;
  width: 100%;
  max-width: 320px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plan-card .plan-title {
  font-size: 1.3em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5em;
  background: #00a2e8;
  width: 100%;
  text-align: center;
  border-radius: 6px 6px 0 0;
  padding: 0.7em 0;
}

.plan-card .plan-price {
  font-size: 1.9em;
  font-weight: 700;
  color: #04aa6d;
  margin-bottom: 0.5em;
  text-align: center;
  background: #f0f0f0;
  border-radius: 0 0 6px 6px;
  width: 100%;
  padding: 0.5em 0;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2em 0;
  width: 100%;
}

.plan-card ul li {
  padding: 0.5em 10px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 1.05em;
  color: #222;
  background: transparent;
  line-height: 1.6em !important;
}

.plan-card ul li:last-child {
  border-bottom: none;
}

.plan-card .plan-action {
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.plan-card .button {
  font-weight: bold;
  background-color: #04aa6d;
  border-radius: 2px;
  color: white;
  padding: 10px 0;
  text-align: center;
  text-decoration: none;
  font-size: 17px;
  display: block;
  width: 100%;
  max-width: 350px;
  transition: transform 0.1s ease-in-out;
}

.plan-card .button:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.plan-card a {
  text-decoration: none !important;
  font-weight: bold;
  border-bottom: 1px dotted #222;
  position: relative;
}

.plan-cards-container .plan-card {
  max-width: 400px;
  min-height: unset;
}

.plan-card-unique {
  max-width: 450px;
  border: 2px solid #ecf87f;
}

.plan-card-unique .plan-title {
  background: #162a3a;
  color: #ecf87f;
}

.api-pricing-container {
  display: flex;
  background: #23272c;
  border: 1.5px solid #374151;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin: 2em 0;
  max-width: 824px;
  margin-left: auto;
  margin-right: auto;
}

.api-pricing-features {
  padding: 2em;
  flex-grow: 1;
  margin-right: 2em;
}

.api-pricing-features h3 {
  margin-top: 0;
  color: #4fc3f7;
  font-size: 1.6em;
}

.api-pricing-features .feature-list {
  list-style: none;
  padding: 0;
  margin: 1em 0 0 0;
}

.api-pricing-features .feature-list li {
  padding: 0.6em 0 0.6em 1.2em;
  position: relative;
  color: #e3eafc;
  background: transparent;
  border: none;
}

.api-pricing-features .feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4fc3f7;
  font-weight: bold;
}

.api-pricing-action {
  background: #2a313a;
  padding: 2em;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.api-pricing-action .price-tag {
  font-size: 3.5em;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}

.api-pricing-action .price-description {
  color: #bbdefb;
  margin: 0.5em 0 1.5em 0;
}

.api-pricing-action .button {
  width: auto;
  font-weight: bold;
  background-color: #04aa6d;
  border-radius: 5px;
  color: white;
  padding: 12px 25px;
  text-align: center;
  text-decoration: none;
  font-size: 1.1em;
  display: block;
  border: none;
  transition:
    transform 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out;
  cursor: pointer;
}

.api-pricing-action .button:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
  .plan-cards-container {
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
  }

  .plan-card {
    min-height: unset;
    max-width: 450px;
  }
}

@media (max-width: 768px) {
  .api-pricing-container {
    flex-direction: column;
  }
  .api-pricing-action {
    border-top: 1.5px solid #374151;
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em 2em;
  margin: 2.5em 0;
  align-items: start;
}

.faq-item h3 {
  margin-top: 0;
  font-size: 1.2em;
}

.faq-separator {
  grid-column: 1 / -1;
  border: none;
  border-top: 1.5px solid #1976d2;
  margin: 1.5em 0;
}

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

.faq-item-center {
  grid-column: 1 / -1;
  text-align: center;
}

.tile-meta {
  color: #04aa6d;
  font-size: 0.9em;
  font-weight: 600;
  margin-top: 1.2em;
  text-align: left;
  padding-top: 1em;
  border-top: 1px solid rgba(4, 170, 109, 0.2);
}

.nav-links>li>a.underline-active,
.dropdown>.dropbtn.underline-active {
  background: none;
  color: inherit;
  border-radius: 0;
  font-weight: 700;
  box-shadow: none;
  position: relative;
}

.nav-links>li>a.underline-active::after,
.dropdown>.dropbtn.underline-active::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 4px;
  background: #1976d2;
  border-radius: 2px 2px 0 0;
}

.nav-links form {
  display: flex;
  align-items: center;
  margin-left: 0.5em;
}

.nav-links input[type="text"] {
  background: #162a3a url('data:image/svg+xml;utf8,<svg fill="none" stroke="%2390caf9" stroke-width="2" viewBox="0 0 16 16" width="16" height="16" xmlns="http://www.w3.org/2000/svg"><circle cx="7" cy="7" r="5"/><line x1="11" y1="11" x2="15" y2="15"/></svg>') no-repeat 8px center;
  color: #e3eafc;
  border: 1px solid #1976d2;
  border-radius: 0;
  padding: 6px 10px 6px 32px;
  font-size: 1em;
  outline: none;
  transition: border 0.2s;
  height: 34px;
  box-sizing: border-box;
}

.nav-links input[type="text"]::placeholder {
  color: #b3c5d7;
  opacity: 1;
}

.nav-links button[type="submit"] {
  background: #1976d2;
  color: #fff;
  border: 1px solid #1976d2;
  border-radius: 0 3px 3px 0;
  padding: 0 16px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  height: 34px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

h1,
h2,
h3 {
  scroll-margin-top: 70px;
}

.toc {
  background: #162a3a;
  padding: 1.5em;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(13, 71, 161, 0.13);
  max-width: 100%;
  margin: 2em 0;
  border: 1px solid #1976d2;
  text-align: left;
}

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

.toc ul ul {
  margin-left: 0;
  margin-top: 0.5em;
}

.toc li {
  margin-bottom: 0.3em;
}

.toc li a {
  color: #e3eafc;
  text-decoration: none;
  display: block;
  padding: 0.5em 0.7em;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s, border-left 0.2s;
  line-height: 1;
  border-left: 3px solid transparent;
}

.toc li a:hover {
  background: #1976d2;
  color: #fff;
  border-left: 3px solid #75e6da;
}

.toc li a.active {
  background: #1976d2;
  color: #fff;
  font-weight: 700;

  .nav-links>li>a {
    position: relative;
    transition: transform 0.1s ease-in-out;
  }

  .nav-links>li>a:active {
    transform: translateY(2px);
  }
}

@media (max-width: 600px) {
  footer {
    flex-direction: column;
    gap: 1em;
  }

  .footer-divider {
    display: none;
  }
}

.feature-item {
  background: #f0f8ff;
  border-left: 5px solid #04aa6d;
  padding: 5px 10px 5px 20px;
  margin: 10px 0;
  border-radius: 5px;
  color: #023020;
}

.feature-item a {
  color: #023020;
}

.feature-item a:hover {
  color: #fff;
  background-color: #1976d2;
}

/* Styles moved from inline HTML */
.schema-hidden {
  display: none !important;
}

.centered-title {
  text-align: center;
}

.margin-top-2-5em {
  margin-top: 2.5em;
}

.margin-1-2em {
  text-align: center;
  margin: 1.2em 0 0.5em 0;
  font-size: 1em;
}

.tooltip-trigger {
  border-bottom: 1px dotted #222;
  cursor: help;
  position: relative;
  font-weight: bold;
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2em;
  font-size: 1.1em;
}

.pricing-toggle span {
  padding: 0 1em;
  color: #e3eafc;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #00a2e8;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider.round {
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider.round:before {
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #04aa6d;
}

input:focus + .slider {
  box-shadow: 0 0 1px #04aa6d;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.trial-box {
  background: #152837;
  border: 1px solid #1976d2;
  border-radius: 8px;
  padding: 1.5em 2em;
  margin: 2.5em auto 0 auto;
  box-shadow: 0 2px 12px rgba(13, 71, 161, 0.13);
  max-width: 740px;
  text-align: center;
}

.trial-box h3 {
  color: #ecf87f;
  margin-top: 0;
  margin-bottom: 0.5em;
  font-size: 1.4em;
}

.trial-box p {
  color: #e3eafc;
  margin-bottom: 1.5em;
}

.trial-box .button {
  display: inline-block;
}

.video-row {
  display: flex;
  gap: 2em;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2em 0;
}

.video-col {
  flex: 1 1 350px;
  max-width: 500px;
  min-width: 280px;
}