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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #2c0846;
  background: #ffffff;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Ensure all major sections are consistently constrained */
section {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.container {
  /* max-width: 1440px; */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

.bold {
  font-weight: 800;
}

.light {
  font-weight: 200;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 224px;
  height: 63px;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  text-decoration: none !important;
}

.btn-primary {
  background: linear-gradient(99deg, #62119d 4.7%, #deb3ff 139.86%);
  color: #ffffff;
  box-shadow: 0px 4px 15px rgba(98, 17, 157, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 20px rgba(98, 17, 157, 0.4);
  background: linear-gradient(99deg, #7314b3 4.7%, #e8c4ff 139.86%);
}

.btn-secondary {
  background: #ffffff;
  color: #191715;
  border: 1.5px solid rgba(238, 238, 238, 0.5);
}

.btn-secondary:hover {
  background: #f8f8f9;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 224px;
  height: 63px;
  background: linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(267deg, #ea6666 2.44%, #6a44ff 95.58%) border-box;
  color: #000000;
  border: 2px solid transparent;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.7;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  /* left: -100%; */
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
  border-radius: 10px;
}

.btn-outline:hover::before {
  left: 100%;
}

.btn-outline:hover {
  background: linear-gradient(267deg, #ea6666 2.44%, #6a44ff 95.58%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0px 6px 20px rgba(106, 68, 255, 0.4);
}
.btn-primary.profile-page {
  background: linear-gradient(267deg, #ea6666 2.44%, #6a44ff 95.58%);
}

.features-cta .btn-primary.profile-page {
  background: linear-gradient(267deg, #ea6666 2.44%, #6a44ff 95.58%) !important;
}

.btn-primary.profile-page:hover {
  background: linear-gradient(267deg, #ea6666 2.44%, #6a44ff 95.58%);
}

.features-cta .btn-primary.profile-page:hover {
  background: linear-gradient(267deg, #ea6666 2.44%, #6a44ff 95.58%) !important;
}

/* Disabled Button Styles */
.btn:disabled,
.btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  background: #f5f5f5 !important;
  color: #9ca3af !important;
  border-color: #e5e7eb !important;
  transform: none !important;
  box-shadow: none !important;
}

.btn:disabled::before,
.btn.disabled::before {
  display: none;
}

.btn:disabled:hover,
.btn.disabled:hover {
  background: #f5f5f5 !important;
  color: #9ca3af !important;
  border-color: #e5e7eb !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Disabled Input Styles */
input:disabled,
textarea:disabled,
.form-group input:disabled,
.form-group textarea:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #f9fafb !important;
  border-color: #e5e7eb !important;
  color: #9ca3af !important;
}

input:disabled::placeholder,
textarea:disabled::placeholder {
  color: #d1d5db !important;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 25px 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 59px;
  /* width: 335px; */
}

.navigation {
  display: flex;
  gap: 38px;
}

.navigation a {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #373a46;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.navigation a:hover {
  color: #ea6666;
}

.navigation a.active {
  color: #ea6666;
  font-weight: 600;
  position: relative;
}

.navigation a.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
}

/* Products Dropdown */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #373a46;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ea6666;
}

.nav-link.active {
  color: #ea6666;
  font-weight: 600;
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
}

.chevron-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .chevron-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 8px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 16px;
  color: #373a46;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 4px;
}

.dropdown-item:hover {
  background: rgba(234, 102, 102, 0.1);
  color: #ea6666;
}

.dropdown-item.active {
  background: rgba(234, 102, 102, 0.15);
  color: #ea6666;
  font-weight: 600;
  position: relative;
}

.dropdown-item.active::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 16px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.login-link {
  font-size: 16px;
  color: #191715;
  text-decoration: none;
  font-weight: 400;
}

.login-link:hover {
  color: #ea6666;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background: #373a46;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 109px; /* Height of header + padding */
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding: 40px 20px;
  border-top: 1px solid rgba(55, 58, 70, 0.1);
}

.mobile-menu.active {
  display: block;
  animation: slideDown 0.3s ease-out;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}

.mobile-menu nav a {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #373a46;
  text-decoration: none;
  font-weight: 400;
  padding: 8px 0;
  border-bottom: 1px solid rgba(55, 58, 70, 0.1);
  transition: color 0.3s ease;
}

.mobile-menu nav a:hover {
  color: #ea6666;
}

.mobile-menu nav a.active {
  color: #ea6666;
  font-weight: 600;
  /* background: rgba(234, 102, 102, 0.1); */
  border-radius: 8px;
  padding: 12px 16px;
  margin: 0 -16px;
  position: relative;
}

.mobile-menu nav a.active::before {
  /*  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 20px;
  background: linear-gradient(180deg, #ea6666 0%, #d946ef 100%);
  border-radius: 0 2px 2px 0;
  */
}

/* Mobile Products Dropdown */
.mobile-nav-dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #373a46;
  text-decoration: none;
  font-weight: 400;
  padding: 8px 0;
  border-bottom: 1px solid rgba(55, 58, 70, 0.1);
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: #ea6666;
}

.mobile-nav-link.active {
  color: #ea6666;
  font-weight: 600;
  /* background: rgba(234, 102, 102, 0.1); */
  border-radius: 8px;
  padding: 12px 16px;
  margin: 0 -16px;
  position: relative;
}

.mobile-nav-link.active::before {
  /*  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 20px;
  background: linear-gradient(180deg, #ea6666 0%, #d946ef 100%);
  border-radius: 0 2px 2px 0;
  */
}

.mobile-dropdown-items {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  margin-top: 8px;
  gap: 8px;
}

.mobile-dropdown-item {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #5a5a5a;
  text-decoration: none;
  font-weight: 400;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.mobile-dropdown-item:hover {
  color: #ea6666;
}

.mobile-dropdown-item.active {
  color: #ea6666;
  font-weight: 600;
  /* background: rgba(234, 102, 102, 0.1); */
  border-radius: 6px;
  padding: 8px 12px;
  margin: 0 -12px;
  position: relative;
}

.mobile-dropdown-item.active::before {
  /*  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 12px;
  background: linear-gradient(180deg, #ea6666 0%, #d946ef 100%);
  border-radius: 0 1px 1px 0;
  */
}

.mobile-menu-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.mobile-menu-actions a {
  font-size: 16px;
  color: #191715;
  text-decoration: none;
  font-weight: 400;
  text-align: center;
  padding: 12px 16px;
  flex: 1;
}

.mobile-menu-actions .btn {
  flex: 1;
  max-width: none;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 161px;
  /* background: #ffffff; */
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 255, 255, 0.8) 50%,
    #ffffff 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-background {
  position: absolute;
  top: 400px;
  left: -200px;
  width: 1800px;
  height: 800px;
  z-index: -2;
  max-width: none;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ffdaec 0%, #9595ff 100%);
  opacity: 0.3;
  filter: blur(120px);
}

/* Floating glass elements - Repositioned for hero viewport */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.glass-element {
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: float 6s ease-in-out infinite;
}

/* Right side elements - positioned around hero mockup area */
.glass-1 {
  right: 150px;
  top: 550px;
  animation-delay: 0s;
}

.glass-2 {
  right: 80px;
  top: 750px;
  width: 120px;
  height: 120px;
  animation-delay: 1s;
}

.glass-3 {
  right: 250px;
  top: 900px;
  width: 200px;
  height: 200px;
  animation-delay: 2s;
}

/* Left side elements - positioned around hero mockup area */
.glass-4 {
  left: 120px;
  top: 850px;
  width: 150px;
  height: 150px;
  animation-delay: 3s;
}

.glass-5 {
  left: 250px;
  top: 600px;
  animation-delay: 4s;
}

.glass-6 {
  left: 80px;
  top: 650px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  animation-delay: 5s;
}

.glass-7 {
  left: 350px;
  top: 800px;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.08);
  animation-delay: 2.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-15px) rotate(2deg);
  }
  66% {
    transform: translateY(8px) rotate(-1deg);
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1040px;
  margin: 0 auto;
  gap: 32px;
}

.hero-title {
  font-size: 80px;
  line-height: 1.1;
  letter-spacing: -4px;
  margin-bottom: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #2c0846;
}

.hero-title .light {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  color: #2c0846;
}

.hero-title .bold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: #2c0846;
  letter-spacing: 1px;
}

.hero-title .powered {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  /* font-style: italic; */
  background: linear-gradient(135deg, #ec4899 0%, #d946ef 50%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -4px;
}

.hero-description {
  font-size: 20px;
  color: #5a5a5a;
  opacity: 0.8;
  max-width: 554px;
  margin: 16px 32px;
  text-align: center;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-btn-wrapper {
  background: rgba(255, 255, 255, 0.25);
  border: 1.5px solid rgba(238, 238, 238, 0.5);
  border-radius: 17px;
  padding: 11px 16px;
  height: 79px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-btn-inner {
  background: linear-gradient(99deg, #62119d 4.7%, #deb3ff 139.86%);

  border-radius: 10px;
  height: 63px;
  width: 224px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 144px 40px 0px rgba(0, 0, 0, 0),
    0px 92px 37px 0px rgba(0, 0, 0, 0.01), 0px 52px 31px 0px rgba(0, 0, 0, 0.05),
    0px 23px 23px 0px rgba(0, 0, 0, 0.09), 0px 6px 13px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.hero-btn-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
  border-radius: 10px;
  z-index: 1;
}

.hero-btn-wrapper:hover .hero-btn-inner::before {
  left: 100%;
}

.hero-btn-wrapper.secondary .hero-btn-inner {
  background: #ffffff;
}

.hero-btn-content {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  white-space: nowrap;
  text-align: center;
  position: relative;
  z-index: 2;
  text-decoration: none !important;
}

.hero-btn-content:hover {
  text-decoration: none !important;
}

.hero-btn-wrapper.secondary .hero-btn-content {
  color: #191715;
}

.hero-btn-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-btn-wrapper:hover .hero-btn-inner {
  box-shadow: 0px 144px 40px 0px rgba(0, 0, 0, 0),
    0px 92px 37px 0px rgba(0, 0, 0, 0.02), 0px 52px 31px 0px rgba(0, 0, 0, 0.08),
    0px 23px 23px 0px rgba(0, 0, 0, 0.12), 0px 6px 13px 0px rgba(0, 0, 0, 0.15);
}

/* Hero Image/Mockup - Updated to match profile page structure */
.profile-mockup {
  display: flex;
  justify-content: center;
  margin-top: 96px;
}

.mockup-container {
  width: 1123px;
  position: relative;
}

.mockup-container::before {
  content: "";
  position: absolute;
  top: -54px;
  left: 0;
  right: 0;
  height: 176px;
  background: url("http://localhost:3845/assets/fb758dcff932447634bd1afc9141eb30de790d12.png");
  background-size: 100% 100%;
  transform: scaleY(-1);
  z-index: 1;
}

.mockup-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 761px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(255, 218, 236, 0.3),
    0 10px 30px rgba(149, 149, 255, 0.2), 0 5px 15px rgba(236, 72, 153, 0.1);
  z-index: 2;
}

.mockup-header {
  position: relative;
  z-index: 3;
  background-color: #eff1f5 !important;
  background: url("http://localhost:3845/assets/2911a97f30a3746c140ed9c2f7029ddb2f67c740.png");
  height: 37px;
  border-radius: 24px 24px 0 0;
  margin: 30px 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}

.mockup-controls {
  display: flex;
  align-items: center;
}

.mockup-dots {
  display: flex;
  gap: 4px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
}

.mockup-url {
  font-family: "Poppins", sans-serif;
  font-size: 10.325px;
  color: #373a46;
  background: #eff1f5;
  padding: 2px 8px;
  border-radius: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.mockup-content {
  position: relative;
  z-index: 3;
  margin: 0 28px;
  height: 606px;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  background: #ffffff;
}

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

.mockup-fade {
  position: absolute;
  bottom: -20px;
  left: 28px;
  right: 28px;
  height: 320px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 40%,
    rgba(255, 255, 255, 1) 75%
  );
  z-index: 4;
  border-radius: 0 0 20px 20px;
}

/* CTA Profile Grade Reward Section */
.cta-profile-grade {
  padding: 120px 0 60px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.cta-profile-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  min-height: 409px;
}

.cta-decorative-icon {
  position: absolute;
  left: -300px;
  top: 50%;
  transform: translateY(-50%) rotate(356.875deg);
  width: 15.762px;
  height: 15.762px;
  z-index: 1;
  pointer-events: none;
}

.cta-decorative-icon img {
  width: 14.975px;
  height: 14.975px;
}

.cta-profile-text {
  text-align: center;
  max-width: 707px;
  z-index: 3;
}

.cta-profile-text h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #2c0846;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.cta-profile-text p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #5a5a5a;
  margin-bottom: 32px;
  max-width: 521px;
  margin-left: auto;
  margin-right: auto;
}

.cta-decorative-circle {
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%) rotate(337.566deg);
  width: 461.521px;
  height: 333.018px;
  z-index: 1;
  pointer-events: none;
}

.cta-decorative-circle img {
  width: 422.6px;
  height: 185.82px;
}

.cta-background-ellipse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 930px;
  height: 288px;
  z-index: 0;
}

.cta-background-ellipse img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Products Section */
.products {
  padding: 120px 0 120px 0;
  /* background: linear-gradient(180deg, #ffffff 0%, #fefbff 100%); */
  background-color: #ffffff;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.section-header {
  text-align: left;
  margin-bottom: 60px;
  max-width: 815px;
}

.faq .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px auto;
}

.section-header h2 {
  font-size: 48px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  color: #2c0846;
  font-family: "Poppins", sans-serif;
}

.section-header h2 .bold {
  font-weight: 800;
}

.section-header h2 .light {
  font-weight: 200;
}

.section-header p {
  font-size: 18px;
  color: #5a5a5a;
  line-height: 1.7;
  font-family: "Poppins", sans-serif;
}

.products-list {
  /* max-width: 1296px; */
  margin: 0 auto;
  position: relative;
}

.product-card {
  background: #f8f8f9;
  border-radius: 16px;
  margin-bottom: 8px;
  border: 1px solid rgba(11, 11, 12, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  height: 110px;
}

.product-card.active {
  background: #ffffff;
  border: 3px solid transparent;
  background-image: linear-gradient(#ffffff, #ffffff),
    linear-gradient(267deg, #ea6666 2.44%, #6a44ff 95.58%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  z-index: 3;
  height: 100%;
  position: relative;
  box-shadow: 0 20px 40px rgba(234, 102, 102, 0.1);
}

.product-card:not(.active) {
  height: 110px;
  z-index: 1;
}

.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 35px;
}

.product-header h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
}

.expand-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.expand-btn.expanded {
  background: linear-gradient(267deg, #ea6666 2.44%, #6a44ff 95.58%);
  box-shadow: 0 4px 15px rgba(234, 102, 102, 0.3);
  transform: scale(1.05);
}

.expand-btn svg {
  width: 24px;
  height: 24px;
  color: #2c0846;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.expand-btn.expanded svg {
  transform: rotate(90deg);
  color: #ffffff;
}

.expand-btn:hover {
  background: linear-gradient(267deg, #ea6666 2.44%, #6a44ff 95.58%);
  box-shadow: 0 4px 15px rgba(234, 102, 102, 0.3);
  transform: scale(1.05);
}

.expand-btn:hover svg {
  color: #ffffff;
}

.product-content {
  display: none;
  padding: 0 35px 35px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card.active .product-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-top: 20px;
  padding-bottom: 20px;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

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

.product-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.7;
  color: #5a5a5a;
}

.product-text p {
  margin-bottom: 16px;
}

.product-text strong {
  color: #2c0846;
  font-weight: 700;
}

.product-text em {
  font-style: italic;
}

.product-text .btn {
  margin-top: 32px;
  margin-bottom: 20px;
}

.product-image {
  flex-shrink: 0;
  width: 351px;
  height: 363px;
  border-radius: 16px;
  overflow: hidden;
}

.product-image img {
  /* width: 100%;
  height: 100%; */
  object-fit: cover;
}

/* Feature Section */
.feature {
  padding: 60px 0;
  background: #ffffff;
}

.feature-content {
  display: flex;
  align-items: center;
  gap: 120px;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.feature-visual {
  flex: 1;
  position: relative;
  height: 600px;
}

.dot-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #d9d9d9 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.5;
}

.feature-profiles {
  position: relative;
  height: 100%;
}

.profile-img {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.profile-1 {
  top: 20%;
  left: 20%;
}

.profile-2 {
  top: 15%;
  right: 15%;
}

.profile-3 {
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  width: 91px;
  height: 91px;
}

.feature-card {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 13px;
  padding: 26px;
  width: 359px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 26px;
}

.user-avatar {
  width: 53px;
  height: 53px;
  border-radius: 50%;
}

.user-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0b0b0c;
  margin-bottom: 2px;
}

.user-info p {
  font-size: 15px;
  color: #5d5d77;
}

.card-details h5 {
  font-size: 15px;
  font-weight: 600;
  color: #0b0b0c;
  margin-bottom: 18px;
}

.detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.detail-row span {
  font-size: 15px;
  font-weight: 500;
  color: #383847;
}

.detail-line {
  flex: 1;
  height: 1px;
  background: #e0e0e0;
  margin-left: 20px;
}

.feature-text {
  flex: 1;
}

.feature-text h2 {
  font-size: 48px;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.feature-text p {
  font-size: 16px;
  color: #757575;
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  padding: 60px 0;
  background: #ffffff;
  position: relative;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1212px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(234, 102, 102, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(40px);
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 80px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
  padding: 64px 0;
  border-radius: 24px;
  position: relative;
  z-index: 1;
}

.cta-text {
  flex: 1;
}

.cta-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.cta-badge svg {
  width: 24px;
  height: 24px;
  color: #2c0846;
}

.cta-badge span {
  font-size: 16px;
  color: #2c0846;
}

.cta-text h2 {
  font-size: 48px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.cta-text p {
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 536px;
}

.cta-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-card.large {
  width: 240px;
  margin-bottom: 8px;
}

.stat-card.large h3 {
  font-size: 40px;
  font-weight: 500;
  color: #02140d;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}

.stat-card.large p {
  font-size: 16px;
  color: #4b5852;
  line-height: 1.7;
  margin-bottom: 50px;
}

.stat-chart {
  height: 98px;
}

.stat-chart svg {
  width: 100%;
  height: 100%;
}

.stat-cards-small {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-cards-small .stat-card {
  width: 240px;
}

.stat-cards-small .stat-card h4 {
  font-size: 18px;
  font-weight: 500;
  color: #02140d;
  margin-bottom: 50px;
}

.stat-cards-small .stat-card p {
  font-size: 12px;
  color: #4b5852;
}

.team-avatars {
  display: flex;
  align-items: center;
  gap: -8px;
  margin-top: 20px;
}

.team-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-right: -8px;
}

.more-count {
  font-size: 12px;
  color: #02140d;
  margin-left: 8px;
}

/* FAQ Section */
.faq {
  padding: 60px 0;
  /* background: #ffffff; */ /* Commented out to allow gradient visibility */
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.faq::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1400px;
  height: 400px;
  background: linear-gradient(90deg, #ffdaec 0%, #9595ff 100%);
  opacity: 0.4;
  filter: blur(100px);
  border-radius: 50%;
  z-index: -1;
}

.faq-list {
  max-width: 768px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: #ffffff;
  border: 1px solid transparent;
  background-image: linear-gradient(#ffffff, #ffffff),
    linear-gradient(267deg, #ea6666 2.44%, #6a44ff 95.58%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: 16px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:not(.active) {
  background: #f9f9fa;
  background-image: linear-gradient(#f9f9fa, #f9f9fa),
    linear-gradient(267deg, #ea6666 2.44%, #6a44ff 95.58%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px;
  cursor: pointer;
}

.faq-number {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(201, 204, 207, 0.4);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #5e646a;
  flex-shrink: 0;
}

.faq-item.active .faq-number {
  background: rgba(255, 255, 255, 0.2);
}

.faq-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0d2440;
  letter-spacing: 0px;
  flex: 1;
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.4;
  width: 648px;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-toggle svg {
  width: 24px;
  height: 24px;
  color: #666;
  transition: transform 0.3s ease;
}

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

.faq-content {
  display: none;
  padding: 16px 24px 48px 96px;
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.7;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.faq-item.active .faq-content {
  display: block;
}

/* CTA Final Section */
.cta-final {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.cta-final .container {
  position: relative;
}

.cta-final .container::before {
  content: "";
  position: absolute;
  top: calc(50% + 60px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1150px;
  max-width: calc(100% - 100px);
  height: 520px;
  background: linear-gradient(99deg, #62119d 4.7%, #deb3ff 139.86%);
  border-radius: 30px;
  z-index: 1;
  opacity: 0.66;
  filter: none;
}

.cta-card {
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0px 3px 29.6px -5px rgba(0, 0, 0, 0.25);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* max-width: 1249px; */
  margin: 0 auto;
  height: 549px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.cta-icons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.cta-icon-1 {
  position: absolute;
  top: 51.55%;
  right: 5.11%;
  width: 11.25%;
  height: 26.59%;
  background-image: url("assets/img/7c4232b4494a5f6e133b4ebe707066d2a770904d.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.cta-icon-2 {
  position: absolute;
  top: 11.47%;
  left: 7.87%;
  width: 11.64%;
  height: 26.55%;
  background-image: url("assets/img/2f6277c602e34c0ed83e21759e09bfda1bfa6d0b.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(90deg);
}

.cta-final-content {
  position: relative;
  z-index: 1;
}

.cta-final-content h2 {
  font-size: 48px;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.cta-final-content p {
  font-size: 18px;
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 633px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Section */
.contact {
  padding: 120px 0;
  background: #ffffff;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.contact-content {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-details {
  flex: 1;
  min-width: 300px;
}

.contact-form {
  flex: 1;
  min-width: 320px;
  width: 100%;
}

/* Desktop: Group contact-info and contact-details together */
@media (min-width: 769px) {
  .contact-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "info form"
      "details form";
    gap: 40px 80px;
    row-gap: 4px;
    column-gap: 80px;
    max-width: 100%;
  }

  .contact-info {
    grid-area: info;
  }

  .contact-details {
    grid-area: details;
  }

  .contact-form {
    grid-area: form;
  }
}

.contact-info h2 {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: 40px;
  max-width: 563px;
}

.contact-info > p {
  font-size: 18px;
  color: #5a5a5a;
  line-height: 1.7;
  max-width: 528px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(86, 89, 89, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: #2c0846;
}

.contact-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2c0846;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.7;
  letter-spacing: -0.2px;
  max-width: 239px;
}

.contact-item a {
  font-size: 16px;
  color: #757575;
  text-decoration: underline;
  letter-spacing: -0.2px;
}

.contact-item a:hover {
  color: #ea6666;
}

.contact-form {
  flex: 1;
  border-radius: 24px;
  background: linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(313deg, #feede7 8.07%, #f9e9fe 80.05%) border-box;
  background-clip: padding-box, border-box;
  border: 16px solid transparent;
  padding: 40px;
  max-width: 622px;
  width: 100%;
  box-sizing: border-box;
}

.form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.form-group {
  flex: 1;
  margin-bottom: 32px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #1d2b19;
  margin-bottom: 12px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 20px;
  border: 1px solid rgba(12, 14, 23, 0.1);
  border-radius: 16px;
  background: #ffffff;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ea6666;
}

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

/* Footer */
.footer {
  padding: 0 0 60px 0;
  background: #ffffff;
  border-top: none;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.footer .footer-card {
  background: linear-gradient(
    107deg,
    rgba(126, 87, 155, 0.49) 15.43%,
    rgba(222, 179, 255, 0.49) 51.38%
  );
  border-radius: 30px;
  padding: 80px 60px 60px;
  position: relative;
}

.footer-content {
  display: flex;
  gap: 160px;
  margin-bottom: 80px;
  align-items: flex-start;
}

.footer-brand {
  flex-shrink: 0;
  max-width: 380px;
}

.footer-brand img {
  height: 60px;
  width: auto;
  left: -12px;
  top: -12px;
  position: relative;
}

.footer-brand p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #484d67;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-brand a {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #030c3b;
  text-decoration: none;
  font-weight: 500;
}

.footer-brand a:hover {
  color: #ea6666;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 100px;
  flex: 1;
}

.footer-column h4 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #030c3b;
  margin-bottom: 24px;
  letter-spacing: -0.2px;
}

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

.footer-column a {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #484d67;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.6;
  font-weight: 400;
}

.footer-column a:hover {
  color: #ea6666;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #484d67;
  margin: 0;
  font-weight: 400;
}

.footer-legal {
  display: flex;
  gap: 40px;
}

.footer-legal a {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #484d67;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 400;
}

.footer-legal a:hover {
  color: #ea6666;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }

  .hero-title {
    font-size: 60px;
  }

  .feature-content {
    gap: 60px;
  }

  .cta-content {
    gap: 40px;
  }

  .contact-content {
    gap: 40px;
  }

  .footer-content {
    gap: 80px;
  }
}

/* Tablet breakpoint */
@media (max-width: 1024px) {
  .navigation {
    gap: 24px;
  }

  .navigation a {
    font-size: 15px;
  }

  .header-actions {
    gap: 12px;
  }

  .logo img {
    height: 50px;
    width: auto;
  }
}

@media (max-width: 768px) {
  .section-header {
    text-align: center;
  }
  .container {
    padding: 0 20px;
  }

  .header-content {
    justify-content: space-between;
  }

  .navigation {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .logo img {
    height: 45px;
    width: auto;
  }

  .hero-background::before {
    filter: blur(80px);
  }

  .cta-section::before {
    width: 100vw;
    height: 300px;
    filter: blur(80px);
  }

  .cta-final .container::before {
    width: 100%;
    max-width: 100%;
    height: 400px;
    top: calc(50% + 40px);
    left: 50%;
  }

  .faq::before {
    width: 100vw;
    height: 300px;
    top: 50%;
    filter: blur(80px);
  }

  .hero {
    min-height: 90vh;
    padding-top: 120px;
  }

  .hero-title {
    font-size: 40px;
    letter-spacing: -2px;
  }

  .hero-buttons {
    gap: 12px;
    flex-wrap: nowrap;
    margin-bottom: 40px;
  }

  .hero-btn-inner {
    width: 180px;
    min-width: 160px;
    font-size: 14px;
  }

  .hero-mockup {
    width: 100%;
  }

  .mockup-container {
    width: 100%;
    max-width: 100vw;
  }

  /* Ensure all sections are consistently constrained on mobile */
  .hero,
  .cta-profile-grade,
  .products,
  .faq,
  .cta-final,
  .contact,
  .footer,
  .profile-hero,
  .profile-feature,
  .profile-features-grid,
  .profile-pricing,
  .profile-plans {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Constrain wide background elements */
  .hero-background,
  .profile-hero-background {
    left: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
  }

  .products {
    padding: 60px 0;
  }

  .feature-content {
    flex-direction: column;
    gap: 40px;
  }

  .feature-visual {
    height: 400px;
  }

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

  .contact-content {
    flex-direction: column;
    gap: 40px;
  }

  .contact-info {
    order: 1;
  }

  .contact-form {
    order: 2;
  }

  .contact-details {
    order: 3;
  }

  .contact-info h2 {
    font-size: 48px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .contact-form {
    min-width: 280px;
    max-width: 100%;
    padding: 24px;
    margin: 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 48px;
  }

  .footer-links {
    flex-direction: column;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .section-header h2 {
    font-size: 48px;
  }

  .product-content {
    flex-direction: column;
    gap: 30px;
  }

  .product-image {
    width: 100%;
    height: 250px;
  }

  /* CTA Profile Grade responsive */
  .cta-profile-text h2 {
    font-size: 48px;
  }

  .cta-decorative-icon,
  .cta-decorative-circle {
    display: none;
  }

  /* Hide hero background elements that extend off-screen */
  .hero-background {
    display: none;
  }

  .profile-hero-background {
    display: none;
  }

  .contact-form {
    min-width: 260px;
    max-width: 100%;
    padding: 20px;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .header-actions .btn {
    display: none;
  }

  .logo img {
    height: 40px;
    width: auto;
  }

  .hero-background::before {
    filter: blur(60px);
  }

  .cta-section::before {
    width: 100vw;
    height: 200px;
    filter: blur(60px);
  }

  .cta-final .container::before {
    width: 100%;
    height: 100%;
    top: calc(50% + 30px);
    left: 50%;
  }

  .faq::before {
    width: 100vw;
    height: 200px;
    top: 40%;
    filter: blur(60px);
  }

  .hero-buttons {
    gap: 8px;
    flex-wrap: nowrap;
  }

  .hero-btn-inner {
    width: 140px;
    min-width: 120px;
    font-size: 13px;
  }

  .hero-btn-content {
    padding: 0 8px;
  }

  .btn {
    width: 100%;
    max-width: 100%;
  }

  .hero-title {
    font-size: 48px;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .contact-info h2 {
    font-size: 36px;
  }

  .cta-final-content h2 {
    font-size: 36px;
  }

  .cta-icons {
    display: none;
  }

  /* CTA Profile Grade responsive */
  .cta-profile-text h2 {
    font-size: 36px;
  }

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

/* ===================================
   ABOUT PAGE STYLES
   =================================== */

/* About Hero Section */
.about-hero {
  padding: 158px 0 0;
  background: #ffffff;
  position: relative;
}

.about-hero-content {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 120px;
}

.about-hero-text {
  flex: 2;
  max-width: 960px;
}

.about-hero-image {
  flex: 1;
  width: 550px;
  height: 550px;
}

.about-hero-text h1 {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.08;
  color: #2c0846;
  margin-bottom: 48px;
  letter-spacing: 1px;
}

.about-hero-text h1 .bold {
  font-weight: 800;
}

.about-hero-text h1 .light {
  font-weight: 200;
}

.about-hero-description {
  margin-bottom: 48px;
}

.about-hero-description p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-hero-description p:last-child {
  margin-bottom: 0;
}

.about-section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #5a5a5a;
  margin-bottom: 8px !important;
  margin-top: 16px;
}

.about-section-title:first-child {
  margin-top: 0;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-hero-bottom-image {
  width: 100%;
  height: 316px;
  border-radius: 16px;
  overflow: hidden;
}

.about-hero-bottom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Leadership Section */
.about-leadership {
  padding: 94px 0;
  background: #ffffff;
}

.leadership-content h2 {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  color: #2c0846;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.leadership-content h2 .bold {
  font-weight: 800;
}

.leadership-content h2 .light {
  font-weight: 200;
}

.leadership-content p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 60px;
  max-width: 1131px;
  /* margin-left: 161px; */
}

.leadership-images {
  display: flex;
  gap: 24px;
}

.leadership-image {
  flex: 1;
  height: 439px;
  border-radius: 8px;
  overflow: hidden;
}

.leadership-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Team Section */
.about-team {
  padding: 30px 0 120px 0;
  background: #ffffff;
  position: relative;
}

.about-team-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 839px;
  height: 737px;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(90deg, #ffdaec 0%, #9595ff 100%);
  opacity: 0.4;
  filter: blur(100px);
  border-radius: 50%;
}

.about-team .container {
  position: relative;
  z-index: 2;
}

.team-header {
  margin-bottom: 64px;
}

.team-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #2c0846;
  letter-spacing: 1px;
}

.team-header h2 .bold {
  font-weight: 800;
}

.team-header h2 .light {
  font-weight: 200;
}

.team-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: flex-start; /* Align cards to top to prevent shifting */
}

.team-card {
  background: linear-gradient(99deg, #62119d 4.7%, #deb3ff 139.86%);
  border-radius: 12px;
  width: 392px;
  min-height: 600px; /* Minimum height for consistent alignment */
  overflow: visible; /* Allow content to expand */
  display: flex;
  flex-direction: column;
  position: relative; /* Ensure proper isolation */
}

.team-card-image {
  height: 320px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-card-image img.cass-image {
  transform: scale(0.85);
  object-position: center center;
}

.team-card-content {
  padding: 24px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.team-card-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 8px;
  min-height: 48px; /* Ensure consistent height for names */
}

.team-role {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 16px;
  min-height: 28px; /* Ensure consistent height for roles */
}

.team-bio {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 0;
  flex: 1;
}

.team-social {
  width: 20px;
  /* height: 20px; */
  margin-top: auto;
  align-self: flex-start;
  padding-top: 16px;
  flex-shrink: 0; /* Prevent shrinking */
}

.team-social img {
  width: 100%;
  height: 100%;
  display: block; /* Ensure image displays properly */
}

/* Team Bio Read More Functionality */
.team-bio-container {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 260px; /* Minimum height to ensure consistency */
}

.bio-full {
  display: none;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease, transform 0.3s ease;
  transform: translateY(-10px);
}

.bio-full.expanded {
  opacity: 1;
  max-height: 1000px; /* Large enough to accommodate content */
  transform: translateY(0);
}

/* When bio is expanded, allow container to grow beyond min-height */
.team-bio-container:has(.bio-full.expanded) {
  min-height: auto;
}

/* Fallback for browsers that don't support :has() - target individual containers */
.team-bio-container.expanded {
  min-height: auto;
}

.read-more-link,
.read-less-link {
  display: inline;
  color: #24023c;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 8px;
  transition: color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.read-more-link:active,
.read-less-link:active {
  transform: scale(0.98);
}

.read-more-link:hover,
.read-less-link:hover {
  color: #ea6666;
  text-decoration: underline;
}

/* Team Social Link Styling */
.team-social a {
  display: inline-block;
  transition: transform 0.2s ease;
}

.team-social a:hover {
  transform: scale(1.1);
}

/* Keep the link visible for both expand and collapse */

.read-more-link::after {
  content: " ↓";
  font-size: 12px;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.read-more-link.expanded::after {
  content: " ↑";
  transform: rotate(180deg);
}

/* About Contact Section */
.about-contact {
  padding: 191px 0 100px;
  background: #ffffff;
}

.about-contact .contact-content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.about-contact .contact-info {
  flex: 1;
  max-width: 563px;
}

.about-contact .contact-info h2 {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: #2c0846;
  margin-bottom: 32px;
  letter-spacing: 1px;
}

.about-contact .contact-info h2 .bold {
  font-weight: 800;
}

.about-contact .contact-info h2 .light {
  font-weight: 200;
}

.about-contact .contact-info > p {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 64px;
  max-width: 528px;
}

.about-contact .contact-details {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact-icon {
  width: 64px;
  height: 64px;
  border: 1.5px solid rgba(86, 89, 89, 0.12);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon img {
  width: 24px;
  height: 24px;
}

.contact-text h4 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #2c0846;
  margin-bottom: 4px;
  line-height: 1.7;
}

.contact-text p,
.contact-text a {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.7;
  letter-spacing: -0.2px;
  text-decoration: none;
}

.contact-text a {
  color: #5a5a5a;
  text-decoration: underline;
}

.contact-text a:hover {
  color: #ea6666;
}

.about-contact .contact-form {
  background: #ffffff;
  border: 1px solid rgba(12, 14, 23, 0.1);
  border-radius: 24px;
  padding: 33px 39px 39px;
  width: 622px;
  flex-shrink: 0;
}

.form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.form-group label {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1d2b19;
  line-height: 1.7;
}

.form-group input,
.form-group textarea {
  background: #ffffff;
  border: 1px solid rgba(12, 14, 23, 0.1);
  border-radius: 16px;
  padding: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #1d2b19;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input {
  height: 65px;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ea6666;
}

.about-contact .contact-form .btn {
  margin-top: 24px;
}

/* About Page Responsive Design */
@media (max-width: 1024px) {
  .about-hero-content {
    flex-direction: column;
    gap: 32px;
  }

  .about-hero-image {
    width: 100%;
    height: 400px;
  }

  .leadership-content p {
    margin-left: 0;
    max-width: 100%;
  }

  .leadership-images {
    flex-direction: column;
    gap: 16px;
  }

  .team-grid {
    flex-direction: column;
    align-items: center;
  }

  .about-contact .contact-content {
    flex-direction: column;
    gap: 60px;
  }

  .about-contact .contact-form {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer .footer-card {
    padding: 80px 30px;
  }

  .contact-info {
    text-align: center;
  }

  .contact-form {
    min-width: 100%;
    padding: 20px;
  }

  .about-hero {
    padding: 120px 0 0;
  }

  .about-hero-text h1 {
    font-size: 48px;
  }

  .about-hero-description p {
    font-size: 16px;
  }

  .leadership-content h2,
  .team-header h2,
  .about-contact .contact-info h2 {
    font-size: 36px;
  }

  .leadership-content p,
  .about-contact .contact-info > p {
    font-size: 16px;
  }

  .about-hero-bottom-image {
    height: 200px;
  }

  .leadership-image {
    height: 300px;
  }

  .form-row {
    flex-direction: column;
    gap: 16px;
  }

  .about-contact .contact-form {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .footer .footer-card {
    padding: 80px 30px;
  }

  .contact-info {
    text-align: center;
  }

  .contact-form {
    min-width: 100%;
    padding: 20px;
  }

  .about-hero {
    padding: 100px 0 0;
  }

  .about-hero-text h1 {
    font-size: 48px;
  }

  .about-hero-description p {
    font-size: 16px;
  }

  .leadership-content h2,
  .team-header h2,
  .about-contact .contact-info h2 {
    font-size: 36px;
  }

  .leadership-content p,
  .about-contact .contact-info > p {
    font-size: 16px;
  }

  .about-hero-image {
    height: 300px;
  }

  .about-hero-bottom-image {
    height: 150px;
  }

  .leadership-image {
    height: 250px;
  }

  .team-card {
    width: 100%;
    max-width: 350px;
  }

  .about-team-background {
    width: 100%;
    height: 500px;
  }
}

/* ===================================
   SYNCHRO PROFILE PAGE STYLES
   =================================== */

/* Footer-synchro */
.footer-synchro {
  background: linear-gradient(313deg, #feede7 8.07%, #f9e9fe 80.05%);
}
/* Profile Hero Section */
.profile-hero {
  padding: 161px 0 0;
  background: #ffffff;
  position: relative;
  max-height: 1053px;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.profile-hero-background {
  position: absolute;
  top: 672px;
  left: -115px;
  width: 1636px;
  height: 618px;
  z-index: 1;
}

.profile-hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ffdaec 0%, #9595ff 100%);
  opacity: 0.4;
  filter: blur(100px);
  border-radius: 50%;
}

.profile-hero .container {
  position: relative;
  z-index: 2;
}

.profile-hero-content {
  text-align: center;
  margin-bottom: 48px;
}

.hero-title-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.profile-hero-content h1 {
  font-family: "Poppins", sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  color: #161616;
  margin-bottom: 0;
  letter-spacing: 1px;
  min-width: fit-content;
  display: inline;
}

.profile-hero-content h1 .bold {
  font-weight: 800;
  color: #2c0846;
}

.gradient-text {
  background: linear-gradient(135deg, #ec4899 0%, #d946ef 50%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-alarm-icon {
  position: absolute;
  right: -120px;
  top: 20px;
  width: 68px;
  height: 68px;
  color: #2c0846;
  transform: rotate(14.565deg);
  opacity: 0.8;
}

.hero-alarm-icon svg {
  width: 100%;
  height: 100%;
}

.hero-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 64px;
  font-weight: 200;
  line-height: 1.1;
  color: #2c0846;
  margin-bottom: 16px;
  letter-spacing: 1px;
  display: block;
}

.hero-description {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  color: #5a5a5a;
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 554px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.hero-btn-wrapper {
  background: rgba(255, 255, 255, 0.25);
  border: 1.5px solid rgba(238, 238, 238, 0.5);
  border-radius: 17px;
  padding: 11px 16px;
  height: 79px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-btn-inner {
  background: linear-gradient(99deg, #62119d 4.7%, #deb3ff 139.86%);
  border-radius: 10px;
  height: 63px;
  width: 224px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 144px 40px 0px rgba(0, 0, 0, 0),
    0px 92px 37px 0px rgba(0, 0, 0, 0.01), 0px 52px 31px 0px rgba(0, 0, 0, 0.05),
    0px 23px 23px 0px rgba(0, 0, 0, 0.09), 0px 6px 13px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.hero-btn-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
  border-radius: 10px;
  z-index: 1;
}

.hero-btn-wrapper:hover .hero-btn-inner::before {
  left: 100%;
}

.hero-btn-wrapper.secondary .hero-btn-inner {
  background: #ffffff;
}

.hero-btn-content {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  white-space: nowrap;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-btn-wrapper.secondary .hero-btn-content {
  color: #191715;
}

.hero-btn-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-btn-wrapper:hover .hero-btn-inner {
  box-shadow: 0px 144px 40px 0px rgba(0, 0, 0, 0),
    0px 92px 37px 0px rgba(0, 0, 0, 0.02), 0px 52px 31px 0px rgba(0, 0, 0, 0.08),
    0px 23px 23px 0px rgba(0, 0, 0, 0.12), 0px 6px 13px 0px rgba(0, 0, 0, 0.15);
}

/* Profile Mockup */
.profile-mockup {
  display: flex;
  justify-content: center;
  margin-top: 96px;
}

.mockup-container {
  width: 1123px;
  position: relative;
}

.mockup-container::before {
  content: "";
  position: absolute;
  top: -54px;
  left: 0;
  right: 0;
  height: 176px;
  background: url("http://localhost:3845/assets/fb758dcff932447634bd1afc9141eb30de790d12.png");
  background-size: 100% 100%;
  transform: scaleY(-1);
  z-index: 1;
}

.mockup-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 761px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 2;
}

.mockup-header {
  position: relative;
  z-index: 3;
  background-color: #eff1f5 !important;
  background: url("http://localhost:3845/assets/2911a97f30a3746c140ed9c2f7029ddb2f67c740.png");
  /* background-size: 100% 100%; */
  height: 37px;
  border-radius: 24px 24px 0 0;
  margin: 30px 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}

.mockup-controls {
  display: flex;
  align-items: center;
}

.mockup-dots {
  display: flex;
  gap: 4px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
}

.mockup-url {
  font-family: "Poppins", sans-serif;
  font-size: 10.325px;
  color: #373a46;
  background: #eff1f5;
  padding: 2px 8px;
  border-radius: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.mockup-content {
  position: relative;
  z-index: 3;
  margin: 0 28px;
  height: 606px;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}

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

/* Profile Feature Section */
.profile-feature {
  padding: 123px 0 120px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.feature-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.feature-bg::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 368px;
  background: url("http://localhost:3845/assets/e6b363ab865ccd9aba793ba6dff2b409bfa374c4.svg");
  background-size: cover;
  opacity: 0.14;
}

.feature-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  width: 420px;
  height: 100%;
  background: url("http://localhost:3845/assets/778aa7b907e3241ab85f312942e3742f7fe3d3a2.svg");
  background-size: cover;
  opacity: 0.14;
}

.feature-content {
  display: flex;
  gap: 120px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.feature-text {
  flex: 1;
  max-width: 514px;
}

.feature-tag {
  background: #f9f4fc;
  color: #2c0846;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 24px;
  line-height: 1.7;
}

.feature-text h2 {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  color: #2c0846;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.feature-text h2 .bold {
  font-weight: 800;
}

.feature-text h2 .light {
  font-weight: 200;
}

.feature-description {
  margin-bottom: 40px;
}

.feature-description p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-description p:last-child {
  margin-bottom: 0;
}

.feature-visual {
  flex: 1;
  position: relative;
  width: 557px;
  height: 581px;
}

.feature-background {
  position: absolute;
  top: 60px;
  left: 0;
  width: 500px;
  height: 438px;
  z-index: 1;
}

.bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: 438px;
  background: #efdaff;
  opacity: 0.105;
  border-radius: 20px;
}

.bg-lines-horizontal {
  position: absolute;
  top: 39.73px;
  left: 0;
  width: 500px;
  height: 368px;
  background: url("http://localhost:3845/assets/e6b363ab865ccd9aba793ba6dff2b409bfa374c4.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.14;
}

.bg-lines-vertical {
  position: absolute;
  top: 0;
  left: 40.44px;
  width: 415.156px;
  height: 420px;
  background: url("http://localhost:3845/assets/778aa7b907e3241ab85f312942e3742f7fe3d3a2.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.14;
  transform: rotate(90deg);
  transform-origin: center;
}

.feature-cards {
  position: absolute;
  top: 0;
  left: 57px;
  width: 400px;
  height: 458px;
  z-index: 2;
}

.feature-card {
  position: absolute;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
}

.activity-card {
  top: 0;
  width: 400px;
  padding: 20px;
}

.profile-card {
  top: 213px;
  width: 400px;
  height: 90px;
  padding: 18.099px 20.5px;
  display: inline-grid;
  grid-template-columns: max-content;
  grid-template-rows: max-content;
  place-items: start;
}

.loading-card {
  top: 323px;
  width: 400px;
  height: 90px;
  padding: 20px;
  display: inline-grid;
  grid-template-columns: max-content;
  grid-template-rows: max-content;
  place-items: start;
}

.card-header h3 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #242731;
  margin: 0 0 20px 0;
  line-height: 1.7;
}

.activity-chart {
  position: relative;
  height: 153px;
  margin-bottom: 16px;
}

.chart-container {
  position: relative;
  width: 358px;
  height: 153px;
}

.chart-grid {
  position: absolute;
  top: 17.31px;
  left: 0;
  width: 359.258px;
  height: 185.533px;
  display: flex;
  justify-content: space-between;
}

.chart-line {
  width: 0.309px;
  height: 100%;
  background: #f3f0fe;
}

.chart-highlight {
  position: absolute;
  top: -40.43px;
  left: 158.91px;
  width: 25.352px;
  height: 145px;
  border-radius: 6.183px;
  background: #f7f7f7;
}

.chart-area {
  position: absolute;
  top: 17.93px;
  left: 0;
  width: 359.258px;
  height: 87.805px;
  z-index: 1;
}

.chart-svg {
  position: absolute;
  top: -79.53%;
  left: -0.03%;
  width: 100%;
  height: auto;
  max-width: none;
  z-index: 1;
}

.chart-bars {
  display: flex;
  justify-content: space-between;
  align-items: end;
  height: 100%;
  padding-top: 20px;
}

.chart-bar {
  width: 2px;
  background: #f3f0fe;
  height: 100%;
}

.chart-info {
  position: absolute;
  top: -40px;
  left: 195.79px;
  display: flex;
  flex-direction: column;
  gap: 3.71px;
}

.chart-label {
  font-family: "Poppins", sans-serif;
  font-size: 8.038px;
  font-weight: 500;
  color: #5a5a5a;
  line-height: normal;
  white-space: nowrap;
}

.chart-value {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #081717;
  line-height: normal;
  white-space: nowrap;
}

.chart-dates {
  position: relative;
  display: inline-grid;
  grid-template-columns: max-content;
  grid-template-rows: max-content;
  place-items: start;
  font-family: "Poppins", sans-serif;
  font-size: 7.42px;
  font-weight: 500;
  color: #ffffff;
  line-height: normal;
  margin-top: 8px;
}

.chart-dates span:nth-child(1) {
  margin-left: 0px;
}
.chart-dates span:nth-child(2) {
  margin-left: 38.002px;
}
.chart-dates span:nth-child(3) {
  margin-left: 76.004px;
}
.chart-dates span:nth-child(4) {
  margin-left: 114.007px;
}
.chart-dates span:nth-child(5) {
  margin-left: 152.008px;
}
.chart-dates span:nth-child(6) {
  margin-left: 190.01px;
}
.chart-dates span:nth-child(7) {
  margin-left: 228.013px;
}
.chart-dates span:nth-child(8) {
  margin-left: 266.015px;
}
.chart-dates span:nth-child(9) {
  margin-left: 304.017px;
}
.chart-dates span:nth-child(10) {
  margin-left: 342.019px;
}

.chart-dates span {
  grid-area: 1 / 1;
  width: 14.97px;
  height: 9.966px;
  font-variation-settings: "opsz" 14;
  white-space: nowrap;
}

/* Profile Card Styling */
.profile-icon {
  grid-area: 1 / 1;
  margin-left: 0;
  margin-top: 2.901px;
  position: relative;
  width: 48px;
  height: 48px;
}

.icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
}

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

.icon-content {
  position: absolute;
  top: 11px;
  left: 11px;
  width: 26px;
  height: 26px;
  overflow: hidden;
}

.icon-content img {
  position: absolute;
  top: -3.85%;
  left: -3.85%;
  width: 107.7%;
  height: 107.7%;
  object-fit: contain;
}

.profile-content {
  grid-area: 1 / 1;
  /* margin-left: 68.5px; */
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profile-content h4 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #5a5a5a;
  margin: 0;
  line-height: 1.7;
  white-space: nowrap;
}

.profile-details {
  display: flex;
  align-items: center;
  gap: 17px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #526061;
}

.profile-details span:first-child {
  font-weight: 500;
  line-height: 1.5;
}

.profile-details span:last-child {
  font-weight: 400;
  line-height: 1.5;
}

.divider {
  width: 1px;
  height: 17px;
  background: #ececec;
}

/* Loading Card Styling */
.loading-icon {
  grid-area: 1 / 1;
  margin-left: 0;
  margin-top: 0.5px;
  position: relative;
  width: 48px;
  height: 48px;
}

.loading-content {
  grid-area: 1 / 1;
  margin-left: 68.5px;
  margin-top: 11.5px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.main-bar {
  width: 213px;
  height: 9px;
  background: #081717;
  opacity: 0.1;
  border-radius: 20px;
}

.loading-bars-group {
  display: flex;
  gap: 20px;
}

.small-bar {
  width: 65.267px;
  height: 8px;
  border-radius: 20px;
}

.small-bar:first-child {
  background: #e6e8e8;
  opacity: 0.4;
}

.small-bar:last-child {
  background: #eff5f5;
  opacity: 0.3;
}

.profile-card {
  width: 400px;
  height: 90px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.profile-icon {
  width: 48px;
  height: 48px;
  background: #f0ebff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-icon svg {
  width: 26px;
  height: 26px;
  color: #62119d;
}

.profile-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #5a5a5a;
  margin-bottom: 6px;
  line-height: 1.7;
}

.profile-details {
  display: flex;
  gap: 17px;
  align-items: center;
}

.profile-details span {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #526061;
  line-height: 1.5;
}

.profile-details span:first-child::after {
  content: "";
  width: 1px;
  height: 17px;
  background: #ececec;
  margin-left: 17px;
}

.loading-card {
  width: 400px;
  height: 90px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.loading-icon {
  width: 48px;
  height: 48px;
  background: #e6f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-icon svg {
  width: 26px;
  height: 26px;
  color: #1890ff;
}

.loading-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.loading-bar {
  height: 9px;
  border-radius: 20px;
  background: #081717;
  opacity: 0.1;
}

.loading-bar:first-child {
  width: 213px;
}

.loading-bar:last-child {
  width: 65px;
}

/* Profile Features Grid Section */
.profile-features-grid {
  padding: 0 0 147px 0;
  background: #ffffff;
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.profile-features-background {
  position: absolute;
  top: 300px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1141px, 95vw); /* Responsive width that doesn't exceed viewport */
  height: 465px;
  z-index: 1;
}

.features-gradient-blur {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ffdaec 0%, #9595ff 100%);
  opacity: 0.4;
  filter: blur(100px);
  border-radius: 50%;
}

.profile-features-grid .container {
  position: relative;
  z-index: 2;
}

.profile-features-grid h2 {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #2c0846;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 1px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1299px;
  margin: 0 auto 60px auto;
}

.features-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
  max-width: 417px;
}

.feature-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 6px;
}

.feature-icon img {
  width: 100%;
  height: 100%;
}

.feature-info h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #2c0846;
  margin-bottom: 10px;
  line-height: 1.7;
}

.feature-info p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.7;
  margin: 0;
}

.feature-list ol {
  margin-top: 8px;
  padding-left: 20px;
}

.feature-list li {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 4px;
}

.features-cta {
  text-align: center;
}

.features-cta .btn {
  background: linear-gradient(99deg, #62119d 4.7%, #deb3ff 139.86%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.14);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 24px;
  height: 63px;
}

/* Profile Pricing Section */
.profile-pricing {
  padding: 0px 0 120px;
  background: #ffffff;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.pricing-content {
  display: flex;
  gap: 120px;
  align-items: center;
}

.pricing-visual {
  flex: 1;
  position: relative;
  width: 500px;
  height: 580px;
  min-height: 580px;
}

.pricing-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ebe5fc;
  border-radius: 20px;
}

.pricing-bg::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 420px;
  background: url("http://localhost:3845/assets/8271837e6c54f8145367de5e4c2c2d68ea54c50c.svg");
  background-size: cover;
  opacity: 0.1;
}

.pricing-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  width: 420px;
  height: 100%;
  background: url("http://localhost:3845/assets/f1ab1b7c51e71b0fb8a41730f49140071944acb9.svg");
  background-size: cover;
  opacity: 0.1;
  transform: rotate(90deg);
  transform-origin: center;
}

.pricing-cards {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
}

.pricing-card {
  background: #ffffff;
  border: 0.8px solid #eff5f5;
  border-radius: 11px;
  padding: 15px 35px;
  width: 186px;
  height: 212px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.pricing-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.pricing-card:first-child .pricing-icon {
  background: #fd72f2;
}

.pricing-card:last-child .pricing-icon {
  background: #c0f0ab;
}

.pricing-icon svg {
  width: 16px;
  height: 16px;
}

.pricing-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #081717;
  text-align: center;
  line-height: 1.5;
}

.pricing-chart {
  width: 90px;
  height: 90px;
  position: relative;
}

.chart-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.chart-circle span {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #081717;
  line-height: 1.7;
}

.pricing-graph {
  position: absolute;
  top: 260px;
  left: 50%;
  transform: translateX(-50%);
  width: 392px;
  background: #ffffff;
  border-radius: 11px;
  padding: 16px 19px 18px;
  height: 266px;
  max-width: calc(100% - 40px);
}

.pricing-graph h4 {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #081717;
  margin-bottom: 12px;
  line-height: 1.5;
}

.graph-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.graph-header span {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #5f6165;
  line-height: 1.5;
}

.graph-tabs {
  background: #f5f4f6;
  border-radius: 8px;
  padding: 0;
  display: flex;
}

.graph-tabs span {
  font-family: "Poppins", sans-serif;
  font-size: 8px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 19px;
  cursor: pointer;
  line-height: normal;
}

.graph-tabs span.active {
  background: #c5fa59;
  color: #081717;
}

.graph-tabs span:not(.active) {
  color: #526061;
}

.graph-chart {
  height: 167px;
  margin-bottom: 12px;
  position: relative;
}

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

.graph-times {
  display: flex;
  justify-content: space-between;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  color: #526061;
  line-height: normal;
}

.pricing-text {
  flex: 1;
  max-width: 477px;
}

.pricing-text h2 {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  color: #2c0846;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.pricing-text h2 .bold {
  font-weight: 800;
}

.pricing-text h2 .light {
  font-weight: 200;
}

.pricing-description {
  margin-bottom: 40px;
}

.pricing-description p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 16px;
}

.pricing-description p:last-child {
  color: #5a5a5a;
  margin-bottom: 0;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg {
  width: 12px;
  height: 12px;
  color: #ffffff;
}

.profile-pricing .check-icon.profile-check {
  background: #2c0846;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-pricing .check-icon.profile-check img {
  width: 12px;
  height: 12px;
}

.pricing-feature span {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #5a5a5a;
  line-height: 1.7;
}

/* Profile Plans Section */
.profile-plans {
  padding: 98px 0 120px;
  background: #ffffff;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.profile-plans .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.plans-header {
  text-align: center;
  margin-bottom: 80px;
}

.plans-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.75rem, 5vw, 3rem); /* Fluid font size: 28px to 48px */
  font-weight: 800;
  line-height: 1.15;
  color: #2c0846;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  letter-spacing: 1px;
}

.plans-header h2 .bold {
  font-weight: 800;
}

.plans-header h2 .light {
  font-weight: 200;
}

.plans-header p {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.125rem); /* Fluid font size: 16px to 18px */
  color: #5a5a5a;
  line-height: 1.7;
  /* max-width: clamp(300px, 80vw, 802px); Fluid max-width */
  margin: 0 auto;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
  gap: clamp(1rem, 4vw, 2.75rem); /* Fluid gap: 16px to 44px */
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 clamp(1rem, 5vw, 2rem); Fluid padding */
  width: 100%;
}

.plan-card {
  background: linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(267deg, #ea6666 2.44%, #6a44ff 95.58%) border-box;
  border: 2px solid transparent;
  border-radius: clamp(12px, 2vw, 16px); /* Fluid border radius */
  padding: clamp(1.5rem, 4vw, 2.125rem) clamp(1.25rem, 3vw, 2.125rem); /* Fluid padding */
  width: 100%;
  min-height: clamp(500px, 60vh, 613px); /* Fluid height */
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: space-between; /* Better content distribution */
}

.plan-header {
  margin-bottom: 0px;
}

.plan-header h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #2c0846;
  text-align: left;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
  line-height: 1.7;
}

.plan-header p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.7;
  margin: 0;
}

.plan-divider {
  margin: 0 0 52px 0;
  width: 335px;
  height: 1px;
  align-self: center;
}

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

.plan-features {
  flex: 1;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  overflow: hidden;
}

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

.plan-feature span {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #5a5a5a;
  line-height: 1.7;
}

.custom-feature span {
  line-height: 1.7;
}

.plan-input {
  margin-bottom: 24px;
}

.plan-input label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #5a5a5a;
  display: block;
  margin-bottom: 12px;
  line-height: 1.7;
}

.plan-input input {
  width: 100%;
  max-width: 308px;
  height: 44px;
  background: #ffffff;
  border: 1px solid rgba(12, 14, 23, 0.1);
  border-radius: 10px;
  padding: 0 16px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #5a5a5a;
  outline: none;
  box-sizing: border-box;
}

.plan-input input:focus {
  border-color: #ea6666;
}

.plan-button {
  background: linear-gradient(99deg, #62119d 4.7%, #deb3ff 139.86%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 15px 32px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1.7;
  width: auto;
  min-width: 120px;
}

.plan-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(98, 17, 157, 0.3);
}

.custom-card .plan-input {
  display: none;
}

.plan-card .btn {
  width: 100%;
  height: auto;
  padding: 15px 32px;
}

/* Synchro Profile Page Responsive Design */
@media (max-width: 1200px) {
  .profile-hero-content h1,
  .hero-subtitle {
    font-size: 64px;
  }

  .profile-hero.grade-page .hero-title {
    font-size: 64px !important;
  }

  .feature-content,
  .pricing-content {
    gap: 80px;
  }

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

  /* Plans grid now uses auto-fit, so no need for explicit breakpoint changes */
}

@media (max-width: 1024px) {
  .profile-hero {
    padding: 140px 0 0;
    min-height: auto;
  }

  .profile-hero-content h1,
  .hero-subtitle {
    font-size: 56px;
  }

  .profile-hero.grade-page .hero-title {
    font-size: 56px !important;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .mockup-container {
    width: 90%;
    max-width: 100%;
  }

  .feature-content,
  .pricing-content {
    flex-direction: column-reverse;
    gap: 60px;
  }

  /* Plan cards now use fluid sizing */

  .feature-visual,
  .pricing-visual {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    height: auto;
    min-height: 400px;
  }

  .pricing-graph {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 392px;
    margin: 20px auto 0;
  }

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

  /* Plans grid auto-adjusts to single column on small screens */
}

@media (max-width: 768px) {
  /* Padding Start */
  .profile-feature {
    padding: 60px 0 90px;
  }

  .profile-features-grid {
    padding: 0 0 60px 0;
  }

  .profile-plans {
    padding: 6px 0 60px;
  }

  .contact {
    padding: 60px 0;
  }

  .cta-final {
    padding: 60px 0;
  }

  .about-team {
    padding: 30px 0 60px 0;
  }

  .about-leadership {
    padding: 60px 0;
  }

  .product-header h3 {
    font-size: 24px;
  }

  .product-header p {
    font-size: 18px;
  }

  .cta-profile-grade {
    padding: 12px 0 30px 0;
  }

  .products {
    padding: 30px 0;
  }

  .profile-pricing {
    padding: 60px 0;
  }

  /* Padding End */

  .pricing-bg::before {
    top: 0px;
  }

  .plans-grid {
    padding: 0;
  }
  .pricing-cards {
    display: none !important;
  }

  .profile-mockup {
    display: none;
  }
  .pricing-text h2 {
    font-size: 36px;
  }

  .pricing-visual {
    position: relative;
  }
  .pricing-card {
    width: 100%;
    gap: 8px;
  }

  .feature-tag {
    margin: 24px 0 !important;
  }

  .feature-visual {
    display: none;
  }
  .about-hero-image {
    display: none;
  }

  .leadership-images {
    flex-direction: row;
  }

  .profile-hero.grade-page .purple-text {
    font-weight: 700;
    font-size: 24px !important;
    letter-spacing: -1px;
  }

  .profile-hero.grade-page .hero-title {
    font-size: 48px !important;
  }

  .plans-header h2 {
    font-size: 36px;
  }
  .feature-item {
    border: 1px solid #efefef;
    max-width: 100% !important;
  }

  .profile-features-grid h2 {
    font-size: 36px;
  }

  .profile-hero {
    padding: 120px 0 0;
  }

  .profile-hero-content h1,
  .hero-subtitle {
    font-size: 48px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-btn-wrapper {
    width: 100%;
    max-width: 300px;
  }

  .hero-btn-inner {
    width: 100%;
  }

  .feature-text h2 {
    font-size: 36px;
  }
  /* Typography now uses fluid clamp() scaling */

  .feature-description p,
  .pricing-description p {
    font-size: 16px;
  }

  .feature-cards {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
  }

  .profile-card,
  .loading-card {
    width: 100%;
  }

  .activity-card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  /* Padding Start */
  .profile-feature {
    padding: 60px 0 90px;
  }

  .profile-features-grid {
    padding: 0 0 60px 0;
  }

  .profile-plans {
    padding: 6px 0 60px;
  }

  .contact {
    padding: 60px 0;
  }

  .cta-final {
    padding: 60px 0;
  }

  .about-team {
    padding: 30px 0 60px 0;
  }

  .about-leadership {
    padding: 60px 0;
  }

  .product-header h3 {
    font-size: 24px;
  }

  .product-header p {
    font-size: 18px;
  }

  .cta-profile-grade {
    padding: 12px 0 30px 0;
  }

  .products {
    padding: 30px 0;
  }

  .profile-pricing {
    padding: 60px 0;
  }

  /* Padding End */

  .pricing-bg::before {
    top: 0px;
  }
  .profile-mockup {
    display: none;
  }

  .pricing-text h2 {
    font-size: 36px;
  }
  .pricing-visual {
    position: relative;
  }
  .pricing-card {
    width: 100%;
    gap: 8px;
  }

  .feature-tag {
    margin: 24px 0 !important;
  }
  .feature-visual {
    display: none;
  }

  .about-hero-image {
    display: none;
  }
  .leadership-images {
    flex-direction: row;
  }

  .profile-hero.grade-page .purple-text {
    font-weight: 700;
    font-size: 24px !important;
    letter-spacing: -1px;
  }
  .profile-hero.grade-page .hero-title {
    font-size: 48px !important;
  }
  .plans-header h2 {
    font-size: 36px;
  }

  .feature-item {
    border: 1px solid #efefef;
    max-width: 100% !important;
  }
  .profile-features-grid h2 {
    font-size: 36px;
  }

  .section-header {
    text-align: center;
  }
  .profile-hero-content h1,
  .hero-subtitle {
    font-size: 48px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-btn-wrapper {
    max-width: 250px;
  }

  .feature-text h2 {
    font-size: 36px;
  }
  /* Typography scaling handled by clamp() */

  .plans-header p {
    font-size: 18px;
  }

  /* .plans-grid {
    padding: 0 16px;
  } */

  .plans-grid {
    padding: 0;
  }

  /* .plan-card {
    max-width: 350px;
    padding: 24px 20px;
  }
    */

  .pricing-visual {
    height: auto;
    min-height: 300px;
  }

  .pricing-graph {
    width: 100%;
    max-width: 300px;
    margin: 12px auto 0;
    padding: 10px 12px;
    height: auto;
    min-height: 200px;
  }

  /* .pricing-cards {
    gap: 12px;
    flex-direction: column;
    align-items: center;
  } */

  .pricing-cards {
    display: none;
  }

  .floating-elements {
    display: none;
  }

  .hero-alarm-icon {
    display: none;
  }

  /* Ensure wide background elements don't cause horizontal scroll */
  .hero-background,
  .profile-hero-background,
  .about-team-background,
  .profile-features-background {
    left: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    right: 0 !important;
  }

  /* Constrain all sections to prevent horizontal overflow */
  .hero,
  .cta-profile-grade,
  .products,
  .faq,
  .cta-final,
  .contact,
  .footer,
  .profile-hero,
  .profile-feature,
  .profile-features-grid,
  .profile-pricing,
  .profile-plans {
    max-width: 100vw;
    overflow-x: hidden;
  }
}

.footer-card.profile-page {
  background: linear-gradient(313deg, #feede7 8.07%, #f9e9fe 80.05%) !important;
}

/* ===================================
   SYNCHRO GRADE PAGE STYLES
   =================================== */

/* Grade-specific gradient text - Figma colors */
.profile-hero.grade-page .gradient-text {
  background: linear-gradient(267deg, #237cbf 2.44%, #41e9e2 95.58%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700; /* Bold weight for "Confidence" */
}

/* Grade-specific purple text */
.profile-hero.grade-page .purple-text {
  color: #2c0846;
  font-weight: 800;
  font-size: 48px;
}

/* Grade hero title styling */
.profile-hero.grade-page .hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
  color: #161616;
  margin-bottom: 32px;
  letter-spacing: 1px;
  text-align: center;
}

.profile-hero.grade-page .hero-title .light {
  font-weight: 200; /* Regular weight for "Navigate Your Reward Landscape with" */
}

.profile-hero.grade-page .hero-title .bold {
  font-weight: 800; /* Extra bold for "One Job Evaluation at a time" */
}

/* Grade Hero Buttons - Figma colors */
.profile-hero.grade-page .hero-btn-inner {
  background: linear-gradient(267deg, #237cbf 2.44%, #41e9e2 95.58%);
  box-shadow: 0px 144px 40px 0px rgba(0, 0, 0, 0),
    0px 92px 37px 0px rgba(0, 0, 0, 0.01), 0px 52px 31px 0px rgba(0, 0, 0, 0.05),
    0px 23px 23px 0px rgba(0, 0, 0, 0.09), 0px 6px 13px 0px rgba(0, 0, 0, 0.1);
}

/* Disabled hero buttons for grade page */
.profile-hero.grade-page .hero-btn-inner.disabled {
  background: #cccccc !important;
  color: #666666 !important;
  cursor: not-allowed;
  opacity: 0.7;
  box-shadow: none;
}

.profile-hero.grade-page .hero-btn-inner.disabled .hero-btn-content {
  color: #666666 !important;
  cursor: not-allowed;
}

.profile-hero.grade-page .hero-btn-wrapper.secondary .hero-btn-inner {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 144px 40px 0px rgba(0, 0, 0, 0),
    0px 92px 37px 0px rgba(0, 0, 0, 0.01), 0px 52px 31px 0px rgba(0, 0, 0, 0.05),
    0px 23px 23px 0px rgba(0, 0, 0, 0.09), 0px 6px 13px 0px rgba(0, 0, 0, 0.1);
}

.profile-hero.grade-page .hero-btn-wrapper.secondary .hero-btn-content {
  color: #161616;
}

/* Grade Feature Section Buttons */
.profile-feature.grade-page .btn-outline {
  background: linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(267deg, #237cbf 2.44%, #41e9e2 95.58%) border-box;
  border: 2px solid transparent;
  color: #237cbf;
}

.profile-feature.grade-page .btn-outline:hover {
  background: linear-gradient(267deg, #237cbf 2.44%, #41e9e2 95.58%);
  color: #ffffff;
}

/* Grade Features Grid Buttons */
.profile-features-grid.grade-page .btn-primary {
  background: linear-gradient(267deg, #237cbf 2.44%, #41e9e2 95.58%);
  border: none;
  color: #ffffff;
}

.profile-features-grid.grade-page .btn-primary:hover {
  background: linear-gradient(267deg, #1a5a8a 2.44%, #2db5b0 95.58%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(35, 124, 191, 0.3);
}

/* Grade Plans Section Buttons */
.profile-plans.grade-page .btn-primary {
  background: linear-gradient(267deg, #237cbf 2.44%, #41e9e2 95.58%);
  border: none;
  color: #ffffff;
}

.profile-plans.grade-page .btn-primary:hover {
  background: linear-gradient(267deg, #237cbf 2.44%, #41e9e2 95.58%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(65, 233, 226, 0.3);
}

/* Grade page specific button styles */
.btn-grade {
  background: linear-gradient(267deg, #237cbf 2.44%, #41e9e2 95.58%);
  border: none;
  color: #ffffff;
}

.btn-grade:hover {
  background: linear-gradient(267deg, #1a5a8a 2.44%, #2db5b0 95.58%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(35, 124, 191, 0.3);
}

.profile-plans.grade-page .plan-button {
  padding: 15px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  width: auto;
  min-width: 120px;
}

/* Disabled buttons styling for grade page */
/* .grade-page button:disabled,
.grade-page .btn:disabled {
  background: #cccccc !important;
  color: #666666 !important;
  cursor: not-allowed !important;
  opacity: 0.7;
  border: 1px solid #cccccc !important;
}

.grade-page button:disabled:hover,
.grade-page .btn:disabled:hover {
  background: #cccccc !important;
  transform: none !important;
  box-shadow: none !important;
} */

.profile-plans.grade-page .plan-card {
  background: linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(267deg, #237cbf 2.44%, #41e9e2 95.58%) border-box;
  border: 2px solid transparent;
  height: 700px;
  justify-content: space-between;
}

.profile-plans.grade-page .plan-features {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.profile-plans.grade-page .plan-input {
  margin-top: auto;
  margin-bottom: 16px;
}

.profile-pricing.grade-page .pricing-bg {
  background: #c5f8f6;
}

/* Grade Feature Navigation */
.profile-feature.grade-page .feature-navigation {
  display: flex;
  justify-content: space-between;
  margin-bottom: 95px;
  padding-top: 40px;
}

.profile-feature.grade-page .nav-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 300px;
}

.profile-feature.grade-page .nav-line {
  width: 100%;
  height: 2px;
  background: #e5e5e5;
}

.profile-feature.grade-page .nav-item.active .nav-line {
  background: linear-gradient(90deg, #237cbf 0%, #41e9e2 100%);
}

.profile-feature.grade-page .nav-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}

.profile-feature.grade-page .nav-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #2c0846;
  margin: 0;
  text-align: center;
}

.profile-feature.grade-page .nav-item.active .nav-content h3 {
  color: #2c0846;
}

.profile-feature.grade-page .nav-number {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #2481c1;
}

.profile-feature.grade-page .nav-item.active .nav-number {
  color: #2481c1;
}

.profile-feature.grade-page .nav-item:not(.active) .nav-number {
  color: #526061;
}

/* Grade Feature Tag */
.profile-feature.grade-page .feature-tag.grade-why-tag {
  background: rgba(73, 232, 226, 0.32);
  color: #2481c1;
  padding: 8px 15px;
  border-radius: 100px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
}

/* Grade Feature Quote */
.profile-feature.grade-page .feature-quote {
  font-style: italic;
  font-weight: bold;
  margin-top: 16px;
}

/* Grade Get Started Button */
.profile-feature.grade-page .btn.grade-get-started {
  border: 1.5px solid #237cbf;
  color: #081717;
  background: transparent;
  font-weight: bold;
}

/* Grade Header Let's Talk Button */
.btn-outline.grade-get-started {
  background: linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(267deg, #237cbf 2.44%, #41e9e2 95.58%) border-box;
  border: 2px solid transparent;
  color: #237cbf;
  font-weight: bold;
}

.btn-outline.grade-get-started:hover {
  background: linear-gradient(267deg, #237cbf 2.44%, #41e9e2 95.58%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0px 6px 20px rgba(35, 124, 191, 0.3);
}

/* Grade Feature Visual Background */
.profile-feature.grade-page .feature-background.grade-bg {
  background: #deeff6;
  opacity: 0.105;
}

.profile-feature.grade-page .bg-lines-horizontal,
.profile-feature.grade-page .bg-lines-vertical {
  opacity: 0.14;
}

.profile-feature.grade-page .bg-lines-horizontal img,
.profile-feature.grade-page .bg-lines-vertical img {
  width: 100%;
  height: 100%;
}

/* Grade FAQ Section - Figma gradient borders */
.faq.grade-page .faq-item {
  background: linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(267deg, #237cbf 2.44%, #41e9e2 95.58%) border-box;
  border: 2px solid transparent;
  border-radius: 16px;
}

.faq.grade-page::before {
  background: linear-gradient(90deg, #e0f7ff 0%, #41e9e2 100%);
}

/* Grade Contact Form - Figma gradient border */
.contact.grade-page .contact-form {
  border-radius: 16px;
  background: linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(
        267deg,
        rgba(35, 124, 191, 0.4) 2.44%,
        rgba(65, 233, 226, 0.26) 95.58%
      )
      border-box;
  border: 16px solid transparent;
  background-clip: padding-box, border-box;
}

.contact.grade-page .contact-form .btn-primary {
  background: linear-gradient(267deg, #237cbf 2.44%, #41e9e2 95.58%);
  border: none;
  color: #ffffff;
}

.contact.grade-page .contact-form .btn-primary:hover {
  background: linear-gradient(267deg, #237cbf 2.44%, #41e9e2 95.58%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(35, 124, 191, 0.3);
}

/* Grade Footer - Figma gradient background */
.footer-card.grade-page {
  background: linear-gradient(267deg, #237cbf 2.44%, #41e9e2 95.58%) !important;
}

.footer-card.grade-page .footer-content h4,
.footer-card.grade-page .footer-content .footer-description,
.footer-card.grade-page .footer-content a,
.footer-card.grade-page .footer-content p {
  color: #ffffff;
}

.footer-card.grade-page .footer-content a:hover {
  color: #e0f7ff;
}

.footer-card.grade-page .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Grade Pricing Philosophy */
.profile-pricing.grade-page .feature-tag.grade-tag {
  background: #c5f8f6;
  color: #2481c1;
  padding: 8px 15px;
  border-radius: 100px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.profile-pricing.grade-page .check-icon.grade-check {
  background: #2c0846;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-pricing.grade-page .check-icon.grade-check img {
  width: 12px;
  height: 12px;
}

/* Grade Hero Background - Figma colors */
.profile-hero.grade-page .profile-hero-background::before {
  background: linear-gradient(90deg, #e0f7ff 0%, rgba(65, 233, 226, 0.3) 100%);
  opacity: 0.6;
}

/* Grade Features Background - Figma colors */
.profile-features-grid.grade-page .features-gradient-blur {
  background: linear-gradient(267deg, #237cbf 2.44%, #41e9e2 95.58%);
}

/* Ensure grade page sections have consistent width constraints */
.profile-hero.grade-page,
.profile-feature.grade-page,
.profile-features-grid.grade-page,
.profile-pricing.grade-page,
.profile-plans.grade-page {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

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

.hero-content > * {
  animation: fadeInUp 0.6s ease-out;
}

.hero-content > *:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-content > *:nth-child(3) {
  animation-delay: 0.4s;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.faq-toggle:focus,
.expand-btn:focus {
  outline: 2px solid #ea6666;
  outline-offset: 2px;
}

input:focus,
textarea:focus {
  outline: 2px solid #ea6666;
  outline-offset: 2px;
}

/* ===================================
   THANK YOU MESSAGE COMPONENT
   =================================== */

.thank-you-message {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.thank-you-message.show {
  opacity: 1;
  visibility: visible;
}

.thank-you-content {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.thank-you-message.show .thank-you-content {
  transform: translateY(0);
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #ea6666, #ff8a80);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.thank-you-icon::after {
  content: "✓";
  color: #ffffff;
  font-size: 36px;
  font-weight: bold;
}

.thank-you-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0c0e17;
  font-family: "Poppins", sans-serif;
}

.thank-you-description {
  font-size: 18px;
  color: #5a5a5a;
  line-height: 1.6;
  margin-bottom: 32px;
  font-family: "Inter", sans-serif;
}

.thank-you-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.thank-you-btn {
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  border: none;
  cursor: pointer;
  min-width: 120px;
}

.thank-you-btn.primary {
  background: linear-gradient(135deg, #ea6666, #ff8a80);
  color: #ffffff;
}

.thank-you-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(234, 102, 102, 0.3);
}

.thank-you-btn.secondary {
  background: #f8f8f9;
  color: #5a5a5a;
  border: 1px solid #e2e8f0;
}

.thank-you-btn.secondary:hover {
  background: #f1f5f9;
  color: #0c0e17;
}

.thank-you-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: #5a5a5a;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.thank-you-close:hover {
  background: #f1f5f9;
  color: #0c0e17;
}

/* Profile Page Variation */
.profile-page .thank-you-icon {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.profile-page .thank-you-btn.primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.profile-page .thank-you-btn.primary:hover {
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

/* Grade Page Variation */
.grade-page .thank-you-icon {
  background: linear-gradient(135deg, #237cbf, #41e9e2);
}

.grade-page .thank-you-btn.primary {
  background: linear-gradient(135deg, #237cbf, #41e9e2);
}

.grade-page .thank-you-btn.primary:hover {
  box-shadow: 0 8px 25px rgba(35, 124, 191, 0.3);
}

/* Mobile responsiveness */
@media (max-width: 640px) {
  .thank-you-content {
    padding: 32px 24px;
    margin: 0 16px;
  }

  .thank-you-title {
    font-size: 28px;
  }

  .thank-you-description {
    font-size: 16px;
  }

  .thank-you-actions {
    flex-direction: column;
    align-items: center;
  }

  .thank-you-btn {
    width: 100%;
    max-width: 200px;
  }

  .thank-you-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .thank-you-icon::after {
    font-size: 28px;
  }
}

/* Form validation styles */
.form-group input.error,
.form-group textarea.error {
  border-color: #e53e3e !important;
  box-shadow: 0 0 0 1px #e53e3e !important;
}

.form-group input.error::placeholder,
.form-group textarea.error::placeholder {
  color: #e53e3e;
}

/* Contact form success and error states */
.contact-success-message {
  text-align: center;
  padding: 48px 40px;
  background: #ffffff;
  border-radius: 16px;
}

.contact-success-message h3 {
  font-size: 28px;
  font-weight: 700;
  color: #2c0846;
  margin-bottom: 16px;
  font-family: "Poppins", sans-serif;
}

.contact-success-message p {
  font-size: 16px;
  color: #2c0846;
  line-height: 1.6;
  margin-bottom: 24px;
  font-family: "Inter", sans-serif;
}

.contact-success-message .lead-id {
  font-size: 14px;
  color: #2c0846;
  font-weight: 600;
  margin-bottom: 32px !important;
  padding: 8px 16px;
  background: #f8f8f9;
  border-radius: 8px;
  display: inline-block;
  border: 1px solid #e2e8f0;
}

.contact-error-message {
  text-align: center;
  padding: 48px 40px;
  background: #ffffff;
  border-radius: 16px;
  border: 2px solid #d63031;
}

.contact-error-message .error-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
}

.contact-error-message .error-icon svg {
  width: 100%;
  height: 100%;
}

.contact-error-message h3 {
  font-size: 28px;
  font-weight: 700;
  color: #d63031;
  margin-bottom: 16px;
  font-family: "Poppins", sans-serif;
}

.contact-error-message p {
  font-size: 16px;
  color: #2c0846;
  line-height: 1.6;
  margin-bottom: 32px;
  font-family: "Inter", sans-serif;
}

/* Form success and error state styling */
.contact-form.form-success {
  background: #ffffff;
  border-radius: 16px;
  padding: 0;
}

.contact-form.form-error {
  background: #ffffff;
  border-radius: 16px;
  padding: 0;
  border: 2px solid #d63031;
}

/* Mobile responsiveness for success/error messages */
@media (max-width: 640px) {
  .contact-success-message {
    padding: 32px 24px;
  }

  .contact-success-message h3 {
    font-size: 24px;
  }

  .contact-success-message .success-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }

  .contact-error-message {
    padding: 32px 24px;
  }

  .contact-error-message h3 {
    font-size: 24px;
  }

  .contact-error-message .error-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }
}

/* Error state thank you message */
.thank-you-message .thank-you-icon.error {
  background: linear-gradient(135deg, #e53e3e, #ff6b6b);
}

.thank-you-message .thank-you-icon.error::after {
  content: "⚠";
  font-size: 32px;
}
