/* Reset and Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1F3F5C;
    --primary-dark: #1F3F5C;
    --secondary-color: #49AC5A;
    --text-dark: #000000;
    --text-light: #737373;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #F6F6F8;
}

/* Header */
header {
    background: var(--bg-white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
}

.logo {
    height: 76px;
    width: 91px;
    display: flex;
    flex-direction: column;
    align-items: center;
    top: -5px;
    position: relative;
}
.logo-text{
    font-size: 11px;
    font-weight: 900;
    color: var(--primary-color);
    top: -10px;
    position: relative;
}
.logo-subtext{
    font-size: 4px;
    font-weight: 600;
    color: var(--text-light);
    position: relative;
    top: -14px;
    left:-9px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}
.nav-links a:focus {
    outline: none;
    color: var(--text-dark);
}



.nav-btn{
    font-size: 14px;
    width: 121px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

/* Buttons */
.btn {
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
    color: white !important;
    text-align: center;
    vertical-align: bottom;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero {
    color: white;
    padding: 6rem 2rem;
    display: flex;
    color: var(--text-dark);
    flex-direction: row;
    align-items: center;
}

.hero-content {
    max-width: 50%;
    margin: 0 auto;
    text-align: left;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-primary);
    font-weight: 600;
}

.hero p {
    font-size: 20px;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 500;
}
.highlight {
    color: var(--secondary-color);
}
.hero-description{
    font-size: 18px !important;
    font-weight: 400 !important;
    color: var(--text-light) !important;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.light-text {
    color: var(--text-light);
}
.hero-btn {
    font-size: 16px;
    padding: 0.75rem 1.5rem;
    width: 185px;
    height: 54px;
    border-radius: 40px;
    padding: 14px 32px;
}
.hero-explore{
    color:var(--secondary-color);
    font-size:16px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.hero-btn:hover {
    background-color: var(--secondary-color);
}

.hero-image {
    max-width: 50%;
    margin: 0 auto;
    text-align: center;
}

/* Section Styles */
section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 52px;
    color: var(--primary-color);
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 578px;
}

/* Problem Solution Section */
.problem-solution {
    background: var(--bg-light);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    background: white;
    padding: 76px 21px;
}

.comparison-card {
    padding: 2rem;
}

.solution{
    border-radius: 12px;
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-card.problem h3 {
    color: var(--primary-color);
}

.comparison-card.solution h3 {
    color: var(--secondary-color);
}

.comparison-card ul {
    list-style: none;
}

.comparison-card li {
    padding: 0.75rem 0;
    padding-left: 40px;
    position: relative;
    font-size: 18px;
    font-weight: 500;
}

.comparison-card li::before {
    content: "";
    inset: 0;
    background: url("./close.png") no-repeat center;
    background-size: 14px 14px;
    position: absolute;
    left: 0;
    border: 1px solid var(--text-dark);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:4px;
    top:11px;
}

.comparison-card.solution li::before {
    content: "";
    inset: 0;
    background: url("./check.png") no-repeat center;
    background-size: 14px 14px;
    top:11px;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    background-color: var(--secondary-color);
}


/* Features Grid */
.features-scroll {
    height: 440px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    border-radius: 20px;
}

/* Hide scrollbar */
.features-scroll::-webkit-scrollbar {
    display: none;
}
.features-scroll {
    scrollbar-width: none;
    margin-top: 2rem;
}

/* column layout */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* card behavior */
.feature-card {
    scroll-snap-align: start;
    min-height: 420px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, opacity 0.4s ease;
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* active card highlight effect */
.feature-card:target,
.feature-card:hover {
    transform: scale(1.02);
    opacity: 1;
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(180deg, #F9F9FA, #E0E0E0);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid #E5E7EB;
}
.feature-icon-div{
    width: 78%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #F9FAFB;
    padding:17%;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.card-content{
    width: 40%;
}
.feature-image {
    width: 60%;
    height: 354px;
    color: var(--primary-color);
    opacity: 0.9;
    font-size: 14px;
}

.feature-image{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
}

.feature-card .step-learn-more{
    color: var(--primary-dark);
    font-size: 16px;
}

.feature-card ul{
    padding-left: 20px;
    font-size: 14px;
    margin-bottom: 40px;
}

/* How It Works */
.steps {
    gap: 2rem;
}

.step {
    padding: 32px;
    padding-bottom: 12px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 22px;
}

/* Pricing */
.pricing {
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0rem;
    margin-top: 3rem;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.pricing-card {
    background: var(--bg-light);
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border: 1px solid var(--border-color);
}

.pricing-card:hover {
    transform: translateY(-5px);
}


.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 40px;
    color: var(--primary-color);
}

.price-old {
    text-decoration: line-through;
    font-size: 1.5rem;
    color: var(--text-light);
    display: block;
}

.price-period {
    font-size: 16px;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    position: relative;
    display: flex;
    align-self: center;
    gap: 20px;
    color: var(--text-light);
    font-size: 16px;
}

.price-list-check{
    width: 24px;
    height: 24px;
    display: inline-block;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-question {
    font-weight: 600;
    font-size: 1.125rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 1rem;
    color: var(--text-light);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-icon::before {
    content: "+";
}

.faq-item.active .faq-icon::before {
    content: "-";
}
.faq-header .price-button{
    width: fit-content;
    padding: 0 20px;
}
#faq{
    display: flex;
    text-align: left;
}
.faq-header .section-title, .faq-header .section-subtitle{
    text-align: left;
}
.faq-header .section-subtitle{
    margin-bottom: 15px;
    margin-top: 50px;
}

/* Form Section */
.demo-form {
    background: white;
}
.demo-buttons{
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.demo-buttons div{
    width: 40%;
}
.demo-buttons .price-button{
    width: 100%;
    padding: 0 20px;
    margin-bottom: 40px;
    border-radius: 15px;
    height: 60px;
    font-size: 18px;
    font-weight: 500;
}
.green{
    background-color: var(--secondary-color);
}
.form-container {
    max-width: 800px;
    width: 75%;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #888888;
    font-size: 12px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 75%;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    transition: border-color 0.3s;
    font-family: inherit;
    background-color: #F3F3F3;
    border: 1px solid #888888;
    color: #999999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc2626;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-error.show {
    display: block;
}

.form-success {
    background: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 1rem;
    display: none;
}

.form-success.show {
    display: block;
}

.form-button{
    width: fit-content !important;
    height: 52px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    padding: 24px;
}

.divider {
    display: flex;
    width: 100%;
    align-items: stretch;
    margin-top: 2rem;
}

.iframe-container {
    flex: 1;              
    height: 100%;         
    display: flex;
    flex-direction: column;
    min-height: 700px;
}

.divider iframe {
    width: 100%;
    height: 100%;
    border: none;
    flex: 1;
    overflow: auto;
    scrollbar-width: none;
}
.divider iframe , .divider iframe html, .divider iframe body {
    scrollbar-width: none;
}
.fui-FluentProviderr0 {
    scrollbar-width: none !important;
}
html {
    scroll-behavior: smooth;
}
/* Chrome / Edge / Safari */
.divider iframe::-webkit-scrollbar {
    width: 0;
    height: 0;
}

#challenges {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("down-arrow.png");
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: right 12px center; /* <-- adjust position here */
}

#challenges::-ms-expand {
    display: none;
}


/* CTA Section */
.cta-section {
    background-color: linear-gradient(90deg, #E0F2FE, #FFFFFF);
    color: var(--primary-dark);
    text-align: center;
    padding: 5rem 2rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}
.cta-section .price-button{
    width: 200px;
    margin: auto;
}

.dashboard-preview{
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
     -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

/* Footer */
footer {
    color: var(--primary-dark);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--primary-dark);
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
    transition: color 0.3s;
    font-size: 18px;
    font-weight: 600;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-left-section{
    padding-bottom: 3rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid lightgray;
    color: var(--primary-dark);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    font-size: 14px;
}

.footer-bottom a{
    text-decoration: none;
    color: var(--primary-color);
}

.footer-section p{
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-dark);
    opacity: 0.68;
    margin-top: 20px;
}

.hidden {
    display: none;
}

.nav-links .btn {
    font-size: 14px;
    width: 121px;
    height: 36px;   
}

.img-class{
    max-width: 100%;
    max-height: 100%;
}

.steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}
.active{
    background: white;
}

.step-header {
    display: flex;
    cursor: pointer;
    align-items: center;
    transition: background 0.2s ease;
    gap: 1.5rem;
    margin-bottom: 20px;
}

.step-header:hover {
    background: #f9fafb;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    flex-shrink: 0;
}

.step-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    flex: 1;
    text-align: left    ;
}

.step-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.step.active .step-content {
    max-height: 200px;
}

.step-content p {
    margin: 0 0 1rem 0;
    color: #6b7280;
    line-height: 1.6;
}

.step-learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    align-items: center;
    text-align: left;
    transition: color 0.2s ease;
}

.step-learn-more:hover {
    color: #2563eb;
}

.how-it-work {
  display: flex;
  align-items: center;
  height: auto;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  overflow: hidden;
}

.steps,
.step-images {
  width: 50%;
  height: 100%;
  background-color: #F5F5F5;
  border:1px solid #E5E7EB;
}

.step-images{
    display: flex;
    flex-direction: column;
    padding: 32px;
    gap: 20px;
}

.step-image img {
  width: 100%;
  height: auto;
}



.step-content {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.step.active .step-content {
  max-height: 200px;
}

.step-image img {
  transition: opacity 0.3s ease;
}

.solutions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

/* card */
.solution-card {
  background: var(--bg-light);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform .25s ease, box-shadow .25s ease;
  height: 240px;
}

/* hover effect */
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}

/* icon chip */
.solution-card .feature-icon{
    width: 60px;
    height: 60px;
}

.solution-card .feature-icon-div {
  height: 40px;
  width: 40px;
  background: linear-gradient(270deg, #F9F9FA, #E0E0E0);
}

/* text */
.solution-card h3 {
  margin: 0.5rem 0 0.25rem 0;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.solution-card p {
  line-height: 1.5;
  font-size: 16px;
  opacity: 0.68;
  color: var(--text-dark);
}

.solutions-cta {
  margin-top: 2rem;
  text-align: center;
}


/* primary CTA button */
.cta-button {
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  background: var(--primary-color);
  color: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform .25s ease, box-shadow .25s ease, background .25s;
}

/* hover animation */
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.border-12px-radius{
    border: 1px solid var(--primary-dark);
    border-radius: 5px;
    padding: 1px;
}

.billing-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  width: 100%;
  justify-content: center;
  margin-top: 40px;
}

.billing-options {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #6B7280;
  width: fit-content;
}

/* labels */
.billing-label {
  cursor: pointer;
  color: #9CA3AF;
}

.billing-label.active {
  color: #111827;
  font-weight: 600;
}

/* toggle switch */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #E5EDFF;
  transition: .3s;
  border-radius: 999px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: #1E3A8A;
  transition: .3s;
  border-radius: 50%;
}

/* toggle ON */
input:checked + .slider:before {
  transform: translateX(20px);
}

/* Save up to 20% text + arrow */
.billing-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #6B7280;
  display: inline-block;
  white-space: nowrap;
  position: relative;
  right:-50px;
  top:-30px;
}

.billing-subtitle::before {
  content: "";
  position: absolute;
  left: -55px;
  top: 10px;
  width: 60px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(15deg);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' shape-rendering='geometricPrecision' text-rendering='geometricPrecision' image-rendering='optimizeQuality' fill-rule='evenodd' clip-rule='evenodd' viewBox='0 0 512 442.137'><path d='M498.536 0c-31.387 25.229-67.042 47.435-83.064 62.714-5.282 5.036-11.007 12.153-1.664 8.574 25.872-9.91 54.004-27.667 75.003-49.744-2.547 18.498 2.366 41.616 9.997 60.504.939 2.328 3.886 11.918 7.547 15.089 1.358 1.177 2.819 1.472 4.307.179.849-.738 1.28-1.994 1.333-3.706.152-4.983-3.387-19.558-6.693-33.835-4.904-21.183-7.422-37.783-6.766-59.775z'/><path d='M243.828 205.789c4.322 22.157 5.797 44.278 4.95 66.742 45.792-16.983 86.744-47.759 120.988-82.094 41.377-41.487 75.893-91.781 100.677-142.434 7.709-15.756 12.142-22.106 22.781-36.215-19.821 95.783-137.213 251.196-246.698 274.193C232.218 412.974 103.055 495.853 0 401.433c95.353 64.985 210.522 25.748 234.658-113.48-11.685 1.414-23.233 1.218-34.515-.824-26.693-4.83-52.462-12.782-72.736-38.719-28.125-35.979-26.324-94.975 19.286-115.588 54.862-24.791 87.927 25.74 97.135 72.967zm-7.016 67.487c.889-23.575-1.128-48.171-6.111-71.196-8.03-37.107-29.726-69.192-65.407-62.82-22.084 3.943-35.695 18.675-40.56 38.116-17.522 70.029 62.617 107.875 112.078 95.9z'/></svg>");
}

.billing-label.active{
    background-color: transparent;
}

.minimum-user{
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}
.price-button{
    height: 52px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
}

.border-right{
    border-right: 1px solid lightgray;
}

.footer-right-section{
    display: flex;
    align-items: center;
    justify-content: right;
}

.footer-section{
    width: 50%;
}



/* Responsive */
@media (max-width: 768px) {
    html {
        scrollbar-width: none !important;
    }
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .form-container {
        padding: 2rem 0;
        width: 100%;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
    .hero, .how-it-work, .feature-card, #faq, .demo-buttons, .divider, .footer-content, .footer-bottom{
        flex-direction: column;
    }
    .hero-image, .hero-content {
        max-width: 100%;
    }
    .hero-content, .faq-header{
        margin-bottom: 2rem;
    }
    section, .hero, .comparison-grid{
        padding: 2rem;
    }
    .steps, .step-images, .card-content, .feature-image, .demo-buttons div, .form-group input, .form-group select, .form-group textarea, .footer-section{
        width: 100%;
        height: 100%;
    }
    .demo-buttons .price-button, .footer-section p {
        margin: 0;
    }
    .form-button, .faq-header .price-button{
        margin: 0 auto;
    }
    .hero-buttons{
        align-items: center;
        justify-content: center;
    }
    .footer-left-section{
        border: none;
        padding-bottom: 0;
    }
    .footer-right-section{
        justify-content: left;
    }
}

@media (max-width: 900px) {
  .solutions {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}

@media (max-width: 600px) {
  .solutions {
    grid-template-columns: 1fr;
  }
}

.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 810px) {
  .hamburger {
    display: block;
    margin-left: 20px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    right: 28px;
    background: white;
    flex-direction: column;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    gap: 0;
    font-size: 14px;
    padding: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }
}
