/* Reset and Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Quicksand:wght@400;500;600;700&display=swap");

:root {
  /* Color Palette */
  --color-gray-900: #1a1f36;
  --color-gray-800: #2d3748;
  --color-gray-700: #4a5568;
  --color-gray-600: #718096;
  --color-gray-500: #a0aec0;
  --color-gray-400: #cbd5e0;
  --color-gray-300: #e2e8f0;
  --color-gray-200: #edf2f7;
  --color-gray-100: #f7fafc;

  --color-accent: #ff6b35; /* Orange accent */
  --color-accent-light: #ff8c61;
  --color-accent-dark: #e55a2b;

  --color-bg-tint: rgba(
    230,
    240,
    255,
    0.5
  ); /* Light sky blue background tint */

  /* Animation Timings */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--color-gray-900);
  background-color: var(--color-gray-100);
  background-image: linear-gradient(
      to bottom right,
      var(--color-bg-tint),
      transparent
    ),
    url("img/bg-illustration.svg");
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-attachment: fixed, fixed;
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Top Bar */
.top-bar {
  background: rgba(26, 31, 54, 0.85);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  height: 64px;
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-bar.scrolled {
  background: #fff;
}

.top-bar.scrolled .logo,
.top-bar.scrolled .logo .dot {
  color: #1a1f36 !important;
}

.top-bar.scrolled .nav-menu a,
.top-bar.scrolled .top-cta {
  color: #1a1f36 !important;
}

.top-bar.scrolled .top-cta {
  background: var(--color-accent);
  color: #fff !important;
}

.top-bar > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 2rem;
}

.logo {
  font-family: "Quicksand", "DM Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  gap: 0.15em;
}

.logo .dot {
  color: #ff6b35;
  font-size: 1.1em;
  margin: 0 0.2em;
}

.logo img {
  height: 1.75rem;
  width: auto;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  margin: 0 2rem;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  opacity: 0.8;
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-fast);
}

.nav-menu a:hover {
  color: var(--color-accent-light);
  opacity: 1;
  transform: translateY(-1px);
}

.nav-menu a:hover::after {
  width: 100%;
}

.top-cta {
  color: #fff;
  background: var(--color-accent);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 4px rgba(255, 107, 53, 0.2);
}

.top-cta:hover {
  background: var(--color-accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Hero Section (Image Background, Overlay, Left-aligned) */
.hero {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: calc(100vh - 64px);
  width: 100vw;
  background: none;
  text-align: left;
  overflow: hidden;
}

.hero > .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("/img/hero_img_dark.png") center center/cover no-repeat;
  z-index: 0;
  filter: blur(4px);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 31, 54, 0.75);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-animation {
  position: relative;
  width: 400px;
  height: 400px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 0.5s;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.hero-animation svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.hero-label {
  font-family: "Quicksand", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  opacity: 0.9;
  background: linear-gradient(
    90deg,
    var(--color-accent),
    var(--color-accent-light)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
  font-family: "Quicksand", sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-subtitle {
  font-family: "DM Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2.5rem;
  line-height: 1.4;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
  width: 35%;
}

.hero-cta-group .cta-primary {
  width: 100%;
  text-align: center;
}

.hero .cta-primary {
  background: var(--color-accent);
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.hero .cta-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3);
}

.hero .cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero .cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Rocket Animation */
@keyframes rocketFloat {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.rocket-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawPath 2s ease-out forwards;
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

/* Problem Section */
.problem {
  background: #f3f7fb;
  border-bottom: 1.5px solid #e2e8f0;
  padding: 6rem 1rem;
}

.problem-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
}

.problem-illustration .image-placeholder {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(99, 91, 255, 0.07);
  background-image: url("img/ill-broken-webpage.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
}

.text-content {
  flex: 1;
  min-width: 300px;
}

.text-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.text-content ul {
  list-style: none;
  margin-bottom: 2rem;
}

.text-content li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: #697386;
}

/* .text-content li::before {
  content: "→";
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  color: #635bff;
} */

.btn-secondary {
  display: inline-block;
  background: #ffffff;
  color: #1a1f36;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #e6ebf1;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
  background: #f7f9fb;
  border-color: #635bff;
  color: #635bff;
}

/* Services Section */
.services {
  padding: 6rem 1rem;
  background: #ffffff;
}

.services h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1f36;
  text-align: center;
  margin-bottom: 3rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e6ebf1;
  transition: all var(--transition-medium);
  transform-origin: center;
}

.service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
  color: #635bff;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
  animation: icon-bounce 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes icon-bounce {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px) scale(1.1);
  }
  50% {
    transform: translateY(0) scale(0.95);
  }
  70% {
    transform: translateY(-5px) scale(1.05);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1f36;
  margin-bottom: 1rem;
}

.service-card p {
  color: #697386;
  font-size: 1rem;
  line-height: 1.6;
}

/* CTA Section */
.cta {
  background: #1a2b50;
  text-align: center;
  padding: 6rem 1rem;
  color: #ffffff;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.btn-primary {
  background: var(--color-accent);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.btn-primary:hover::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

/* Footer */
.site-footer {
  background: #1a2b50;
  padding: 4rem 1rem;
  color: #ffffff;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
}

/* Mobile Menu */
.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #fff;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 1rem;
  color: #1a1f36;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid #e6ebf1;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: #635bff;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero {
    height: auto;
    min-height: calc(100vh - 64px);
    padding: 120px 0 80px;
  }

  .hero > .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    align-items: center;
  }

  .hero-animation {
    width: 300px;
    height: 300px;
    margin: 40px auto 0;
  }

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

@media (max-width: 768px) {
  .top-bar > .container {
    padding: 0 1rem;
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .hero {
    height: auto;
    min-height: 70vh;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .hero-content {
    padding: 2rem 0 1rem 0;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-animation {
    width: 250px;
    height: 250px;
    margin: 30px auto 0;
  }
  .hero-certifications {
    position: static;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .services {
    padding: 4rem 1rem;
  }
  .services h2 {
    font-size: 2rem;
  }
  .two-column {
    flex-direction: column;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-subtitle {
    font-size: 1.125rem;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero .cta-primary,
  .hero .cta-secondary {
    width: 100%;
    justify-content: center;
  }
  .footer-brand-social {
    align-items: center;
    margin-bottom: 2rem;
  }
  .footer-container {
    flex-direction: column;
    gap: 2.5rem;
  }
  .hero-animation #metrics-panel.metrics-row {
    display: none !important;
  }
  .hero-animation #metrics-panel-vertical.metrics-vertical {
    display: inline !important;
  }
  .problem-cta {
    position: sticky;
    bottom: 1.5rem;
    z-index: 20;
    animation: sticky-fade 4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .problem-illustration .image-placeholder {
    max-width: 95vw;
    height: 220px;
    min-height: 160px;
  }
  .problem-cta {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .problem .dotted-underline {
    margin-bottom: 1.5rem;
  }
  .container.two-column {
    flex-direction: column !important;
    align-items: center !important;
  }
  .problem .text-content {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
  }
  .problem-list {
    align-items: flex-start;
    text-align: left;
    //margin-left: auto;
    //margin-right: auto;
  }
  .problem-list li {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .problem-cta {
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
  }
  .problem-illustration {
    order: 2;
    width: 100%;
    margin-bottom: 2rem;
    justify-content: center;
    display: flex;
  }
  .problem-illustration .image-placeholder {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .problem .dotted-underline {
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 2.1rem;
  }
  .hero .cta-primary {
    font-size: 0.98rem;
    padding: 0.85rem 1rem;
  }
  .cta h2 {
    font-size: 1.3rem;
    padding: 0 0.5rem;
    word-break: break-word;
  }
  .btn-primary {
    font-size: 1rem;
    padding: 0.85rem 1rem;
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
  }
}

@media (min-width: 769px) {
  .hero-animation #metrics-panel.metrics-row {
    display: inline !important;
  }
  .hero-animation #metrics-panel-vertical.metrics-vertical {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero-certifications img,
  .hero-certifications svg {
    height: 28px;
  }
  .service-card {
    padding: 1.5rem;
  }
  .service-card h3 {
    font-size: 1.1rem;
  }
  .service-card p {
    font-size: 0.9rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-animation {
    width: 200px;
    height: 200px;
    margin: 20px auto 0;
  }
  .hero-animation #metrics-panel rect {
    height: 100px !important;
  }
  .hero-animation #metrics-panel text {
    font-size: 26px !important;
  }
  .hero-animation #metrics-panel text[id$="Label"] {
    font-size: 18px !important;
  }
  .hero-animation #metrics-panel text[id$="Value"] {
    font-size: 34px !important;
  }
}

.testimonials {
  background: #f7f9fb;
  padding: 5rem 1rem 6rem 1rem;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 2.5rem;
}

.testimonial-slider {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.testimonial-slide {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(99, 91, 255, 0.07);
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(99, 91, 255, 0.1);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-text {
  font-size: 1.15rem;
  color: #4a5568;
  margin-bottom: 1.2rem;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-name {
  font-weight: 700;
  color: #635bff;
  font-size: 1.1rem;
}

.testimonial-role {
  color: #a0aec0;
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

.footer-brand-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}

.footer-brand-social .logo {
  margin-bottom: 0.2rem;
}

.footer-social {
  display: flex;
  gap: 1.2rem;
}

.footer-social-icon img {
  width: 28px;
  height: 28px;
  display: block;
  transition: transform 0.2s, filter 0.2s;
  filter: drop-shadow(0 2px 6px rgba(255, 107, 53, 0.08));
}

.footer-social-icon:hover img {
  transform: scale(1.15) rotate(-8deg);
  filter: brightness(1.2) drop-shadow(0 4px 12px #ff6b35cc);
}

/* Dot pattern utility for headings/sections */
.dot-pattern-bg {
  position: relative;
  z-index: 1;
}
.dot-pattern-bg::before {
  content: "";
  position: absolute;
  left: -32px;
  top: -32px;
  width: 120px;
  height: 40px;
  background-image: url('data:image/svg+xml;utf8,<svg width="120" height="40" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="4" fill="%23ff6b35" opacity="0.18"/><circle cx="40" cy="20" r="4" fill="%23ff6b35" opacity="0.18"/><circle cx="70" cy="10" r="4" fill="%23ff6b35" opacity="0.18"/><circle cx="100" cy="20" r="4" fill="%23ff6b35" opacity="0.18"/></svg>');
  background-repeat: repeat-x;
  background-size: auto 40px;
  z-index: -1;
  pointer-events: none;
}

/* Example usage: .dot-pattern-bg on h2 or section */

.dotted-underline {
  border-bottom: 2.5px dotted #ff6b35;
  display: inline-block;
  padding-bottom: 0.3em;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.cta-wide {
  display: inline-block;
  width: 100%;
  max-width: 320px;
  background: #1a1f36;
  color: #fff;
  padding: 1.1rem 2rem;
  border-radius: 2em;
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 16px rgba(26, 31, 54, 0.07);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-top: 2rem;
  cursor: pointer;
}

.cta-wide:hover {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.13);
}

/* Problem section improvements */
.problem-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
  padding: 0;
  list-style: none;
}
.problem-list li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.1rem;
  background: none;
  border: none;
  padding: 0.5rem 0;
}
.problem-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2em;
  height: 2.2em;
  margin-left: 0em;
}
.problem-cta {
  width: 100%;
  max-width: 420px;
  margin-top: 1.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(26, 31, 54, 0.07);
}
/* .problem-illustration .image-placeholder {
  width: 100%;
  max-width: 320px;
  height: 180px;
  min-height: 180px;
  min-width: 180px;
  margin: 0 auto;
} */
@media (max-width: 768px) {
  .container.two-column {
    flex-direction: column !important;
    align-items: center !important;
  }
  .problem .text-content {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    text-align: left;
  }
  .problem-list {
    align-items: flex-start;
    text-align: left;
    //margin-left: auto;
    //margin-right: auto;
  }
  .problem-list li {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .problem-cta {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
  }
  .problem-illustration {
    order: 2;
    width: 100%;
    margin-bottom: 2rem;
    justify-content: center;
    display: flex;
  }
  .problem-illustration .image-placeholder {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .problem .dotted-underline {
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 2.1rem;
  }
}

@keyframes sticky-fade {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(40px);
  }
}

/* About Section Styles */
.about {
  padding: 6rem 0;
  background: #f7f9fb;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content h2 {
  margin-bottom: 2rem;
}

.about-content p {
  font-size: 1.2rem;
  color: #1a1f36;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.about-card h3 {
  color: #1a1f36;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.about-card p {
  color: #697386;
  line-height: 1.6;
}

.about-card ul {
  color: #697386;
  line-height: 1.6;
  list-style: none;
  padding: 0;
}

.about-card li {
  margin-bottom: 0.5rem;
}

.about-cta {
  background: #fff1e8;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.about-cta h3 {
  color: #1a1f36;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.about-cta p {
  color: #697386;
  margin-bottom: 1.5rem;
}

.about-cta .cta-wide {
  background: #ff6b35;
  color: white;
}

/* Footer Styles */
.footer-text-logo {
  font-family: "Quicksand", "DM Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #fff;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  gap: 0.2em;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff1e8;
  margin-right: 0.5em;
  text-decoration: none;
}

.footer-social-icon:last-child {
  margin-right: 0;
}

.footer-social-icon span {
  color: #ff6b35;
  font-family: "Quicksand", "DM Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1;
}

/* --- Problem Section Redesign --- */
.problem-flex {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  justify-content: flex-start;
}

.problem-list-col {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 420px;
}

.problem-heading {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 0.7rem;
  position: relative;
}

.problem-underline {
  display: block;
  width: 180px;
  height: 4px;
  background: var(--color-accent);
  margin-top: 0.5rem;
  border-radius: 2px;
}

.styled-list {
  list-style: none;
  padding: 0;
  margin: 2.2rem 0 2.5rem 0;
}
.styled-list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.25rem;
  color: var(--color-gray-900);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.problem-icon {
  color: #635bff;
  font-size: 2rem;
  min-width: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-cta {
  margin-top: 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--color-gray-900);
  color: #fff;
  border-radius: 2em;
  padding: 1.1rem 2rem;
  box-shadow: 0 4px 16px rgba(26, 31, 54, 0.07);
  display: inline-block;
  width: 100%;
  max-width: 320px;
  text-align: center;
  text-decoration: none;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.problem-cta:hover {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.13);
}

.problem-illustration-col {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  //max-width: 480px;
  min-height: 320px;
}
.problem-illustration-col .problem-illustration-mockup {
  width: 100%;
  height: 100%;
}
.problem-illustration-col .problem-illustration-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem-illustration-mockup {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(99, 91, 255, 0.07);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .problem-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 2.5rem;
  }
  .problem-list-col,
  .problem-illustration-col {
    max-width: 100%;
    min-width: 0;
  }
  .problem-illustration-col {
    order: 2;
    margin-bottom: 2rem;
  }
  .problem-list-col {
    order: 1;
  }
  .problem-cta {
    order: 3;
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .problem-heading {
    font-size: 1.5rem;
  }
  .problem-underline {
    width: 100px;
    height: 3px;
  }
  .problem-illustration-mockup {
    padding: 0.5rem;
  }
  .styled-list li {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .problem-icon {
    font-size: 1.4rem;
  }
}

.show-mobile {
  display: none !important;
}
.show-desktop {
  display: flex !important;
}

@media (max-width: 900px) {
  .show-mobile {
    display: flex !important;
    margin-bottom: 2rem;
  }
  .show-desktop {
    display: none !important;
  }
}

.problem-illustration-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(99, 91, 255, 0.07);
  display: block;
}

/* --- New Website Section --- */
.new-website {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.new-website-flex {
  display: flex;
  align-items: center;
  gap: 3rem;
  justify-content: flex-start;
}
.new-website-list-col {
  flex: 1 1 320px;
  /* min-width: 260px;
  max-width: 420px; */
}
.new-website-heading {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 2.2rem;
}
.new-website-list {
  list-style: none;
  padding: 0;
  margin: 2.2rem 0 2.5rem 0;
}
.new-website-list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.25rem;
  color: var(--color-gray-900);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.new-website-icon {
  color: var(--color-accent);
  font-size: 2rem;
  min-width: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new-website-cta {
  margin-top: 2.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  background: var(--color-accent);
  color: #fff;
  border-radius: 2em;
  padding: 1.1rem 3.2rem;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.13);
  display: inline-block;
  width: 100%;
  max-width: 340px;
  text-align: center;
  text-decoration: none;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.new-website-cta:hover {
  background: var(--color-accent-dark);
  color: #fff;
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.18);
}
.new-website-illustration-col {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  ///min-width: 260px;

  // max-width: 480px;
  height: 100%;
}
.new-website-illustration-mockup {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(99, 91, 255, 0.07);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new-website-illustration-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
}
@media (max-width: 900px) {
  .new-website-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 2.5rem;
  }
  .new-website-list-col,
  .new-website-illustration-col {
    max-width: 100%;
    min-width: 0;
  }
  .new-website-illustration-col {
    order: 2;
    margin-bottom: 2rem;
  }
  .new-website-list-col {
    order: 1;
  }
  .new-website-cta {
    order: 3;
    margin-top: 0;
  }
  .show-mobile {
    display: flex;
    margin-bottom: 2rem;
  }
  .show-desktop {
    display: none;
  }
}
@media (max-width: 600px) {
  .new-website-heading {
    font-size: 1.5rem;
  }
  .new-website-illustration-mockup {
    padding: 0.5rem;
  }
  .new-website-list li {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .new-website-icon {
    font-size: 1.4rem;
  }
  .new-website-cta {
    font-size: 1.1rem;
    padding: 1.1rem 1.5rem;
  }
}
