/*------------------------------ GLOBAL -----------------------------*/
:root {
  --primary: #2074e5;
  --accent: #e6522c;
  --accent-focus: #c74522;
  --text-main: #111827;
  --text-muted: #4b5563;
  --bg-light: #f3f4f6;
  --success: #149a14;
  --max-width: 1280px;
  --text-inverse: #f3f4f6;
  --stat-text-gray: #475569;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  line-height: 1.5;
  background-color: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: 'Poppins', sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/*------------------------------ UTILITIES -----------------------------*/
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-inverse {
  color: var(--text-inverse);
}

.text-primary {
  color: var(--primary);
}

.grey-bg {
  background-color: var(--bg-light);
}

.section-padding {
  padding: 0;
}

.section-top-padding {
  padding-top: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 2vw + 1rem, 2.25rem);
  font-weight: 800;
  margin: 2rem 0.5rem;
}

.section-title .badge {
  font-size: 0.75em;
  font-weight: 500;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
}

.method {
  margin-top: 0 !important;
  padding-top: 2rem;
}

.size-6 {
  width: 1.5rem;
  height: 1.5rem;
}

.visible-sm {
  display: none;
}

.hidden-sm {
  display: inline;
}

.hidden-sm-bl {
  display: block;
}

.cta-subtext {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.bottom-cta-subtext {
  margin-top: 1rem;
}

/*------------------------------ BUTTONS & FORMS -----------------------------*/
.cta-button {
  background-color: var(--accent);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  transition:
    background-color 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.cta-button:hover {
  background-color: var(--accent-focus);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.cta-button-secondary {
  background-color: #ffffff;
  color: #1e3a8a;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.6rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease;
}

.cta-button-secondary:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.cta-button-secondary:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
}

.cta-button-secondary:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(37, 99, 235, 0.4),
    0 10px 28px rgba(0, 0, 0, 0.18);
}

.button-light {
  background-color: #e4e4e4;
  color: #111827;
  font-size: 0.675rem;
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition:
    background-color 0.15s ease,
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

.button-light:hover {
  background-color: #dcdcdc;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.button-light:focus-visible {
  outline: 2px solid rgba(11, 94, 215, 0.4);
  outline-offset: 2px;
}

.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  background: transparent;
  border: 2px solid rgba(1, 131, 235, 0.35);
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}

.button-outline:hover {
  background: rgba(1, 131, 235, 0.06);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.button-outline:active {
  transform: translateY(0);
}

.button-primary {
  background-color: var(--primary);
  border: 0;
  cursor: pointer;
}

.button-primary:hover {
  transform: none;
  background-color: #1b63c4;
}

.button-primary:hover svg {
  transform: translateX(2px);
}

.button-featured-plan {
  display: block;
  font-size: 1.1rem;
  height: fit-content;
}

.full-width {
  width: 100%;
  text-align: center;
}

.plan-wrapper {
  position: relative;
}

.plan-wrapper > a,
.plan-wrapper > form {
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.is-hidden {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  position: absolute;
  inset: 0;
}

form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  align-items: stretch;
  margin-top: auto;
}

input[type="email"] {
  padding: 0 16px;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid #9da3ad;
  outline: none;
  flex: 1;
}

input[type="email"]:focus {
  border-color: #2074e5;
}

.plan-form {
  height: 54px !important;
  
}

.featured-plan-form {
  height: 58.4px;
}

.submit-button {
  position: relative;
}

.submit-button.loading {
  pointer-events: none;
  opacity: 0.85;
}

.submit-button.loading .arrow-icon {
  display: none;
}

.submit-button.loading::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.arrow-icon {
  stroke-width: 2;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/*------------------------------ HEADER -----------------------------*/
header {
  background: transparent;
  position: relative;
}

header nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0.8rem 2rem;
  box-sizing: border-box;
}

header nav .actions {
  justify-self: end;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.logo svg {
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
}

.logo .text {
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
  padding-top: 0.5rem;
}

/*------------------------------ HERO -----------------------------*/
.hero {
    position: relative;
    width: 100%;
    max-width: var(--max-width);
    margin: 0px auto;
}

.hero-image {
  position: relative;
}

.hero-image img {
  height: auto;
  display: block;
}

.hero-content {
  text-align: right;
  position: absolute;
  top: 4.6rem;
  right: 2rem;
  max-width: 526px;
}

.hero-content h1 {
  font-size: clamp(2.1rem, 2vw + 1.5rem, 3.2rem);
  line-height: 1.12;
  /* margin-bottom: 1rem; */
}

.hero-list {
  list-style: none;
  margin: 1.5rem 0;
}

.hero-list li {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.hero-list li svg {
  color: var(--primary);
  width: 22px;
  height: 22px;
  stroke-width: 3;
  opacity: 0.9;
}

.subtitle {
  font-size: 1.25rem;
  font-weight: 600;
}

/*------------------------------ STATS BAR -----------------------------*/
.stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 2rem 1rem;
  width: 100%;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.stat-item svg {
  width: 42px;
  height: 42px;
  color: var(--success);
  flex-shrink: 0;
}

.stat-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.stat-text strong {
  font-family: Poppins, sans-serif;
  font-size: 1.7rem;
  color: var(--text-main);
  font-weight: 700;
  display: block;
}

.stat-text span {
  color: var(--stat-text-gray);
  max-width: 8rem;
  font-size: 1.0625rem;
  white-space: pre-line;
  margin-top: -2px;
}

/*------------------------------ METHOD -----------------------------*/
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
  margin: 0 0.5rem;
}

.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.step-num {
  background: var(--primary);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 500;
}

.method-screenshot {
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/*------------------------------ TESTIMONIALS -----------------------------*/
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 0.5rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  cursor: default;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: 0 10px 40px rgb(80 110 255 / 27%);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 55px rgb(80 110 255 / 35%),
    0 0 0 1px rgb(80 110 255 / 10%);
}


.testimonial-text.expanded {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  transition:
    max-height 0.25s ease,
    opacity 0.2s ease;
}

.testimonial-toggle {
  background: none;
  border: none;

  padding: 0.5rem 0;
  margin-top: 0.5rem;

  font-size: 0.95rem;
  font-weight: 600;
  color: #2563eb;

  cursor: pointer;
  text-align: left;
}

.testimonial-toggle:hover {
  text-decoration: underline;
}

.testimonial-toggle:focus {
  outline: none;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.user-info img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
}

.user-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.badge {
  background: var(--primary);
  color: white;
  font-size: 1rem;
  padding: 4px 15px;
  border-radius: 0.7rem;
  font-weight: 600;
}

.membership-duration {
  font-size: 0.875rem;
  margin-top: 3px;
  color: var(--text-muted);
}

.testimonial-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.result-verification {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 2rem;
}

.result-verification svg {
  color: var(--success);
}

/*------------------------------ ACHIEVEMENTS -----------------------------*/
.achievments-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 3rem;
  padding: 0 0.5rem;
}

.achievments-list {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.achievment-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
}

.achievment-item:not(:last-child) {
  border-bottom: 1px solid #eef2f7;
}

.achievment-label {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 500;
  font-size: 1.5rem;
}

.achievment-result {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.achievment-val {
  line-height: 3rem;
  font-size: 3.1rem;
  font-weight: 800;
  color: #111;
  font-family: Poppins, sans-serif;
}

.achievment-description {
  color: var(--text-muted);
  font-size: 90%;
  font-weight: 400;
  opacity: 0.9;
}

.achievment-total {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--primary) 0%, #2883ff 100%);
  color: #fff;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.35);
}

.achievment-total svg {
  margin-top: 0.75rem;
  width: 3rem;
  height: 3rem;
}

.achievment-detail {
  display: flex;
  align-items: center;
}

.achievment-total h4 {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  font-weight: 900;
  line-height: 1;
  font-family: Poppins, sans-serif;
}

.total-text {
  text-align: left;
  margin-left: 0.8rem;
  width: 14rem;
  font-size: 1.1rem;
}

.achievment-label svg {
  width: 4rem;
  height: 4rem;
}

.achievment-icon {
  color: #1f2937;
  background: rgba(37, 99, 235, 0.08);
  padding: 1rem;
  border-radius: 14px;
}

.achievment-icon-federal {
  background: rgba(37, 99, 235, 0.08);
}

.achievment-icon-state {
  background: rgb(25, 165, 29, 0.08);
}

.achievment-icon-cnu {
  background: rgb(155, 13, 150, 0.08);
}

.achievement-disclaimer {
  font-size: 0.8rem;
  color: rgb(187, 187, 187);
  margin-top: 0.5rem;
  width: 14rem;
  margin-bottom: 1.5rem;
}

/*------------------------------ PRICING -----------------------------*/
.pricing-section {
  position: relative;
}

.pricing-container {
  padding-top: 1px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 0 0.5rem;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card .plan-wrapper {
  margin-top: auto;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 24px 56px rgba(1, 131, 235, 0.18);
  transform: scale(1.02);
  position: relative;
  z-index: 2;
}

.pricing-card:not(.featured) {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.badge-featured {
  display: flex;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.badge-featured svg {
  height: 0.9rem;
  width: 0.9rem;
  margin-right: 5px;
}

.plan-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.plan-description {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
}

.plan-price {
  text-align: center;
  margin-bottom: 12px;
}

.plan-price .currency {
  font-size: 18px;
  vertical-align: top;
}

.plan-price .amount {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
}

.plan-price .period {
  font-size: 14px;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.plan-highlight {
  text-align: center;
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 16px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-features li {
  font-size: 14px;
  padding-left: 22px;
  position: relative;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

.pricing-footnotes {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 2rem 0.5rem 2.2rem;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

.pricing-footnote {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  line-height: 1.5;
}

.pricing-footnote svg {
  flex-shrink: 0;
  opacity: 0.9;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 2px;
}


/*------------------------------ FAQ -----------------------------*/
.faq-two-col {
  display: flex;
  gap: 2rem;
  padding: 0 0.5rem;
}

.faq-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;  
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0;
  text-align: left;
}

.faq-item.active .faq-question {
  margin-bottom: 0.6rem;
}

.faq-icon {
  font-size: 1.25rem;
  font-weight: 500;
  color: #6b7280;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-weight: 400;
  font-size: 1rem;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 0;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  margin-top: 0.5rem;
}

/*------------------------------ BOTTOM CTA -----------------------------*/
.bottom-cta-subtitle {
  margin-bottom: 1rem;
}

/*------------------------------ FOOTER -----------------------------*/
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 64px 0 32px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 0 1rem;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand-name {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #94a3b8;
}

.footer-links h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
}

.social-icons {
  display: none;
  gap: 14px;
  margin-top: 16px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease, transform 0.15s ease;
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.social-icon:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.social-icon:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
  border-radius: 4px;
}

/*------------------------------ RESPONSIVE -----------------------------*/
@media (max-width: 1250px) {
  .section-padding {
    padding: 0 0.5rem;
  }
  .method-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    max-height: 755px;
    overflow: hidden;
  }

  .hero-content {
    text-align: center;
    position: initial;
    max-width: 100%;
    margin: 1rem;
    justify-self: center;
  }

  .hero-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem 1.25rem;
    align-items: flex-start;
    justify-content: center;
  }

  .hero-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    justify-content: center;
  }
  .submit-button {
    margin: 0;
  }

  .stats-bar {
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1rem 1rem 2rem;
  }

  .achievments-wrapper {
    grid-template-columns: 1fr;
  }
}

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

  .pricing-card.featured {
    transform: none;
  }

  .badge-featured {
    top: -10px;
  }
}

@media (max-width: 986px) {
  .visible-sm {
    display: inline;
  }
  .hidden-sm, .hidden-sm-bl {
    display: none;
  }
  .subtitle {
    display: block;
    margin-bottom: 1rem;
  }
}

@media (max-width: 900px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-content {
    text-align: left;
    margin: 0.75rem 1rem 0;
    justify-self: stretch;
  }

  .stats-bar {
    justify-content: flex-start;
    padding: 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .stats-bar {
    flex-direction: column;
    gap: 2rem;
    text-align: left;
  }

  .stat-item {
        width: 100%;
  }

  .stat-text span {
    max-width: none;
  }

  .faq-two-col {
    flex-direction: column;
  }

  .card,
  .testimonial-card,
  .pricing-card {
    padding: 1.25rem 1.5rem;
  }

  .card {
    padding-bottom: 0;
  }

  .testimonial-text {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    max-height: 4.8em;
    opacity: 0.95;
  }

  .testimonial-text.expanded {
    max-height: 1000px;
    opacity: 1;
  }

  .achievment-label {
    font-size: 1.25rem;
    gap: 1rem;
  }

  .achievment-val {
    font-size: 2.6rem;
  }

  .achievments-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .achievment-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 1rem 0.5rem 0 0;
    border-bottom: 1px solid #e5e7eb;
  }

  .achievment-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;

    font-size: 1.1rem;
    font-weight: 500;
    color: #374151;
  }

  .achievment-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .achievment-result {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    text-align: right;
  }

  .achievment-val {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
  }

  .achievment-description {
    font-size: 0.75rem;
    color: #6b7280;
  }

  .pricing-card {
    order: 2;
  }

  .pricing-card.featured {
    order: 1;
  }

}

@media (min-width: 769px) {
  .testimonial-text {
    -webkit-line-clamp: unset;
    line-clamp: unset;
  }
  .testimonial-toggle {
    display: none;
  }
}

@media (max-width: 755px) {

  .achievments-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .achievments-list {
    order: 1;
  }

  .achievment-total {
    order: 2;
  }

  .hero img {
    width: 140%;
    max-width: none;
  }
}

@media (max-width: 600px) {
  
  header nav{
    padding: 0.8rem 1rem;
  }

  .container {
    padding: 0 0.5rem;
  }

  .hero-content {
    padding: 0;
  }

  .hero-content h1 {
    margin-bottom: 0.75rem;
  }

  .hero-list {
    grid-template-columns: 1fr;
  }

  .hero-list li {
    justify-content: flex-start;
  }

  .cta-button {
    width: 100%;
    padding: 1rem 1.5rem;
    justify-content: center;
  }

  .stats-bar {
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 1rem;
  }

  .card-header {
    margin-bottom: 0.25rem;
  }

  .pricing-container {
    padding-top: 0.25rem;
  }

  .stat-text strong {
    font-size: 1.4rem;
  }

  .stat-item {
    width: 100%;
  }

  .method-grid {
    gap: 1.25rem;
  }

  .testimonials-grid,
  .pricing-grid {
    gap: 1.25rem;
  }

  .achievments-wrapper {
    gap: 1.25rem;
  }

  .achievment-item {
    padding-bottom: 0.75rem;
    gap: 0.5rem;
  }

  .achievment-result {
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 1rem;
  }

  .footer-brand {
    max-width: none;
  }

  .section-title {
    margin: 1.5rem 0.25rem;
  }

  .achievment-total {
    padding: 2.5rem 2rem;
  }

  .pricing-footnote {
    text-align: left;
  }

  input[type="email"] {
    padding: 0 0 0 16px;
  }
}
