/* ============================================
   Lifeskills Link API - Developer Portal
   Container: 1200px | Primary: #10BFD5 → #27E9FF
   ============================================ */

:root {
  --primary-color: #25E6FC;
  --primary-start: #10BFD5;
  --primary-end: #27E9FF;
  --primary-gradient: linear-gradient(135deg, #10BFD5 0%, #27E9FF 100%);
  --text-gradient: linear-gradient(135deg, #34C2D8 0%, #138394 100%);
  --primary-light: rgba(16, 191, 213, 0.12);
  --dark-blue: #0f172a;
  --dark-blue-soft: #1e293b;
  --dark-blue-hero: #0c1222;
  --hero-bg: #1B2A41;
  --grid-line: rgba(16, 191, 213, 0.15);
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --white: #ffffff;
  --container: 1200px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ----- Header ----- */
.site-header {
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background-image: url(../images/header-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links .nav-link-login a {
  color: #25E6FC;
  text-decoration: none;
  font-size: 16px;
  background: linear-gradient(135deg, #0E2F42 0%, #03526B 100%);
  display: flex;
  padding: 13px 25px;
  border-radius: 50px;
  gap: 5px;
  font-weight: 600;
  align-items: center;
}
.nav-links a:hover {
  opacity: 0.9;
}

/* ----- Hero ----- */
.hero {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
  background-image: linear-gradient(to bottom, #0F172A, #1E293B, #202C3E);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px),
  linear-gradient(to right, var(--grid-line) 1px, transparent 1px);
  background-size: 100% 60px, 60px 100%;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  top: 0px;
  left: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse 60% 60% at 20% 40%, #01bcd4a6 -70%, transparent 60%);
  pointer-events: none;
}
.hero__glow1 {
  position: absolute;
  top: 0px;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse 80% 80% at 90% 15%, #01bcd4c4 -70%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-bottom: 140px;
}

.hero__deco {
  position: absolute;
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 0.9rem;
  color: rgba(16, 191, 213, 0.35);
  pointer-events: none;
  white-space: nowrap;
}

.hero__deco--left {
  left: 15%;
  top: 14%;
}
.hero__deco--right {
  right: 13%;
  top: 35%;
  left: auto;
}
.hero__deco--bottom {
  left: 25%;
  bottom: 9%;
  top: auto;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  margin-bottom: 28px;
  background: rgb(8 74 82 / 61%);
  border: 1px solid rgba(16, 191, 213, 0.35);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-color);
}

.hero__title {
  margin: 0 0 20px;
  font-size: clamp(1.6rem, 3.5vw, 3.1rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero__title-gradient {
  display: block;
  margin-top: 4px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  margin-bottom: 36px;
  background: var(--primary-gradient);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(16, 191, 213, 0.4);
  text-decoration: none;
}

.hero__cta svg {
  flex-shrink: 0;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero__chip {
  padding: 6px 17px;
  background: rgb(30 42 60 / 54%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #D1D5DC;
}

.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.hero__wave svg {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ----- Sections common ----- */
.section {
  padding: 90px 0;
}
.tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-start);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 10px 16px;
  margin-bottom: 16px;
  border-radius: 20px;
  border: 1px solid rgba(0, 188, 216, .2);
}
.section-title {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.text-gradient {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}
.section-desc {
  margin: 0 0 0px;
  color: var(--text-muted);
  font-size: 1rem;
  width: 40%;
}

/* ----- Welcome ----- */
.section-welcome {
  background-image: linear-gradient(to bottom, #f4feff, #F2F8F8);
  position: relative;
  padding-bottom: 200px;
}
section.section-welcome:after {
  content: "";
  position: absolute;
  background: url(../images/rest-api-bg.png);
  width: 500px;
  height: 500px;
  bottom: 140px;
  right: 110px;
}
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.welcome-desc {
  margin-bottom: 25px;
}
.welcome-desc p {
  margin: 0 0 10px;
  color: #364153;
  font-size: 1rem;
  line-height: 1.7;
}
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.feature-list li {
  display: flex;
  gap: 0px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: var(--text-dark);
  position: relative;
  flex-direction: column;
  padding-left: 30px;
  font-weight: 700;
}
.feature-list li:after {
  content: "";
  background-image: url(../images/check-Ico.svg);
  width: 25px;
  height: 25px;
  position: absolute;
  top: 3px;
  left: 0;
}
.feature-list li span {
  font-weight: 400;
}

.code-window {
  background: var(--dark-blue-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.code-window img.code-image {
  width: 100%;
}
.code-header {
  display: flex;
  gap: 8px;
  padding: 20px 30px;
  background: #0F172A;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.code-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.code-dot.red { background: #ff5f56; }
.code-dot.yellow { background: #ffbd2e; }
.code-dot.green { background: #27c93f; }

.code-content {
  margin: 0;
  padding: 24px;
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #e2e8f0;
  overflow-x: auto;
  position: relative;
}
.code-content code {
  color: inherit;
}
.code-cursor {
  display: inline-block;
  width: 0.6em;
  height: 1.1em;
  margin-left: 2px;
  vertical-align: text-bottom;
  background: var(--primary-end, #27E9FF);
  animation: code-cursor-blink 0.9s step-end infinite;
}

@keyframes code-cursor-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.metric-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.metric-card {
  display: flex;
  gap: 4px;
  padding: 12px 15px;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: var(--shadow);
  flex-direction: column;
  align-items: flex-start;
}
.metric-card span.metric-icon {
  color: #00BCD4;
  font-size: 24px;
  font-weight: 700;
  line-height: 25px;
}
.metric-card span {
  font-size: 14px;
  color: #4A5565;
}

/* ---------------------- Partners Section ---------------------- */
.partners-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Partners tabs row */
section.section-partners {
  padding-bottom: 90px;
}
.partners-tabs {
  margin-top: 30px;
  position: relative;
  background: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.partners-tabs .partners-tab-panel {
  background: #ffffff0f;
  position: relative;
  width: 100%;
}
.partners-tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 40px;
}
.section-partners .partners-grid-inner {
  margin-top: -120px;
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 60px 40px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.partners-tab {
  padding: 14px 20px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  border-radius: 8px;
}
.partners-tab:hover {
  color: var(--text-dark);
}
.partners-tab.active {
  color: #ffffff;
  border-bottom-color: var(--primary-start);
  background: var(--primary-start);
}
.partners-tab-panel {
  display: none;
}
.partners-tab-panel.active {
  display: block;
}
.partners-grid {
  display: grid;
  gap: 24px;
}
.partners-grid--four {
  grid-template-columns: repeat(4, 1fr);
}
.partners-title .title-left span.text-gradient {
  display: block;
}
.partner-logo {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
.partner-logo img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.partner-logo span {
  display: none;
}
.hero__glow3 {
  position: absolute;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, #01bcd4c4 -30%, transparent 60%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  top: 20%;
  left: 50%;
  opacity: 0.3;
}

/* ---------------------- CTA Section ---------------------- */
.section-cta .cta-grid {
  padding: 60px 20px 80px;
  text-align: center;
  border-radius: 30px;
  background-image: linear-gradient(180deg, #00BBD3 0%, #00ACC1 100%);
  position: relative;
}
.section-cta .cta-grid:after {
  content: "";
  background: url(../images/bg-vactor.png);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.cta-grid .cta-content {
  position: relative;
  z-index: 9;
}
.section-cta .cta-title {
  margin: 0 0 2px;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 4px rgb(87 87 87 / 50%);
  line-height: 1.25;
  margin-bottom: 15px;
}
.cta-desc {
  margin: 0 0 40px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}
.btn-light-text {
  background: var(--white);
  color: var(--primary-start);
}

.btn-light-text:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.cta-grid a.hero__cta {
  background: var(--white);
  color: #077481;
  margin-bottom: 0;
  font-weight: 700;
}

/* ----- Security ----- */
section.section-cta {
  background: linear-gradient(180deg, #ffffff 0%, #F4FEFF 100%);
}
.section-security .security-title {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-security .security-title span.tag {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-security .section-title {
  margin-bottom: 15px;
}
.section-security .security-title p.security-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.security-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 50px;
}

.security-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
}

.security-card:hover {
  box-shadow: var(--shadow-lg);
}
.security-icon-shield {
  position: relative;
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
}
.security-icon-cloud {
  background: rgba(255, 152, 0, 0.12);
  position: relative;
}

.security-icon-cloud::after {
  content: '☁';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  color: #f59e0b;
}

.security-card-title {
  margin: 0 0 4px;
  font-size: 30px;
  font-weight: 700;
  color: var(--text-dark);
}
.security-card-subtitle {
  margin: 0 0 0px;
  font-size: 18px;
  color: #364153;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
}
.security-card-desc {
  margin: 0;
  font-size: 1rem;
  color: #364153;
  line-height: 1.6;
}

.security-footer {
  margin: 0;
  font-size: 18px;
  color: #364153;
  text-align: center;
  max-width: 870px;
  margin-left: auto;
  margin-right: auto;
}

/* ----- Zoho Form ----- */
section.section-form .form-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.section-form .form-title span.tag {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
section.section-form .form-title p.form-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}
.section-form {
  background: linear-gradient(180deg, #ffffff 0%, #F4FEFF 100%);
  padding: 80px 0;
}
.code-header .code-header-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.code-header h3.code-header-title {
  margin: 0;
  color: #99A1AF;
  font-weight: 400;
  font-size: 16px;
  font-family: Consolas;
  margin-left: 30px;
}


/* ----- Footer ----- */
.site-footer {
  position: relative;
  /* background: #2c4573; */
  color: var(--white);
  padding: 60px 0 0;
  overflow: hidden;
  background: url(../images/footer-image.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.footer-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(105deg, rgba(16, 191, 213, 0.12) 1px, transparent 1px),
    linear-gradient(75deg, rgba(16, 191, 213, 0.08) 1px, transparent 1px),
    linear-gradient(15deg, rgba(16, 191, 213, 0.06) 1px, transparent 1px);
  background-size: 32px 32px, 24px 24px, 40px 40px;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 70px;
}

.footer-col {
  padding-top: 0;
}

.footer-heading {
  margin: 0 0 8px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
}

.footer-students .footer-heading,
.footer-admin .footer-heading {
  margin-bottom: 12px;
}

.footer-students .footer-heading {
  text-align: left;
}

.footer-admin .footer-heading {
  text-align: right;
}

.footer-heading-line {
  width: 100%;
  max-width: 270px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.footer-admin .footer-heading-line {
  margin-left: auto;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 14px;
  max-width: 280px;
  font-weight: 600;
}
.footer-contact-row span.call-text {
  color: #bdbcbc;
}
.footer-contact-row:last-child {
  margin-bottom: 0;
}

.footer-contact-row:hover {
  color: var(--white);
}
.footer-contact-row:hover {
  text-decoration: none;
}

.footer-contact-row--reverse {
  flex-direction: row-reverse;
  margin-left: auto;
  max-width: 280px;
}
.footer-contact-row--reverse span {
  order: 2;
}
.footer-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
  min-width: 24px;
}

.footer-students .footer-icon {
  color: #7dd3fc;
}

.footer-logo {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--white);
}

.footer-logo-img {
  display: block;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  min-width: 300px;
}

.footer-logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  display: none;
}

.footer-logo-text .footer-logo-accent {
  color: #7dd3fc;
}

.footer-logo-text sup {
  font-size: 0.6em;
  vertical-align: top;
}

.footer-bottom {
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.439216);
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.90);
  text-decoration: none;
}

.footer-bottom p a:hover {
  opacity: 0.5;
  text-decoration: none;
}

/* ============================================
   Responsive
   ============================================ */
@media (min-width: 768px) {
  .hero__wave svg {
    height: auto;
  }
}  

@media (max-width: 1024px) {
.hero__deco--left {
    left: 6%;
}
.hero__deco--right {
  right: 4%;
}
.partners-grid,
.partners-grid--four {
    grid-template-columns: repeat(4, 1fr);
}
}
@media (max-width: 991.98px) {
.section, .section-form {
    padding: 50px 0;
}
.welcome-grid {
  grid-template-columns: 1fr;
  gap: 48px;
}
.section-partners .partners-grid-inner {
  padding: 40px 20px;
}
section.section-partners {
  padding-bottom: 50px;
}
.section-partners .partners-grid-inner {
  margin-top: 50px;
}
.security-card {
  padding: 25px;
}
.security-icon-shield img.security-icon {
  width: 70px;
}
.footer-heading-line {
  max-width: 160px;
}
.footer-logo-img {
  max-width: 240px;
  min-width: 240px;
}
}
@media (max-width: 768px) {
.hero {
  padding: 56px 0 80px;
}
.section-partners .partners-grid-inner {
  margin-top: 35px;
  padding: 40px 20px;
}
.security-footer {
  font-size: 16px;
}
.container {
  padding: 0 15px;
}
.hero-links {
  flex-direction: column;
  align-items: stretch;
}
.partners-grid, .partners-grid--four {
  grid-template-columns: repeat(2, 1fr);
}
.request-form .form-row {
  grid-template-columns: 1fr;
}
.site-footer .footer-inner {
  padding-bottom: 50px;
}
.site-footer {
  padding-top: 50px;
}
}

@media (max-width: 767.98px) {
  .hero__grid {
    background-size: 100% 40px, 40px 100%;
    opacity: 0.7;
}
.site-header {
    padding: 10px 0;
}
.logo img {
  width: 200px;
}
.nav-links .nav-link-login a {
  font-size: 14px;
  padding: 10px 20px;
}
.hero__chips {
  gap: 10px;
}
.welcome-grid {
  gap: 20px;
}
.partners-title {
  flex-direction: column;
  align-items: center;
}
.partners-title .title-left {
  width: 100%;
  text-align: center;
}
.partners-title p.section-desc {
  text-align: center;
}
.section-desc {
  width: 100%;
}
.partners-tab-row {
  margin-bottom: 30px;
}
.security-cards {
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.security-card-title {
  font-size: 25px;
}
.site-footer .footer-inner {
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
}
.footer-students .footer-heading {
  text-align: center;
}
.footer-heading-line {
  margin-left: auto;
  margin-right: auto;
}
.footer-contact-row {
  justify-content: center;
  width: 100%;
  max-width: 100%;
}
.site-footer .footer-inner .footer-logo {
  order: -1;
}
.footer-contact-row--reverse {
  flex-direction: row;
  max-width: 100%;
}
.footer-admin .footer-heading {
  text-align: center;
}
.footer-admin .footer-heading-line {
  margin-left: auto;
  margin-right: auto;
}
}

@media (max-width: 640px) {
.site-header .hero__deco {
  display: none;
}
.site-header .hero__chips {
  gap: 8px;
}
.site-header .hero__chip {
  padding: 8px 14px;
  font-size: 0.8rem;
}
.security-icon-shield {
  gap: 15px;
}
.section-cta .cta-desc {
  margin: 0 0 20px;
}
span.hero__deco {
  display: none;
}
}

@media (max-width: 480px) {
.section, .section-form {
  padding: 30px 0;
}
.site-header .logo img {
    width: 180px;
}
.site-header .nav-links .nav-link-login a {
  font-size: 14px;
  padding: 9px 18px;
}
.site-header .nav-links .nav-link-login a svg {
  width: 20px;
}
.site-header .hero-title {
  font-size: 1.5rem;
}
.partners-grid {
  display: grid;
  gap: 10px;
}
.partner-logo {
  min-height: 80px;
}
.partner-logo img {
  max-height: 35px;
}
.section-title {
  font-size: 1.5rem;
}
.metric-cards {
    grid-template-columns: 1fr;
}
.cta-desc {
  margin: 0 0 20px;
}
.section-cta .cta-grid {
  padding: 30px 20px 50px;
}
.footer-heading-line {
  max-width: 100%;
}
.code-header {
  gap: 8px;
  padding: 15px 15px;
}
.code-header .code-header-content {
  gap: 8px;
}
.code-header h3.code-header-title {
  margin-left: 8px;
}
}
