:root {
  --theme: #1b8996;
  --white: #fff;
  --black: #000;
  --text-color: #6d6d6d;
  --heading-color: #999999;
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  color: var(--text-dark);
  background: var(--white);
}
.max-width {
  max-width: 1200px;
  margin: 0 auto;
}
p.section-heading {
  text-align: center;
  background: #ffffff;
  max-width: fit-content;
  margin: 0 auto;
  padding: 5px 15px;
  border-radius: 50px;
  color: var(--text-color);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

/* Header */
.site-header {
  /* max-width: 1200px; */
  /* margin: 0 auto; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 7rem;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(90deg, #1b8996 0%, #ffffff 100%) !important;
  color: var(--white) !important;
}

.logo img {
  height: 45px;
  width: auto;
  max-width: 130px;
  display: block;
}

.nav a {
  text-decoration: none;
  color: var(--text-light);
  /* margin: 0 1rem; */
  font-weight: 500;
  background: var(--theme);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

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

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 3px;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 3px;
  background-color: var(--theme);
  transition: 0.3s;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 2rem auto 0;
  flex-wrap: wrap;
}
.left-content {
  width: 60%;
}

.left-content h1 {
  font-size: 3.2rem;
}

.right-content {
  width: 40%;
  text-align: end;
}

.right-content p {
  color: var(--text-color);
}

.hero-content {
  display: flex;
  justify-content: space-between;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-content p {
  color: var(--text-light);
  max-width: 420px;
  margin-bottom: 1.5rem;
}

.cta-btn {
  background: var(--theme);
  color: var(--white);
  border: none;
  border-radius: 30px;
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: var(--theme);
}

/* Visual */
.hero-visual {
  position: relative;
  flex: 1;
  text-align: center;
  min-width: 300px;
}

.phone {
  /* width: 260px;
  border-radius: 25px;
  box-shadow: var(--shadow); */
  width: 100%;
  max-width: 1200px;
  object-fit: contain;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 15px;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
}

.card1 {
  top: 25%;
  left: -70px;
  width: 160px;
}

.card1 .progress {
  height: 6px;
  background: #e0e0e0;
  border-radius: 10px;
  margin-top: 5px;
}

.card1 .fill {
  width: 70%;
  height: 100%;
  background: var(--theme);
  border-radius: 10px;
}

.card2 {
  top: 30%;
  right: -70px;
  width: 140px;
  text-align: center;
}

.card2 span {
  color: var(--text-light);
  font-size: 0.8rem;
}

/* Floating Labels */
.floating-label {
  position: absolute;
  background: black;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  white-space: nowrap;
}

.label1 {
  bottom: 35%;
  left: -100px;
}

.label2 {
  top: 35%;
  right: 10px;
}

/* Trusted Section */
.trusted {
  text-align: center;
  padding: 3rem 0;
  background: linear-gradient(to bottom, #fff, #f8f8f8);
}

.trusted p {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-weight: 500;
}

.logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.logos img {
  height: 40px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

.logos img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* featurs */

.features {
  padding: 2rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, #ffffff 0%, #f7f7f7 60%, #f2f2f2 100%);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--black);
}

.feature-description {
  color: var(--text-color);
  margin-bottom: 20px;
  flex-grow: 1;
}

.divider {
  height: 1px;
  background: #ecf0f1;
  margin: 20px 0;
}

.showing_img {
  width: 100%;
  height: 160px;
  box-sizing: content-box;
}

.showing_img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.amount-label {
  color: #7f8c8d;
  font-size: 0.9rem;
}

h2.section-title {
  max-width: 600px;
  text-align: center;
  margin: 30px auto;
  font-size: 3rem;
}

/* .hero-visual {
   position: relative;
    flex: 1;
    text-align: center;
    min-width: 300px;
    margin-top: 2rem;
    align-items: center;
    background: linear-gradient(235.85134265566074deg, #ffffff 0%, var(--token-a61a6e73-ca59-4dcf-881d-6ea1b2705903, rgb(217, 217, 217)) 30.288460850715637%, rgb(255, 255, 255) 74.03846383094788%, rgb(235, 236, 237) 89.90384340286255%, rgb(228, 229, 231) 100%);
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    display: flex;
    flex: 1 0 0px;
    flex-flow: row;
    gap: 16px;
    height: 1px;
    overflow: visible;
    padding: 40px 0px;
    position: relative;
    width: 100%; 
 } */
.second_row {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.second_row .feature-card {
  width: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 50px 30px;
}

/* pricing */

.pricing-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0 20px;
  margin-top: 80px;
}

.pricing-card {
  background: linear-gradient(to bottom, #ffffff, #f7f7f7, #fafafa);
  border-radius: 20px;
  padding: 30px;
  width: 330px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.plan-icon {
  width: 30px;
  border-radius: 50px;
  height: 30px;
  padding: 5px;
  background-color: #f4f4f4;
}

.plan-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.plan-price {
  font-size: 3rem;
  font-weight: 700;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-price span {
  font-size: 1.2rem;
  color: var(--text-color);
  font-weight: 400;
}

.plan-description {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
}

.btn {
  width: 100%;
  border: none;
  border-radius: 25px;
  padding: 12px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn.dark {
  background: linear-gradient(to right, #2c2c2c, #4b4b4b);
  color: #fff;
}

.btn.primary {
  background: linear-gradient(to right, #3b82f6, #2563eb);
  color: #fff;
}

.btn:hover {
  opacity: 0.9;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  border-top: 1px solid #eaeaea;
}

.plan-features li {
  font-size: 0.95rem;
  color: var(--text-color);
  padding: 10px 0;
  /* border-bottom: 1px solid #f0f0f0; */
  display: flex;
  align-items: center;
}

.plan-features li:first-child {
  margin-top: 20px;
}

.plan-features li .check_image {
  width: 20px;
  margin-right: 5px;
}

.featured {
  border: 2px solid var(--theme);
  background: linear-gradient(to bottom, #ffffff, #f1f6ff, #e7efff);
  position: relative;
  padding: 40px 0 0;
  background: var(--theme);
  margin-bottom: 0px;
  margin-top: -45px;
  border-radius: 20px;
}

.badge {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  /* background: var(--theme); */
  color: white;
  font-size: 15px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);    */
}

.scale {
  border: 1px solid #a78bfa;
}

/* faq */
.faq-container {
  display: flex;
  padding: 80px 0 40px;
}
.faq-header {
  width: 50%;
}
.faq-header p.section-heading,
.left-column p.section-heading {
  margin: unset;
}

.faq-list {
  width: 50%;
}

.faq-header h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-header p {
  opacity: 0.9;
  font-size: 1.1rem;
}

.faq-item {
  border-bottom: 1px solid #eaeaea;
  overflow: hidden;
  margin-bottom: 20px;
  background: #ffffff;
  padding: 0 0 1px;
  border-radius: 15px;
}

.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 8px 0px;
  background: linear-gradient(
    117deg,
    rgb(244, 244, 244) 0%,
    rgb(250, 250, 250) 100%
  );
}

.faq-question:hover {
  color: var(--theme);
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
  text-align: left;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background-color: var(--theme);
  transition: all 0.3s ease;
}

.faq-toggle::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-toggle::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
  color: #666;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 8px 0px;
  background: linear-gradient(
    117deg,
    rgb(244, 244, 244) 0%,
    rgb(250, 250, 250) 100%
  );
}

/* integrations */

.integrations {
  padding: 40px 0;
}

.integrations-image {
  text-align: center;
}

.integrations-image img {
  width: 100%;
}

/* contact section */

.contact-page {
  text-align: center;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

/* --- Header Styling --- */

.contact-tag {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-gray);
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* --- Form Container (The main card) --- */

.form-container {
  position: relative;
  border-radius: 20px;
  padding: 15px;
  /* background: linear-gradient(96deg, #659BFF, #C7DBFF, #4686FE); */
  background: var(--theme);
}

.form-container::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  z-index: -1;
  /* Create the subtle blue-to-transparent gradient border effect */
  background: linear-gradient(
    135deg,
    var(--shadow-color-start),
    transparent 50%,
    var(--shadow-color-start)
  );
  border-radius: inherit;
  opacity: 0.7;
  filter: blur(20px);
}

/* --- Form Elements Styling --- */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff; /* inner background */
  border-radius: 16px; /* a bit smaller to fit inside */
  padding: 30px;
}

.form-group {
  text-align: left;
}

label {
  display: block;
  font-size: 0.9rem;
  color: var(--dark-gray);
  font-weight: 500;
  margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
  color: #000;
  background-color: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box; /* Important for padding/width calculation */
  -webkit-appearance: none; /* For select styling on iOS */
  -moz-appearance: none;
  appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: #b3b3b0;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

/* Custom styling for the select dropdown */
select {
  /* Adding a custom arrow for the select box */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M9.293 12.95l.707.707L15.657 8l-1.414-1.414L10 10.828 5.757 6.586 4.343 8z" fill="%23333"/></svg>');
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 36px; /* Space for the custom arrow */
  color: var(--text-color);
}

/* Make textarea resize handle match the aesthetic */
textarea {
  resize: vertical; /* Allow vertical resize only */
}

/* --- Submit Button Styling --- */

.submit-button {
  /* Style the button to be centered and look like the image */
  display: block;
  width: 50%; /* Adjust as needed */
  max-width: 200px; /* Example max width */
  margin: 0 auto; /* Center the button */
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(145deg, #333333, #1a1a1a); /* Dark gradient */
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.submit-button:hover {
  background: linear-gradient(145deg, #444444, #2a2a2a);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.submit-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* steps css */

/* --- Main Layout Grid --- */
.steps-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 40px;
  gap: 80px;
}

.left-column {
  position: sticky;
  top: 100px;
  align-self: start;
  /* height: 100vh; */
  padding-top: 50px;
}

/* --- Right Column: Stacking Logic --- */
.right-column-container {
  position: relative;
  padding-top: 50px;
}

.right-column-content {
  height: 250vh;
}

.step-card-wrapper {
  position: sticky;
  top: 150px;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.step-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  opacity: 0.5; /* Inactive state */
  transform: scale(0.98);
  transition: all 0.5s ease-in-out, border 0.2s;
  position: relative;
  border: 1px solid transparent;
  overflow: hidden;
  width: 100%;
  max-width: 450px;
}

.step-card-wrapper.active .step-card {
  opacity: 1;
  transform: scale(1);
  border: 1px solid rgba(77, 136, 255, 0.3);
  box-shadow: 0 10px 40px rgba(77, 136, 255, 0.1),
    0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-card-wrapper.active .step-card {
  opacity: 1;
  filter: grayscale(0%);
}
.step-card .card-text-content,
.step-card .card-text-content h3,
.step-card .card-text-content p {
  opacity: 1;
  /* Use a color variable that ensures good contrast */
  color: var(--text-color);
}

.step-card-wrapper.active .step-card .card-graphic img {
  opacity: 1;
}

#step1-wrapper {
  z-index: 10;
}
#step2-wrapper {
  z-index: 20;
}
#step3-wrapper {
  z-index: 30;
}

/* footer */

/* --- Footer Container --- */
.modern-footer {
  background-color: #f7f7f7;
  padding: 30px 5%;
  color: #999999;
  margin-top: 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 0px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Contact Section (Left) --- */
.contact-section {
  flex-grow: 1;
  max-width: 400px;
}

.contact-header {
  font-size: 1.6rem;
  color: var(--text-color-secondary);
  font-weight: 500;
  margin: 0 0 5px 0;
}

.contact-email {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-color-primary);
  text-decoration: none;
  margin-bottom: 25px;
  transition: color 0.2s;
}

.contact-email:hover {
  color: var(--blue-end);
}

/* --- Subscribe Form --- */
.subscribe-form {
  display: flex;
  align-items: center;
  border-radius: 30px;
  background-color: var(--input-bg);
  padding: 6px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgb(244, 244, 244);
}

.subscribe-form input[type="email"] {
  flex-grow: 1;
  border: none;
  padding: 12px 15px;
  font-size: 1rem;
  color: var(--text-color-primary);
  background: none;
  outline: none;
}

.subscribe-form input::placeholder {
  color: #b0b0b0;
}

.subscribe-form button {
  background: var(--theme);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  box-shadow: 0 4px 10px rgba(77, 136, 255, 0.3);
}

.subscribe-form button:hover {
  opacity: 0.9;
}

.subscribe-form button:active {
  transform: scale(0.98);
}

/* --- Links Columns (Middle & Right) --- */
.footer-column {
  /* Ensures the columns take up less space than the contact section */
  min-width: 150px;
}

.column-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #aeaeae;
  margin: 0 0 15px 0;
}

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

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.contact-section a {
  font-size: 1.2rem;
  color: #000;
}

.footer-column a:hover {
  color: var(--theme);
}

/* --- Divider and Bottom --- */
.footer-divider {
  border: none;
  border-top: 1px solid var(--input-border);
  margin: 20px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom {
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.design-credit {
  font-size: 0.9rem;
  color: var(--text-color-secondary);
  margin: 0;
}

h2.main-title {
  font-size: 3rem;
  font-weight: 500;
}

.card-text-content h3 {
  font-size: 26px;
}
.card-text-content p {
  font-size: 16px;
}

span.step-number {
  background-color: #eee;
  border-radius: 40px;
  padding: 10px;
  float: right;
}

.card-graphic {
  text-align: center;
}

.card-graphic img {
  max-width: 100%;
  height: auto;
  opacity: 0.4; /* Or whatever inactive state opacity you want */
  transition: opacity 0.5s;
}
section.pricing-section {
  margin-top: 70px;
}

/* toggle css */

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2rem;
}

.billing-toggle .toggle-label {
  font-weight: 600;
  color: var(--text-color);
  font-size: 18px;
}

.billing-toggle small {
  color: var(--theme);
  font-size: 0.8em;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  margin-bottom: 0px;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 26px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--theme);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .second_row {
    flex-wrap: wrap;
  }

  .second_row .feature-card {
    width: 100%;
    flex-wrap: wrap;
  }
  .pricing-cards {
    row-gap: 20px;
    margin-top: 50px;
  }
  .featured {
    margin-top: 0;
    width: 40%;
  }

  .pricing-card {
    width: 100%;
  }

  .featured .pricing-card {
    width: auto;
  }

  .features {
    padding: 2rem 1rem;
  }

  h2.section-title,
  h2.main-title,
  .faq-header h1 {
    font-size: 2.3rem;
    text-align: center;
  }

  .faq-header p.section-heading,
  .left-column p.section-heading {
    margin: 0 auto;
  }
  .contact-page {
    width: 90%;
  }

  .right-content {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
  .left-content {
    width: 100%;
  }

  .site-header {
    padding: 1rem;
  }

  .left-content h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0;
  }

  .site-header .nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #000000;
    flex-direction: column;
    width: 100%;
    padding: 10px 0;
    border-radius: 0 0 8px 8px;
  }

  .steps-section {
    grid-template-columns: 1fr; /* stack vertically */
    gap: 30px;
    padding: 0 20px; /* reduce padding for mobile */
  }

  .faq-container {
    flex-direction: column;
    padding: 20px;
  }

  .faq-header,
  .faq-list {
    width: 100%;
  }
  .site-header .nav a {
    padding: 10px 20px;
    background: transparent;
  }

  .hamburger {
    display: flex;
  }

  .site-header .nav.active {
    display: flex;
  }

  .form-container::before {
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
  }

  .footer-content {
    flex-direction: column;
    /* gap: 40px; */
    gap: 0px;
  }

  .contact-section {
    max-width: 100%;
    text-align: center;
  }

  .contact-email {
    font-size: 1.75rem;
  }

  .subscribe-form {
    max-width: 450px;
    margin: 0 auto; /* Center the subscription form */
  }

  .footer-column {
    text-align: center;
    min-width: 100%;
  }

  /* .footer-column ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
  } */

  .footer-column li {
    margin-bottom: 0;
  }

  .footer-bottom {
    text-align: center;
  }

  /* 1. Revert main steps layout to a single column */
  .steps-section {
    grid-template-columns: 1fr;
    padding: 0 20px; /* Adjust padding for mobile */
    gap: 0;
  }

  /* 2. Disable sticky behavior and height on Left Column */
  .left-column {
    position: static;
    padding-top: 20px; /* Add some top margin back */
    padding-bottom: 20px;
  }

  .left-column .main-title {
    font-size: 2.2rem;
    text-align: center;
  }

  /* 3. Disable the tall scroll area on the right container */
  .right-column-container,
  .right-column-content {
    height: auto !important;
    padding-top: 0;
    margin: 0 auto;
  }

  /* 4. Disable sticky, fixed height, and opacity changes for card wrappers/cards */
  .step-card-wrapper {
    position: static; /* DISABLE sticky */
    height: auto !important; /* Revert height to natural content height */
    padding-bottom: 30px; /* Spacing between cards */

    /* Ensure cards stack neatly */
    display: block; 
  }

  .step-card-wrapper.active .step-card {
    /* Revert active state border/shadow if it looks too intense on mobile */
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  /* Ensure all cards are fully visible (active state) on mobile */
  .step-card,
  .step-card-wrapper:not(.active) .step-card {
    opacity: 1 !important; /* Forces full visibility on all cards */
    transform: scale(1) !important; /* Forces no scaling on all cards */
    max-width: 80%;
  }

  /* Additional general mobile fixes for the layout */
  .hero,
  .faq-container {
    padding: 0 20px;
    flex-direction: column;
    gap: 30px;
  }
  .hero {
    gap: 0;
  }
  .faq-container {
    margin-top: 50px;
  }
  section.pricing-section {
    margin-top: 0px;
    padding: 1rem;
  }
  .left-content,
  .right-content,
  .faq-header,
  .faq-list {
    width: 100%;
    text-align: center;
  }

  .card-graphic img {
    opacity: 1;
  }

  .logo img {
    height: 20px;
    width: auto;
    max-width: 24vw;
    display: block;
}


}

@media (max-width: 767px) {
  .featured {
    margin-top: 0;
    width: 100%;
  }
  .billing-toggle .toggle-label {
    font-size: 15px;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .left-content,
  .right-content {
    width: 100%;
    text-align: center;
  }
  .right-content {
    margin-bottom: 20px;
  }
  .floating-card,
  .floating-label {
    display: none;
  }
  .hero-content h1 {
    font-size: 2.3rem;
  }
}

@media (min-width: 768px) and (max-width: 1240px) {
  .site-header {
    padding: 1rem;
  }
  .features,
  .integrations,
  .faq-container {
    padding: 2rem;
  }
  .hero {
    margin: 0 2rem;
  }
  .pricing-card {
    width: 220px;
  }
}
