@import url(https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap);

:root {
  --primary: #ff497c;
  --secondary: #1f2732;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Focus styles for keyboard navigation (WCAG compliance) */
*:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

a:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 2px;
}

.btn:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 3px;
}

.hamburger:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 5px;
  border-radius: 4px;
}

p {
  color: #42545e;
  letter-spacing: 0.5px;
  line-height: 28px;
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: var(--secondary);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Container */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.background-overlay {
  background: #1f2732;
  opacity: 0.75;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 9999;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-100%);
  animation: slideDown 0.4s ease forwards;
}

nav.fixed ul li a {
  color: var(--secondary);
}

nav.fixed ul li a:hover {
  color: var(--primary);
}

nav.fixed .hamburger span {
  background-color: var(--secondary);
}

nav.fixed.menu-open ul li a {
  color: #fff;
}

nav.fixed.menu-open .hamburger span {
  background-color: #fff;
}

@keyframes slideDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.span {
  color: var(--primary);
  letter-spacing: 4px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.8px;
  transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
  color: var(--primary);
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: ease-in-out 0.3s;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--secondary);
  color: #fff;
}

.btn-secondary {
  background-color: #fff;
  color: var(--primary);
}

.logo img {
  width: 100%;
  max-height: 63px;
}

.logo .logo-dark {
  display: none;
}

nav.fixed .logo .logo-light {
  display: none;
}

nav.fixed .logo .logo-dark {
  display: block;
}

.btn-secondary:hover {
  background-color: var(--secondary);
  color: #fff;
}

.logo img {
  width: 100%;
  max-height: 63px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
  width: 35px;
  height: 35px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: inline-block;
}

.hero {
  background: url("./images/slide-11.jpg") center/cover no-repeat;
  min-height: 100vh;
  position: relative;
}

.hero p {
  color: #fff;
}

.hero-content {
  color: #fff;
  position: relative;
  padding: 2rem;
  z-index: 1;
  text-align: center;
  width: 50%;
  margin: 10rem auto;
}

.hero-content h1 {
  font-size: 96px;
  margin-bottom: 1rem;
  line-height: 95px;
  letter-spacing: -3px;
  color: white;
}

.hero-description {
  font-size: 20px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta {
  margin-top: 4rem;
}

header {
  position: relative;
  z-index: 2;
}

header.fixed-placeholder {
  height: 80px;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin: 6rem 0;
}

.about-us-content {
  margin-top: 3rem;
}

.about-us-content h2 {
  font-size: 48px;
  margin-bottom: 2rem;
  color: var(--secondary);
  letter-spacing: -2px;
  font-weight: 800;
  line-height: 48px;
}

.about-us-content p {
  margin-bottom: 1.5rem;
}

.about-us-content button,
.about-us-content .btn {
  margin-top: 2rem;
}

.about-us-content button:hover {
  background: var(--secondary);
  color: #fff;
}

.about-image {
  display: block;
  width: 100%;
  height: 100%;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 0px 70px 0px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.about-image:hover img {
  will-change: transform, opacity;
}

.about-image img:hover {
  transform: translateZ(0) scale(1.02);
  transition: transform 0.3s ease;
}

.services-intro {
  text-align: center;
  margin-bottom: 4rem;
  width: 50%;
  margin: 0 auto 4rem auto;
}

.services-intro .span {
  margin-bottom: 0.5rem;
}

.services-intro h2 {
  font-size: 48px;
  color: var(--secondary);
  margin-bottom: 1rem;
  letter-spacing: -2px;
  font-weight: 800;
  line-height: 48px;
}

.services-overview {
  background: #f8f9fa;
  padding: 6rem 0;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.service-item {
  background: #fff;
  padding: 2rem;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  border-bottom: 3px solid var(--primary);
}

.service-item .service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  display: block;
}

.service-item h3 {
  margin-bottom: 1rem;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background: #fff;
}

.features-intro {
  text-align: center;
  margin-bottom: 4rem;
  width: 50%;
  margin: 0 auto 4rem auto;
}

.features-intro .span {
  margin-bottom: 0.5rem;
}

.features-intro h2 {
  font-size: 48px;
  color: var(--secondary);
  margin-bottom: 1rem;
  letter-spacing: -2px;
  font-weight: 800;
  line-height: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.feature-column h3 {
  font-size: 24px;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list li {
  color: #42545e;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  padding-left: 2rem;
  position: relative;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background: #f8f9fa;
}

.pricing-intro {
  text-align: center;
  margin-bottom: 4rem;
  width: 50%;
  margin: 0 auto 4rem auto;
}

.pricing-intro .span {
  margin-bottom: 0.5rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.pricing-intro h2 {
  font-size: 48px;
  color: var(--secondary);
  margin-bottom: 1rem;
  letter-spacing: -2px;
  font-weight: 800;
  line-height: 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-grid:has(.pricing-card:only-of-type) {
  grid-template-columns: 1fr;
  max-width: 500px;
}

.pricing-grid-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
}

.pricing-card {
  background: #fff;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 8px;
  box-shadow: rgba(41, 45, 194, 0.08) 0px 3px 10px 0px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

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

.pricing-subtitle {
  font-size: 14px;
  color: #7a8a92;
  margin-bottom: 1rem;
  font-weight: 500;
}

.pricing-tier {
  font-size: 14px;
  color: #7a8a92;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.pricing-amount {
  background: var(--primary);
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  padding: 1rem 2rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-features li {
  color: #42545e;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-extras {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  text-align: left;
}

.pricing-extras p {
  font-size: 13px;
  color: #42545e;
  margin: 0.25rem 0;
  line-height: 1.6;
}

.pricing-extras strong {
  color: var(--secondary);
  font-size: 14px;
}

.pricing-btn {
  width: 100%;
  text-align: center;
  display: block;
}

.our-process {
  background: var(--secondary);
  padding: 6rem 0;
  position: relative;
}

.our-process::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -40px;
  width: 700px;
  height: 300px;
  background: url("./images/waves.png") center/cover no-repeat;
  z-index: 0;
}

.process-intro {
  text-align: center;
  margin-bottom: 4rem;
  width: 50%;
  margin: 0 auto 4rem auto;
  color: #fff;
}

.process-intro .span {
  margin-bottom: 0.5rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-bottom: 4rem;
  position: relative;
  background-image: url("./images/process-line.png");
  background-repeat: no-repeat;
  background-position: center 10%;
  background-size: 90% auto;
}

.process-intro h2 {
  font-size: 48px;
  margin-bottom: 1rem;
  color: #fff;
  line-height: 48px;
}

.process-step {
  text-align: center;
  color: #fff;
}

.process-step img {
  border-radius: 50%;
  width: 200px;
}

.process-step h3 {
  font-size: 24px;
  margin: 1rem 0;
  color: #fff;
}

.process-step p {
  color: #fff;
}

/* CTA Banner */
.cta-banner {
  background: var(--primary);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.cta-text {
  flex: 1;
}

.cta-text .span {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  display: block;
}

.cta-text h2 {
  font-size: 48px;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -2px;
  font-weight: 800;
  line-height: 48px;
}

.cta-text p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary);
}

/* Body scroll lock for mobile menu */
body.menu-open {
  overflow: hidden;
  height: 100vh;
}

/* Scroll Animations */
[data-animate] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animate-in {
  opacity: 1;
}

[data-animate="fade-up"] {
  transform: translateY(30px);
}

[data-animate="fade-up"].animate-in {
  transform: translateY(0);
}

[data-animate="fade-left"] {
  transform: translateX(-30px);
}

[data-animate="fade-left"].animate-in {
  transform: translateX(0);
}

[data-animate="fade-right"] {
  transform: translateX(30px);
}

[data-animate="fade-right"].animate-in {
  transform: translateX(0);
}

footer {
  background: #1f2732;
  color: #fff;
}

.footer-top {
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.footer-column h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-top: 1rem;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--primary);
}

.contact-info li {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.contact-info li strong {
  color: #fff;
  font-weight: 700;
}

.contact-info li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info li a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}

.footer-bottom span {
  color: var(--primary);
}

.footer-bottom p {
  color: #fff;
  text-align: center;
}

/* Contact Page Styles */
.hero-small {
  min-height: 50vh;
}

.hero-small .hero-content {
  margin: 6rem auto 4rem;
}

.hero-small .hero-content h1 {
  font-size: 64px;
  line-height: 68px;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: #fff;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info-box h2 {
  font-size: 36px;
  color: var(--secondary);
  margin-bottom: 1rem;
  letter-spacing: -1.5px;
  font-weight: 800;
  line-height: 40px;
}

.contact-info-box > p {
  margin-bottom: 3rem;
  color: #42545e;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-detail-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-detail-item h3 {
  font-size: 18px;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-detail-item p,
.contact-detail-item a {
  color: #42545e;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.contact-detail-item a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.contact-form-box {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 700;
  color: var(--secondary);
  font-size: 14px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid #e1e4e8;
  border-radius: 4px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  color: var(--secondary);
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 73, 124, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231f2732' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.btn-submit {
  width: 100%;
  margin-top: 1rem;
  padding: 1.25rem 2rem;
  font-size: 16px;
  cursor: pointer;
}

.form-note {
  font-size: 13px;
  color: #7a8a92;
  text-align: center;
  margin-top: 0.5rem;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .hero-content {
    width: 70%;
    margin: 8rem auto 4rem;
  }

  .hero-content h1 {
    font-size: 64px;
    line-height: 68px;
  }

  .services-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

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

  .logo img {
    max-height: 50px;
  }

  .hamburger {
    display: flex;
    position: fixed;
    top: 1.5rem;
    right: 1rem;
  }

  .desktop-only {
    display: none;
  }

  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--secondary);
    flex-direction: column;
    padding: 80px 0 30px;
    gap: 0;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    overflow-y: auto;
  }

  nav ul.active {
    right: 0;
  }

  nav ul li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    width: 100%;
  }

  nav ul li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav ul li a {
    display: block;
    font-weight: 800;
  }

  .mobile-only {
    display: block;
  }

  .mobile-only .btn-primary {
    background: transparent;
    color: #fff;
    padding: 0;
    font-weight: 800;
    border-radius: 0;
    display: inline;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.8px;
  }

  .mobile-only .btn-primary:hover {
    color: var(--primary);
    background: transparent;
  }

  /* Mobile menu backdrop */
  nav::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
  }

  nav.menu-open::before {
    opacity: 1;
    visibility: visible;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-content {
    width: 90%;
    margin: 6rem auto 4rem;
  }

  .hero-content h1 {
    font-size: 40px;
    line-height: 44px;
    letter-spacing: -1.5px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-cta {
    margin-top: 2rem;
  }

  .who-this-for {
    padding: 3rem 0;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 0;
  }

  .about-us-content {
    margin-top: 0;
    order: 2;
  }

  .about-us-content h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .about-image {
    order: 1;
  }

  .contact-section {
    padding: 3rem 0;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info-box h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .contact-info-box > p {
    margin-bottom: 2rem;
  }

  .contact-form-box {
    padding: 2rem 1.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.875rem;
    font-size: 16px;
  }

  .services-overview {
    padding: 3rem 0;
  }

  .services-intro {
    width: 100%;
    margin-bottom: 2rem;
  }

  .services-intro h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .services-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-item {
    padding: 1.5rem;
  }

  .features-section {
    padding: 3rem 0;
  }

  .features-intro {
    width: 100%;
    margin-bottom: 2rem;
  }

  .features-intro h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-column h3 {
    font-size: 20px;
  }

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

  .our-process {
    padding: 3rem 0;
  }

  .our-process::after {
    display: none;
  }

  .process-intro {
    width: 100%;
    margin-bottom: 2rem;
  }

  .process-intro h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 0;
  }

  .process-step h3 {
    font-size: 20px;
    margin: 0.75rem 0;
  }

  .cta-banner {
    padding: 3rem 0;
  }

  .cta-banner::before,
  .cta-banner::after {
    display: none;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .cta-text h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .cta-text p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .footer-top {
    padding: 3rem 0 2rem;
  }

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

  .footer-logo {
    max-width: 150px;
  }

  .pricing-section {
    padding: 3rem 0;
  }

  .pricing-intro {
    width: 100%;
    margin-bottom: 2rem;
  }

  .pricing-intro h2 {
    font-size: 28px;
    line-height: 32px;
  }

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

  .pricing-grid-two {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing-amount {
    font-size: 32px;
    padding: 0.75rem 1.5rem;
  }

  .pricing-features {
    min-height: auto;
    gap: 0.75rem;
  }

  .pricing-features li {
    font-size: 14px;
    padding: 0.5rem 0;
  }
}
