:root {
  --primary: #1746a2;
  --accent: #4caf50;
  --bg: #f6f8fa;
  --card: #fff;
  --border: #e0e4ea;
  --text: #23272f;
  --muted: #7a7a7a;
  --shadow: 0 2px 12px rgba(23, 70, 162, 0.06);
}
html {
  scroll-behavior: smooth;
  font-size: 20px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background);
  transition: background-color 0.3s ease, color 0.3s ease;
}
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1.2rem 2rem 1.2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.hero-image {
  margin-top: 8rem;
  width: 100%;
  padding: 1rem;
  max-height: 100svh;
  display: block;
  margin-bottom: 1.1rem;
  border-radius: 18px;
}
h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.3rem;
  color: var(--primary);
  letter-spacing: 1px;
  font-weight: 700;
  /* text-transform: uppercase; */
}
h2 {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-weight: 700;
}
section,
.cta-footer-section {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  background: var(--card);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 1.1rem;
  margin-top: 4rem;
}
.cta-footer-section {
  background: var(--card);
  color: var(--text);
  text-align: center;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  margin-bottom: 0;
}
.cta-footer-section h2 {
  font-size: 2rem;
}
.cta-footer-section p {
  font-size: 1.07rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.footer-contact-block {
  background: #fff;
  /* no border-radius for square corners */
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 220px;
  max-width: 100%;
  padding: 1.2rem 0 1rem 0;
  margin: 0 auto;
  position: relative;
  gap: 0.4rem;
  border: none;
  border-top: 2px dotted #e0e4ea;
  box-sizing: border-box;
  margin-top: 2rem;
}
.footer-contact-name {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--primary);
}
.footer-contact-title {
  font-size: 1.01rem;
  font-weight: 500;
  color: #000;
}
.footer-contact-phone {
  font-size: 1.01rem;
  margin-bottom: 0.2rem;
}
.footer-contact-link {
  margin-top: 0.5rem;
}
.footer-contact-link a {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1.3rem;
  border-radius: 22px;
  font-size: 1.01rem;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(23, 70, 162, 0.08);
}
.footer-contact-link a:hover {
  background: var(--accent);
  color: #fff;
}
.card {
  display: flex;
  flex-direction: row;
  padding: 2rem;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  width: 70%;
}
.card-content h1 {
  text-align: left;
  font-size: 48px;
}
.card-content p {
  width: 75%;
  text-align: left;
  font-size: 1.6rem;
  color: black;
}
.card-ceo-image {
  width: 30%;
  height: 35dvh;
  object-fit: cover;
  border-radius: 10px;
}
.strategic {
  padding-left: 6rem;
  display: flex;
  flex-direction: column;
}
.strategic h2 {
  text-align: center;
}
.card ul,
.card-recommended-content .card-recommended-content-bullet {
  margin: 0 0 1rem 1.2rem;
  padding: 0;
}
.card ul li,
.card-recommended-content .card-recommended-content-bullet li {
  list-style-image: url('data:image/svg+xml,<svg transform="scale(0.5) translate(0, 26)" transform-origin="center" width="38" height="38" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="38" height="38" rx="19" fill="%23F6F8FA"/><path fill-rule="evenodd" clip-rule="evenodd" d="M25.812 11.96a.9.9 0 01.228 1.252l-8.716 12.6a.9.9 0 01-1.462.027L11.98 20.64a.9.9 0 111.442-1.078l3.134 4.196 8.005-11.571a.9.9 0 011.252-.228z" fill="%231746A2"/></svg>');
}
.card ul li::marker,
.card-recommended-content .card-recommended-content-bullet li::marker {
  font-size: 2em;
  line-height: 0.1em;
}
.plans-comparison-grid {
  background: var(--card);
  padding: 1rem;
  border-radius: 14px;
  margin-top: 3.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto;
  row-gap: 8px;
}
.plans-header-row,
.plans-row {
  display: grid;
  grid-template-columns: 1.5fr 180px 180px;
  gap: 8px;
}
.plans-header-row {
  margin-bottom: 0;
}
.plans-header-cell {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  text-align: center;
  border-radius: 6px;
  padding: 1rem 0.5rem;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}
.plans-header-cell:first-child {
  background: transparent;
  color: transparent;
  pointer-events: none;
}
.plans-header-cell.free,
.plans-header-cell.premium {
  color: #fff !important;
  font-weight: 600;
  text-transform: uppercase;
}
.plans-row {
  margin-bottom: 0;
}
.plans-feature,
.plans-cell {
  background: var(--bg);
  border-radius: 6px;
  padding: 1.1rem 0.7rem;
  font-size: 1rem;
  text-align: center;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.plans-feature {
  text-align: left;
  justify-content: flex-start;
  font-weight: 500;
}
.plans-cell.check {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: bold;
}
.plans-cell.check.dull {
  color: #d9d9d9 !important;
}
.fees-row .plans-feature,
.fees-row .plans-cell {
  background: var(--bg);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
.fees-label {
  text-align: left;
}
.fees-value {
  text-align: center;
}
.plans-comparison-grid,
.plans-comparison-grid * {
  color: var(--primary);
}
.card-recommended {
  display: flex;
  flex-direction: column;
}
.card-recommended-content {
  display: flex;
  flex-direction: row;
  padding: 2rem;
  gap: 20px;
}
.card-recommended-content-bullet {
  width: 50%;
}
.card-recommended-content .card-recommended-content-bullet li {
  margin-left: 35px;
}
.card-recommended-image {
  width: 50%;
  object-fit: contain;
}
.resume-sequence,
.linkedin-tips,
.referral-details-list {
  font-size: 1rem;
  margin-top: 10px;
}
.resume-sequence li,
.linkedin-tips li,
.referral-details-list li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
}
.referral-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.plans-row:hover .plans-feature,
.plans-row:hover .plans-cell {
  background: #eaf1fb;
}
.fees-row .plans-feature,
.fees-row .plans-cell {
  font-weight: 500;
}
.fees-row .plans-feature,
.fees-row .plans-cell {
  font-weight: 600;
}
.companies-card {
  padding: 2rem;
}
.companies-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.7rem;
  margin-top: 0.7rem;
  line-height: 2;
}
.company {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f1f5fa;
  border-radius: 999px;
  padding: 0.5em 1.2em;
  font-size: 0.97em;
  color: var(--primary);
  font-weight: 500;
  box-shadow: none;
  transition: background 0.2s, color 0.2s;
}
.site-header {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--card);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid var(--border);
}
.site-logo {
  height: 48px;
  width: 48px;
  object-fit: contain;
  margin-right: 1rem;
  border-radius: 8px;
}
.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.build-your-future-p {
  color: #111827;
}
.sticky-cta-button {
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: 15px;
  bottom: 10px;
  right: 5px;
  padding: 2rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sticky-cta-button .cta-button {
  background-color: var(--primary-color);
  color: white;
  width: 8svw;
  height: 5svh;
  border-radius: 15rem;
  border: none;
  font-size: 0.7em;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
}

.sticky-cta-button .cta-button.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.float-button {
  background-color: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5em;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.float-button.rotate {
  transform: rotate(45deg);
}

.float-button {
  outline: none;
  border: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.float-button:focus,
.float-button:active {
  outline: none;
  border: none;
  box-shadow: none;
}

.form-card {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lead-form {
  width: 60svw;
  max-width: calc(100% - 2rem);
  padding: 1rem;
  border-radius: 8px;
  background: white;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue',
    Arial;
}

.lead-form h3 {
  margin: 0 0 0.75rem 0;
}
.lead-form label {
  display: block;
  font-size: 0.85rem;
  margin-top: 0.6rem;
}
.lead-form input {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.25rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  box-sizing: border-box;
}
.lead-form input:focus {
  outline: none;
  border-color: var(--primary-color, #2b6ef6);
  box-shadow: 0 0 0 4px rgba(43, 110, 246, 0.08);
}
.lead-form button {
  margin-top: 0.9rem;
  width: 100%;
  padding: 0.7rem;
  border: none;
  border-radius: 6px;
  background: var(--primary-color, #2b6ef6);
  color: white;
  font-weight: 600;
  cursor: pointer;
}
.lead-form button:active {
  transform: translateY(1px);
}
.lead-form .error {
  color: #b00020;
  font-size: 0.9rem;
  margin-top: 0.4rem;
}

.feedback-card {
  height: 60svh;
}

.feedback-wrapper {
  width: 100%;
  height: 90%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.feedback-boxes {
  width: max-content;
  height: 90%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  animation: marquee 35s linear infinite;
}

.feedback-boxes::after {
  content: '';
  display: flex;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.feedback-box {
  width: 20rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feedback-image-wrapper {
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 4px var(--background) solid;
}

@media (max-width: 1200px) {
  .sticky-cta-button {
    right: -20px;
    bottom: -25px;
  }

  .sticky-cta-button .cta-button {
    width: 10svw;
    height: 5svh;
    font-size: 0.6em;
  }
}

@media (max-width: 880px) {
  .sticky-cta-button {
    right: -20px;
    bottom: -25px;
  }

  .sticky-cta-button .cta-button {
    width: 15svw;
    height: 5svh;
    font-size: 0.8em;
  }
}

@media (max-width: 700px) {
  html,
  body {
    font-size: 13px;
  }
  .hero-image {
    margin-top: 5rem;
  }
  .container {
    padding: 1rem 0.3rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .card-content {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .card-content h1 {
    font-size: 2.3em;
  }
  .card-content p {
    font-size: 1.3em;
  }
  .card-ceo-image {
    width: 70%;
  }
  .strategic {
    margin-top: 15px;
    padding-left: 0rem;
  }
  .plans-comparison-grid {
    padding: 0.5rem;
  }
  .plans-header-row,
  .plans-row {
    grid-template-columns: 1fr 80px 80px;
  }
  .plans-header-row,
  .plans-row {
    gap: 2px;
  }
  .plans-comparison-grid {
    row-gap: 2px;
  }
  .plans-feature,
  .plans-cell {
    padding: 0.6rem 0.1rem;
    font-size: 0.92rem !important;
    min-height: 26px;
  }
  .plans-header-cell {
    font-size: 0.85rem;
    padding: 0.7rem 0.2rem;
  }
  .plans-header-cell {
    font-size: 0.85rem;
  }
  .plans-feature,
  .plans-cell {
    font-size: 0.78rem !important;
  }
  .fees-row .plans-feature,
  .fees-row .plans-cell {
    font-size: 0.78rem !important;
  }
  .plans-header-cell {
    font-size: 0.72rem;
  }
  .plans-feature,
  .plans-cell {
    font-size: 0.7rem !important;
  }
  .fees-row .plans-feature,
  .fees-row .plans-cell {
    font-size: 0.7rem !important;
  }
  .fees-row .plans-feature,
  .fees-row .plans-cell {
    font-weight: 600;
  }
  .fees-row .plans-feature,
  .fees-row .plans-cell {
    font-weight: 600;
  }
  .plans-feature,
  .plans-cell {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .resume-sequence ul,
  .linkedin-tips ul,
  .referral-details-list ul,
  .resume-sequence li,
  .linkedin-tips li,
  .referral-details-list li,
  .referral-note {
    font-size: 0.85rem;
  }
  .card-recommended-content {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  .recommended-linkedin {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .companies-list {
    gap: 0.3rem 0.4rem;
    line-height: 1.7;
  }
  .company {
    font-size: 0.85em;
    padding: 0.13em 0.7em;
  }
  .sticky-cta-button {
    right: -20px;
    bottom: -25px;
  }

  .sticky-cta-button .cta-button {
    width: 20svw;
    height: 5svh;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .card-content {
    width: 100%;
  }
  .card-content h1 {
    font-size: 1.6em;
  }
  .card-content p {
    font-size: 1.1em;
  }
  .card-ceo-image {
    width: 90%;
  }
  .card-recommended-content-bullet {
    width: 100%;
  }
  .card-recommended-image {
    width: 90%;
    object-fit: contain;
  }
  .sticky-cta-button {
    right: -20px;
    bottom: -15px;
  }

  .sticky-cta-button .cta-button {
    width: 28svw;
    height: 5.5svh;
    font-size: 0.78em;
  }
}
