/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

body {
  font-family: 'Inter', sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #0b0f1a, #111827);
}

body.menu-open {
  overflow: hidden;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(11, 15, 26, 0.85);
  backdrop-filter: blur(10px);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
}

/* LOGO */
.logo-main {
  font-weight: 700;
  font-size: 20px;
}

.logo-sub {
  font-size: 11px;
  color: #9aa4b2;
  display: block;
}

/* NAV */
.nav-menu {
  display: flex;
  gap: 24px;
}

.nav-menu a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 14px;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #ffffff;
}

.nav-cta {
  display: inline-block;
}



/* CTA BUTTON */
.btn {
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.primary-btn {
  background: #E8612C;
  color: #fff;
}

.primary-btn:hover {
  background: #cf5425;
}

.secondary-btn {
  border: 1px solid #3b82f6;
  color: #3b82f6;
}

.secondary-btn:hover {
  background: #3b82f6;
  color: #fff;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(11, 15, 26, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* HEADLINE */
.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #E8612C;
}

/* TEXT */
.hero-sub {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 20px;
}

.hero-body {
  font-size: 16px;
  color: #94a3b8;
  margin-bottom: 30px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

/* TRUST */
.trust-signals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 13px;
  color: #9aa4b2;
}

/* ================= SECTION BASE ================= */
.section {
  padding: 50px 0;
}

.section-label {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: #64748b;
  margin-bottom: 10px;
}

.section-title {
  font-size: 36px;
  margin-bottom: 20px;
}

.section-intro {
  max-width: 750px;
  color: #94a3b8;
  margin-bottom: 50px;
  line-height: 1.6;
}

/* ================= PROBLEM GRID ================= */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

/* CARD */
.problem-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 97, 44, 0.4);
}

/* TEXT */
.problem-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.problem-card p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

/* ================= STATS ================= */
.problem-stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 40px;
}

.stat h3 {
  font-size: 28px;
  color: #E8612C;
}

.stat p {
  font-size: 14px;
  color: #94a3b8;
}


/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= SOLUTION ================= */
.solution {
  background: radial-gradient(circle at top, rgba(232,97,44,0.08), transparent);
}

/* GRID */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.solution-card {
  background: rgba(255,255,255,0.03);
  padding: 30px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* PREMIUM HOVER GLOW */
.solution-card::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232,97,44,0.15), transparent 60%);
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: 0.5s;
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232,97,44,0.5);
}

/* ICON */
.solution-card .icon {
  font-size: 32px;
  margin-bottom: 15px;
}

/* TEXT */
.solution-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.solution-card p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}



/* ================= HOW IT WORKS ================= */
.timeline {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 60px auto 0;
  padding-left: 0;
}

/* VERTICAL LINE */
.timeline::before {
  content: "";
  position: absolute;
  left: 0%;
  transform: translateX(-50%);
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.08);
}

/* ITEM */
.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  position: relative;
}

/* NUMBER */
.timeline-number {
  min-width: 50px;
  height: 50px;
  background: #E8612C;
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  position: relative;
  z-index: 2;
}

/* CONNECT DOT */
.timeline-number::after {
  content: "";
  position: absolute;
  left: -10px;
  width: 12px;
  height: 12px;
  background: #E8612C;
  border-radius: 50%;
}

/* CONTENT */
.timeline-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  text-align: left;
}

.timeline-content p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
  max-width: 1100px;
  text-align: left;
}

/* NOTE */
.timeline-note {
  margin-top: 40px;
  padding: 20px;
  border-left: 3px solid #E8612C;
  background: rgba(255,255,255,0.02);
}

.timeline-note p {
  font-size: 14px;
  color: #94a3b8;
}



/* ================= SERVICES ================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* CARD */
.service-card {
  background: rgba(255,255,255,0.03);
  padding: 30px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232,97,44,0.5);
}

/* HIGHLIGHT */
.service-card.highlight {
  border: 1px solid #E8612C;
  box-shadow: 0 0 30px rgba(232,97,44,0.2);
}

/* TAG */
.service-tag {
  font-size: 11px;
  letter-spacing: 1px;
  color: #E8612C;
  margin-bottom: 10px;
  display: inline-block;
}

/* TEXT */
.service-best {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 15px;
}

.service-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.service-card li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #cbd5e1;
}

.service-ideal {
  font-size: 13px;
  color: #94a3b8;
}

/* PRICING */
.pricing-box {
  margin-top: 60px;
  padding: 30px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
}

.price-range {
  margin-top: 10px;
  color: #E8612C;
  font-weight: 600;
}


/* ================= WHY US ================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* CARD */
.why-card {
  background: rgba(255,255,255,0.03);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,97,44,0.5);
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

/* ================= TABLE ================= */
.comparison {
  margin-top: 60px;
}

.comparison-title {
  font-size: 22px;
  margin-bottom: 20px;
}

/* TABLE */
.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

th, td {
  padding: 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 14px;
}

th {
  color: #cbd5e1;
}

td {
  color: #94a3b8;
}

/* HIGHLIGHT COLUMN */
.highlight-cell {
  color: #E8612C;
  font-weight: 600;
}



/* ================= WHO WE SERVE ================= */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* CARD */
.serve-card {
  background: rgba(255,255,255,0.03);
  padding: 28px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.serve-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,97,44,0.4);
}

/* ICON */
.serve-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

/* TEXT */
.serve-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.serve-card p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

/* FULL WIDTH CARD */
.full-width {
  grid-column: span 2;
}



/* ================= TESTIMONIALS ================= */
.testimonial-slider {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
}

/* TRACK */
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* CARD */
.testimonial-card {
  min-width: 100%;
  padding: 40px;
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.05);
}

/* TEXT */
.quote {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #e2e8f0;
}

.author {
  font-size: 14px;
  color: #94a3b8;
}

/* DOTS */
.testimonial-dots {
  margin-top: 20px;
  text-align: center;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 5px;
  background: #64748b;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #E8612C;
}

/* ================= FAQ ================= */
.faq-container {
  margin: 40px auto 0;
  max-width: 1400px;
  text-align: left;
}

.faq .section-title {
  text-align: center;
}

.form-wrapper {
  max-width: 600px;
  margin: auto;
  padding: 30px;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);

  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);

  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}


.form-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-section .section-label,
.form-section .section-title,
.form-section .section-intro {
  text-align: center;
}

form {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.form-step h3 {
  text-align: center;
  margin-bottom: 20px;
}

input, textarea, select {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  font-size: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff;
}

input:focus {
  border-color: #E8612C;
  box-shadow: 0 0 10px rgba(232,97,44,0.5);
}

input:hover {
  transform: scale(1.01);
}

/* DROPDOWN OPTIONS */
select option {
  background: #0b0f1a;
  color: #fff;
}

/* FOCUS */
select:focus {
  outline: none;
  border-color: #E8612C;
  box-shadow: 0 0 0 2px rgba(232,97,44,0.2);
}

select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 24 24' width='20'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.section {
  text-align: center;
}

.section-intro {
  margin-left: auto;
  margin-right: auto;
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* QUESTION */
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #e2e8f0;
  font-size: 16px;
  padding: 18px 0;
  cursor: pointer;
  position: relative;
}

/* PLUS ICON */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 18px;
  transition: 0.3s;
}

/* ACTIVE STATE */
.faq-item.active .faq-question::after {
  content: "-";
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 15px;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
}

/* ================= FORM ================= */
.form-progress {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  margin: 30px 0;
}

.progress-bar {
  height: 100%;
  width: 20%;
  background: #E8612C;
  transition: width 0.3s;
}

/* FORM */
form {
  max-width: 1400px;
}

/* STEPS */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}
.form-heading
{
  padding-bottom: 10px;
}


/* NAV */
.form-nav {
  display: flex;
  justify-content: space-between;
}


/* ================= FORM BUTTONS ================= */

.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 20px;
}

/* BASE BUTTON */
.form-nav button {
  flex: 1;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}


.next-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(232,97,44,0.4);
}

/* NEXT BUTTON (PRIMARY) */
.next-btn {
  margin-top: 10px;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  background: linear-gradient(135deg, #E8612C, #ff7a3c);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232, 97, 44, 0.3);
}

.next-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 97, 44, 0.5);
}

/* PREV BUTTON (SECONDARY) */
.prev-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: #cbd5e1;
}

.prev-btn:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

.next-btn:hover::after {
  transform: translateX(4px);
}

/* SUBMIT BUTTON (FINAL STEP) */
.submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #E8612C, #ff7a3c);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(232,97,44,0.35);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(232,97,44,0.55);
}

/* DISABLED STATE */
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.submit-btn:hover {
  background: #cf5425;
}

/* SUCCESS */
.form-success {
  display: none;
  margin-top: 30px;
  padding: 20px;
  border: 1px solid rgba(232,97,44,0.4);
}

.error {
  border: 1px solid red !important;
}

.success-box {
  text-align: center;
  padding: 40px;

  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ================= GDPR ================= */
.gdpr-notice {
  padding: 20px 0;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.gdpr-notice p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
}

/* ================= FOOTER ================= */
.footer {
  background: #070b14;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* TEXT */
.footer-col h3 {
  margin-bottom: 10px;
}

.footer-col h4 {
  margin-bottom: 10px;
}

.footer-col p {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 8px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 14px;
}

.footer-col a:hover {
  color: #E8612C;
}

/* SUB */
.footer-sub {
  font-size: 13px;
}

.footer-link {
  font-size: 13px;
  color: #64748b;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #64748b;
}


/* ================= MOBILE + UX IMPROVEMENTS ================= */

/* HAMBURGER */

.hamburger {
  display: none;
  width: 28px;
  height: 22px;
  position: relative;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* lines */
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { bottom: 0; }

/* ANIMATION TO X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}

/* ================= EXTRA PREMIUM TOUCH ================= */

/* SOFT SECTION DIVIDER */
.section {
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

/* SMOOTH CARD HOVER */
.problem-card,
.solution-card,
.service-card,
.why-card,
.serve-card {
  transition: all 0.35s ease;
}

/* CTA GLOW */
.primary-btn {
  box-shadow: 0 0 20px rgba(232,97,44,0.2);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
    .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* RESPONSIVE 768 px*/
@media (max-width: 768px) {
  .nav-wrapper {
    padding: 14px 0;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #0b0f1a;
    flex-direction: column;
    padding: 100px 25px;
    gap: 18px;
    transition: right 0.35s ease;
    z-index: 1050;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .hamburger {
    display: block;
  }

  /* FIX OVERLAP ISSUE */
  .nav-cta {
    display: none !important;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
    .why-grid {
    grid-template-columns: 1fr;
  }
    .serve-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: #0b0f1a;
    flex-direction: column;
    padding: 100px 30px;
    gap: 20px;
    transition: all 0.4s ease;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-cta {
    display: none !important;
  }

  /* HERO FIX */
  .hero {
    height: auto;
    padding: 120px 0 60px;
    text-align: center;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-body {
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .trust-signals {
    grid-template-columns: 1fr;
    font-size: 12px;
  }

  /* SECTION SPACING */
  .section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .section-intro {
    font-size: 14px;
    line-height: 1.6;
  }

  /* CARDS TEXT IMPROVEMENT */
  .problem-card p,
  .solution-card p,
  .why-card p,
  .serve-card p,
  .faq-answer p {
    line-height: 1.7;
  }

  /* STATS */
  .stat h3 {
    font-size: 24px;
  }

  /* SERVICES */
  .service-card ul {
    padding-left: 18px;
  }

  .service-card li {
    text-indent: -1.25em;
    padding-left: 1.25em;
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
  }


  /* TIMELINE */
  .timeline {
    padding-left: 10px;
  }

  .timeline-item {
    flex-direction: column;
  }

  .timeline-number {
    margin-bottom: 10px;
  }

  /* FORM */
  .form-nav {
    flex-direction: column;
    gap: 10px;
  }

  .submit-btn {
    width: 100%;
  }
  .form-nav {
    flex-direction: column;
  }

  .form-nav button {
    width: 100%;
  }

  /* FOOTER */
  .footer {
    padding-top: 40px;
  }

  .footer-col {
    margin-bottom: 20px;
  }

}

/* RESPONSIVE 600px*/

@media (max-width: 600px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }
  .timeline {
    padding-left: 10px;
  }

  .timeline-item {
    flex-direction: column;
  }

  .timeline-number {
    margin-bottom: 10px;
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .problem-stats {
    flex-direction: column;
  }
  .problem-grid,
  .solution-grid,
  .services-grid,
  .why-grid,
  .serve-grid {
    grid-template-columns: 1fr;
  }

  .problem-stats {
    flex-direction: column;
  }

}

