  /* Enhanced Hero Section */
  .hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      color: #fff;
      padding-top: 70px;
  }

  .hero-bg-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
  }

  .hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: start;
      justify-content: center;
      width: 100%;
      text-align: center;
      padding: 0 16px;
  }

  @media (min-width: 768px) {
      .hero-content {
          flex-direction: row;
          text-align: left;
          align-items: center;
          justify-content: space-between;
          padding: 0;
      }
  }

  .hero-text {
      flex: 1;
      max-width: 100%;
      margin-bottom: 40px;
      animation: fadeInUp 0.8s ease forwards;
  }

  @media (min-width: 768px) {
      .hero-text {
          max-width: 34%;
          margin-bottom: 0;
      }
  }

  .hero-subtitle {
      display: inline-block;
      /* font-family: unset !important; */
      font-style: italic;
      font-weight: 500;
      font-size: 1.2rem;
      letter-spacing: 1.5px;
      color: rgba(255, 255, 255, 0.92);
      margin-bottom: 14px;
      padding: 6px 18px;
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 30px;
      backdrop-filter: blur(4px);
      background: rgba(255, 255, 255, 0.08);
      animation: fadeInUp 0.7s ease forwards;
  }
  @media (min-width: 768px) {
      .hero-subtitle {
          font-size: 1.4rem;
          letter-spacing: 2px;
      }
  }

  .hero h1 {
      font-size: 2rem;
      margin-bottom: 1.2rem;
      color: #fff;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      line-height: 1.2;
  }

  /* Hero heading line-break: only render the <br> at >= 1200px */
  .hero h1 br.hero-lg-break {
      display: none;
  }
  @media (min-width: 1200px) {
      .hero h1 br.hero-lg-break {
          display: block;
      }
  }

  @media (min-width: 425px) {
      .hero h1 {
          font-size: 2.25rem;
      }
  }

  @media (min-width: 768px) {
      .hero h1 {
          font-size: 2.65rem;
      }
  }

  @media (min-width: 991px) {
      .hero h1 {
          font-size: 3rem;
      }
  }

  .hero p {
      font-size: 1rem;
      margin-bottom: 2rem;
      color: rgba(255, 255, 255, 0.9);
      max-width: 100%;
  }

  @media (min-width: 425px) {
      .hero p {
          font-size: 1.1rem;
      }
  }

  @media (min-width: 768px) {
      .hero p {
          font-size: 1.2rem;
          max-width: 500px;
      }
  }

  .hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 12px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s ease 0.4s forwards;
      width: 100%;
      max-width: 300px;
      margin: 0 auto;
  }

  @media (min-width: 425px) {
      .hero-buttons {
          flex-direction: row;
          max-width: 100%;
          justify-content: center;
      }
  }

  @media (min-width: 768px) {
      .hero-buttons {
          justify-content: flex-start;
          margin: 0;
      }
  }

  .btn {
      padding: 14px 28px;
      border-radius: var(--border-radius);
      font-weight: 500;
      text-decoration: none;
      transition: var(--transition);
      display: inline-block;
      cursor: pointer;
      font-size: 16px;
      text-align: center;
      border: none;
      outline: none;
      width: 100%;
  }

  @media (min-width: 425px) {
      .btn {
          width: auto;
      }
  }

  .btn-primary {
      background-color: transparent;
      color: var(--white);
      border: 2px solid var(--white);
  }

  .btn-primary:hover {
      background-color: var(--white);
      color: var(--text-primary);
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
  }

  .btn-secondary {
      border: 2px solid var(--white);
      color: var(--white);
      background-color: transparent;
  }

  .btn-secondary:hover {
      background-color: var(--white);
      color: var(--text-primary);
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
  }

  .btn i {
      margin-left: 6px;
      transition: transform 0.3s ease;
  }

  .btn:hover i {
      transform: translateX(5px);
  }

  .hero-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      animation: fadeIn 1s ease 0.6s forwards;
      opacity: 0;
  }

  @media (max-width: 767px) {
      .hero-image {
          display: none;
      }
  }

  .product-image {
      max-width: 100%;
      max-height: 400px;
      animation: float 4s ease-in-out infinite;
      filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
      border-radius: 20px;
  }

  @media (min-width: 991px) {
      .product-image {
          max-width: 400px;
          max-height: 500px;
      }
  }

  .hero-scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      color: rgba(255, 255, 255, 0.8);
      text-align: center;
      animation: bounce 2s infinite;
  }

  .hero-scroll-indicator i {
      font-size: 1.5rem;
      margin-top: 5px;
      display: block;
  }

  @media (max-width: 767px) {
      .hero {
          min-height: 0;
          height: auto;
          display: flex;
          flex-direction: column;
          justify-content: flex-start;
          padding: 92px 16px 28px;
          background: linear-gradient(180deg, #f7fbff 0%, #FAF9F7 100%);
          color: var(--text-primary);
          gap: 22px;
      }

      .hero-bg-video {
          position: relative;
          order: 2;
          width: 100%;
          height: auto;
          aspect-ratio: 4 / 5;
          object-fit: cover;
          border-radius: 24px;
          box-shadow: 0 18px 45px rgba(1, 63, 148, 0.18);
      }

      .hero .container {
          order: 1;
          position: relative;
          z-index: 2;
          padding: 0;
      }

      .hero-content {
          align-items: flex-start;
          justify-content: flex-start;
          padding: 0;
          text-align: left;
      }

      .hero-text {
          max-width: 100%;
          margin-bottom: 0;
      }

      .hero-subtitle {
          color: var(--text-primary);
          border-color: rgba(1, 63, 148, 0.24);
          background: rgba(255, 255, 255, 0.75);
          backdrop-filter: blur(8px);
          font-size: 0.82rem;
          letter-spacing: 0.8px;
          padding: 5px 12px;
          margin-bottom: 10px;
      }

      .hero h1 {
          color: var(--text-primary);
          font-size: clamp(1.55rem, 7.4vw, 2.15rem);
          text-shadow: none;
          margin-bottom: 1rem;
      }

      .hero p {
          color: rgba(1, 63, 148, 0.78);
          font-size: 1rem;
          margin-bottom: 1.4rem;
      }

      .hero-buttons {
          flex-direction: row;
          justify-content: flex-start;
          width: 100%;
          max-width: none;
          margin: 0;
          gap: 10px;
      }

      .hero .btn {
          width: auto;
          flex: 1 1 0;
          min-height: 48px;
          padding: 13px 14px;
          border-radius: 14px;
          font-size: 14px;
      }

      .hero .btn-primary {
          background-color: var(--text-primary);
          border-color: var(--text-primary);
          color: var(--white);
      }

      .hero .btn-secondary {
          background-color: transparent;
          border-color: rgba(1, 63, 148, 0.34);
          color: var(--text-primary);
      }

      .hero-scroll-indicator {
          display: none;
      }
  }

  /* Marquee Section */
  .marquee-section {
      padding: 14px 0;
      background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
      color: var(--white);
      overflow: hidden;
      position: relative;
  }

  @media (min-width: 768px) {
      .marquee-section {
          padding: 24px 0;
      }
  }

  .marquee-container {
      display: flex;
      overflow: hidden;
      white-space: nowrap;
      position: relative;
  }

  .marquee-track {
      display: flex;
      animation: marquee 40s linear infinite;
  }

  .marquee-item {
      display: flex;
      align-items: center;
      margin: 0 20px;
      font-size: 14px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
      white-space: nowrap;
  }

  @media (min-width: 425px) {
      .marquee-item {
          font-size: 16px;
          margin: 0 30px;
      }
  }

  @media (min-width: 768px) {
      .marquee-item {
          font-size: 18px;
          margin: 0 40px;
      }
  }

  .marquee-item i {
      margin-right: 8px;
      font-size: 16px;
      color: var(--bg-secondary);
  }

  @media (min-width: 768px) {
      .marquee-item i {
          font-size: 20px;
          margin-right: 10px;
      }
  }

  @keyframes marquee {
      0% {
          transform: translateX(0);
      }

      100% {
          transform: translateX(-50%);
      }
  }

  /* Section Spacing */
  section {
      padding: var(--section-spacing) 0;
  }

  @media (max-width: 767px) {
      section {
          padding: calc(var(--section-spacing) * 0.7) 0;
      }
  }

  /* Philosophy Section */
  .philosophy {
      background-color: var(--bg-primary);
  }

  .philosophy-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
  }

  @media (min-width: 991px) {
      .philosophy-content {
          flex-direction: row;
          align-items: center;
          gap: 60px;
      }
  }

  .philosophy-image {
      width: 100%;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
      position: relative;
      height: 300px;
      order: 2;
  }

  @media (min-width: 768px) {
      .philosophy-image {
          height: 400px;
      }
  }

  @media (min-width: 991px) {
      .philosophy-image {
          flex: 1;
          height: 500px;
          order: 1;
          transform: translateX(-30px);
      }
  }

  .philosophy-image.visible {
      opacity: 1;
      transform: translateY(0);
  }

  @media (min-width: 991px) {
      .philosophy-image.visible {
          transform: translateX(0);
      }
  }

  .philosophy-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
  }

  .philosophy-image:hover img {
      transform: scale(1.05);
  }

  .philosophy-text {
      width: 100%;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
      order: 1;
  }

  @media (min-width: 991px) {
      .philosophy-text {
          flex: 1;
          transform: translateX(30px);
          order: 2;
      }
  }

  .philosophy-text.visible {
      opacity: 1;
      transform: translateY(0);
  }

  @media (min-width: 991px) {
      .philosophy-text.visible {
          transform: translateX(0);
      }
  }

  .philosophy h2 {
      font-size: 28px;
      margin-bottom: 20px;
      color: var(--text-primary);
  }

  @media (min-width: 768px) {
      .philosophy h2 {
          font-size: 32px;
      }
  }

  @media (min-width: 991px) {
      .philosophy h2 {
          font-size: 36px;
      }
  }

  .section-subtitle {
      font-size: 16px;
      color: var(--accent);
      margin-bottom: 15px;
      display: block;
      font-weight: 500;
  }

  @media (min-width: 768px) {
      .section-subtitle {
          font-size: 18px;
      }
  }

  .philosophy p {
      margin-bottom: 20px;
      font-size: 15px;
  }

  @media (min-width: 768px) {
      .philosophy p {
          font-size: 16px;
      }
  }

  /* Products Section */
  .products {
      background-color: var(--bg-secondary);
  }

  .section-header {
      text-align: center;
      margin-bottom: 40px;
  }

  @media (min-width: 768px) {
      .section-header {
          margin-bottom: 60px;
      }
  }

  .section-header h2 {
      font-size: 28px;
      margin-bottom: 15px;
  }

  @media (min-width: 768px) {
      .section-header h2 {
          font-size: 32px;
      }
  }

  @media (min-width: 991px) {
      .section-header h2 {
          font-size: 36px;
      }
  }

  .products-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      margin-bottom: 40px;
  }

  @media (min-width: 576px) {
      .products-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (min-width: 991px) {
      .products-grid {
          grid-template-columns: repeat(3, 1fr);
          gap: 30px;
      }
  }

  .product-card {
      background-color: var(--white);
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      opacity: 0;
      transform: translateY(30px);
      position: relative;
  }

  .product-card.visible {
      opacity: 1;
      transform: translateY(0);
  }

  .product-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
  }

  .product-image-container {
      height: 250px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
      position: relative;
  }

  @media (min-width: 768px) {
      .product-image-container {
          height: 300px;
      }
  }

  .product-image-container img {
      max-width: 70%;
      max-height: 70%;
      transition: var(--transition);
      filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  }

  .product-card:hover .product-image-container img {
      transform: scale(1.05);
  }

  .product-info {
      padding: 20px;
      position: relative;
  }

  @media (min-width: 768px) {
      .product-info {
          padding: 25px;
      }
  }

  .product-info h3 {
      font-size: 18px;
      margin-bottom: 10px;
  }

  @media (min-width: 768px) {
      .product-info h3 {
          font-size: 20px;
      }
  }

  .product-info p {
      color: #666;
      margin-bottom: 15px;
      font-size: 13px;
  }

  @media (min-width: 768px) {
      .product-info p {
          font-size: 14px;
      }
  }

  .product-price {
      font-weight: 600;
      font-size: 16px;
      margin-bottom: 15px;
  }

  @media (min-width: 768px) {
      .product-price {
          font-size: 18px;
      }
  }

  .product-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      background-color: var(--text-primary);
      color: var(--white);
      text-decoration: none;
      border-radius: var(--border-radius);
      font-size: 13px;
      transition: var(--transition);
      position: absolute;
      bottom: 20px;
      right: 20px;
      border: 2px solid var(--text-primary);
      opacity: 1;
  }

  @media (min-width: 768px) {
      .product-cta {
          padding: 12px 24px;
          font-size: 14px;
          bottom: 25px;
          right: 25px;
      }
  }

  .product-cta:hover {
      background-color: var(--accent);
      border-color: var(--accent);
      transform: translateY(-2px);
  }

  .view-all {
      text-align: center;
  }

  /* Features Section */
  .features {
      background-color: var(--bg-primary);
  }

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

  @media (min-width: 576px) {
      .features-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (min-width: 991px) {
      .features-grid {
          grid-template-columns: repeat(4, 1fr);
          gap: 30px;
      }
  }

  .feature-item {
      text-align: center;
      padding: 30px 15px;
      border-radius: var(--border-radius);
      transition: var(--transition);
      opacity: 0;
      transform: translateY(30px);
      background-color: var(--white);
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
  }

  .feature-item.visible {
      opacity: 1;
      transform: translateY(0);
  }

  .feature-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(141, 203, 230, 0.1), transparent);
      transition: var(--transition);
  }

  .feature-item:hover::before {
      left: 100%;
  }

  .feature-item:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
      background: linear-gradient(135deg, var(--white) 0%, var(--bg-secondary) 100%);
  }

  .feature-icon {
      font-size: 35px;
      margin-bottom: 15px;
      color: var(--accent);
      transition: var(--transition);
  }

  @media (min-width: 768px) {
      .feature-icon {
          font-size: 40px;
          margin-bottom: 20px;
      }
  }

  .feature-item:hover .feature-icon {
      transform: scale(1.1);
      color: var(--text-primary);
  }

  .feature-item h3 {
      font-size: 16px;
      margin-bottom: 10px;
      transition: var(--transition);
  }

  @media (min-width: 768px) {
      .feature-item h3 {
          font-size: 18px;
      }
  }

  .feature-item:hover h3 {
      color: var(--accent);
  }

  .feature-item p {
      font-size: 13px;
      color: #666;
  }

  @media (min-width: 768px) {
      .feature-item p {
          font-size: 14px;
      }
  }

  /* Results Section */
  .results {
      background-color: var(--bg-secondary);
      position: relative;
  }

  .results::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
      background-size: cover;
      pointer-events: none;
  }

  .results-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
      position: relative;
      z-index: 1;
  }

  @media (min-width: 991px) {
      .results-content {
          flex-direction: row;
          align-items: start;
          gap: 60px;
      }
  }

  .results-image {
      width: 100%;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
  }

  @media (min-width: 991px) {
      .results-image {
          flex: 1;
          transform: translateX(-30px);
          max-width: 500px;
      }
  }

  @media (min-width: 1200px) {
      .results-image {
          max-width: 600px;
      }
  }

  .results-image.visible {
      opacity: 1;
      transform: translateY(0);
  }

  @media (min-width: 991px) {
      .results-image.visible {
          transform: translateX(0);
      }
  }

  .results-image img {
      width: 100%;
      height: auto;
      display: block;
      height: 600px;
      object-fit: cover;
  }

  @media (max-width: 768px) {
      .results-image img {
          height: 400px;
      }
  }

  @media (max-width: 991px) {
      .results-image img {
          height: 500px;
      }
  }

  .results-stats {
      width: 100%;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
  }

  @media (min-width: 991px) {
      .results-stats {
          flex: 1;
          transform: translateX(30px);
      }
  }

  .results-stats.visible {
      opacity: 1;
      transform: translateY(0);
  }

  @media (min-width: 991px) {
      .results-stats.visible {
          transform: translateX(0);
      }
  }

  .stat-item {
      margin-bottom: 30px;
      padding: 25px 20px;
      background-color: var(--white);
      border-radius: var(--border-radius);
      box-shadow: var(--shadow);
      transition: var(--transition);
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  @media (min-width: 768px) {
      .stat-item {
          padding: 30px;
          margin-bottom: 40px;
      }
  }

  .stat-item:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
  }

  .stat-item:last-child {
      margin-bottom: 0 !important;
  }

  .stat-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--accent) 0%, var(--text-primary) 100%);
  }

  .stat-number {
      font-size: 36px;
      font-weight: 600;
      color: var(--accent);
      margin-bottom: 10px;
      display: block;
  }

  @media (min-width: 768px) {
      .stat-number {
          font-size: 48px;
      }
  }

  .stat-text {
      font-size: 16px;
  }

  @media (min-width: 768px) {
      .stat-text {
          font-size: 18px;
      }
  }

  /* Testimonial Section */
  .testimonial {
      background-color: var(--bg-primary);
      position: relative;
  }

  .testimonial-slider {
      max-width: 100%;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
  }

  @media (min-width: 768px) {
      .testimonial-slider {
          max-width: 700px;
      }
  }

  @media (min-width: 991px) {
      .testimonial-slider {
          max-width: 900px;
      }
  }

  .testimonial-slides {
      display: flex;
      transition: transform 0.5s ease;
  }

  .testimonial-slide {
      min-width: 100%;
      padding: 0 10px;
      box-sizing: border-box;
  }

  @media (min-width: 768px) {
      .testimonial-slide {
          padding: 0 20px;
      }
  }

  .testimonial-content {
      text-align: center;
      padding: 40px 25px;
      background-color: var(--bg-secondary);
      border-radius: var(--border-radius);
      position: relative;
      opacity: 1;
      transform: translateY(0);
  }

  @media (min-width: 768px) {
      .testimonial-content {
          padding: 50px 40px;
      }
  }

  @media (min-width: 991px) {
      .testimonial-content {
          padding: 60px 40px;
      }
  }

  .testimonial-quote {
      font-size: 18px;
      font-style: italic;
      margin-bottom: 25px;
      line-height: 1.5;
      position: relative;
  }

  @media (min-width: 768px) {
      .testimonial-quote {
          font-size: 20px;
          margin-bottom: 30px;
      }
  }

  @media (min-width: 991px) {
      .testimonial-quote {
          font-size: 24px;
      }
  }

  .testimonial-quote::before,
  .testimonial-quote::after {
      content: '"';
      font-size: 30px;
      color: var(--accent);
      position: absolute;
  }

  @media (min-width: 768px) {

      .testimonial-quote::before,
      .testimonial-quote::after {
          font-size: 40px;
      }
  }

  .testimonial-quote::before {
      top: -15px;
      left: -10px;
  }

  @media (min-width: 768px) {
      .testimonial-quote::before {
          top: -20px;
          left: -20px;
      }
  }

  .testimonial-quote::after {
      bottom: -30px;
      right: -10px;
  }

  @media (min-width: 768px) {
      .testimonial-quote::after {
          bottom: -40px;
          right: -20px;
      }
  }

  .testimonial-author {
      font-weight: 600;
      font-size: 16px;
      margin-top: 20px;
  }

  @media (min-width: 768px) {
      .testimonial-author {
          font-size: 18px;
      }
  }

  .testimonial-role {
      color: #666;
      font-size: 13px;
  }

  @media (min-width: 768px) {
      .testimonial-role {
          font-size: 14px;
      }
  }

  .testimonial-nav {
      display: flex;
      justify-content: center;
      margin-top: 25px;
      gap: 10px;
  }

  @media (min-width: 768px) {
      .testimonial-nav {
          margin-top: 30px;
      }
  }

  .testimonial-dot {
      width: 20px;
      height: 6px;
      border-radius: 3px;
      background-color: var(--accent-light);
      cursor: pointer;
      transition: var(--transition);
  }

  .testimonial-dot.active {
      background-color: var(--accent);
      width: 40px;
  }

/* Updated Real World Section CSS - Icon Grid */
.real-world {
    background-color: var(--bg-secondary);
}

.real-world-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

@media (min-width: 991px) {
    .real-world-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 60px;
    }
}

.real-world-text {
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

@media (min-width: 991px) {
    .real-world-text {
        flex: 1;
        transform: translateX(-30px);
    }
}

.real-world-text.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 991px) {
    .real-world-text.visible {
        transform: translateX(0);
    }
}

.real-world-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .real-world-text h2 {
        font-size: 32px;
    }
}

@media (min-width: 991px) {
    .real-world-text h2 {
        font-size: 36px;
    }
}

.real-world-text p {
    margin-bottom: 20px;
    font-size: 15px;
}

@media (min-width: 768px) {
    .real-world-text p {
        font-size: 16px;
    }
}

.real-world-image {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: relative;
    height: 300px;
}

@media (min-width: 768px) {
    .real-world-image {
        height: 400px;
    }
}

@media (min-width: 991px) {
    .real-world-image {
        flex: 1;
        height: 500px;
        transform: translateX(30px);
    }
}

.real-world-image.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 991px) {
    .real-world-image.visible {
        transform: translateX(0);
    }
}

.real-world-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.real-world-image:hover img {
    transform: scale(1.05);
}

/* Updated Real World Factors - Icon Grid */
.real-world-factors {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .real-world-factors {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

.factor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.factor-item:hover {
    transform: translateY(-2px);
}

.factor-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    margin-bottom: 12px;
    font-size: 24px;
    border: 2px solid var(--accent);
}

.factor-item h3 {
    font-size: 16px;
    margin: 0;
    color: var(--text-primary);
    font-weight: 500;
}

@media (min-width: 768px) {
    .factor-item h3 {
        font-size: 18px;
    }
}
  /* CTA Section */
  .cta {
      padding: 80px 0;
      background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
      background-size: cover;
      color: var(--white);
      text-align: center;
      position: relative;
  }

  @media (min-width: 768px) {
      .cta {
          padding: 50px 0;
      }
  }

  @media (min-width: 991px) {
      .cta {
          padding: 60px 0;
          background-attachment: fixed;
      }
  }

  .cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(1, 63, 148, 0.3) 0%, rgba(141, 203, 230, 0.3) 100%);
      z-index: 1;
  }

  .cta-content {
      max-width: 100%;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      padding: 0 16px;
  }

  @media (min-width: 768px) {
      .cta-content {
          max-width: 700px;
          padding: 0;
      }
  }

  .cta h2 {
      font-size: 32px;
      margin-bottom: 20px;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  @media (min-width: 768px) {
      .cta h2 {
          font-size: 38px;
      }
  }

  @media (min-width: 991px) {
      .cta h2 {
          font-size: 42px;
      }
  }

  .cta p {
      margin-bottom: 30px;
      font-size: 18px;
      opacity: 0.9;
  }

  @media (min-width: 768px) {
      .cta p {
          margin-bottom: 40px;
          font-size: 20px;
      }
  }

  .cta-buttons {
      display: flex;
      flex-direction: column;
      gap: 15px;
      justify-content: center;
      align-items: center;
  }

  @media (min-width: 425px) {
      .cta-buttons {
          flex-direction: row;
      }
  }

  .cta .btn-primary {
      background-color: transparent;
      color: var(--white);
      border: 2px solid var(--white);
      padding: 14px 28px;
      font-size: 16px;
      width: 100%;
      max-width: 250px;
  }

  @media (min-width: 425px) {
      .cta .btn-primary {
          width: auto;
      }
  }

  @media (min-width: 768px) {
      .cta .btn-primary {
          padding: 16px 32px;
          font-size: 18px;
      }
  }

  .cta .btn-primary:hover {
      background-color: var(--white);
      color: var(--text-primary);
  }

  .cta .btn-secondary {
      border: 2px solid var(--white);
      color: var(--white);
      background-color: transparent;
      padding: 14px 28px;
      font-size: 16px;
      width: 100%;
      max-width: 250px;
  }

  @media (min-width: 425px) {
      .cta .btn-secondary {
          width: auto;
      }
  }

  @media (min-width: 768px) {
      .cta .btn-secondary {
          padding: 16px 32px;
          font-size: 18px;
      }
  }

  .cta .btn-secondary:hover {
      background-color: var(--white);
      color: var(--text-primary);
  }


  @media (max-width: 767px) {
      body {
          overflow-x: hidden;
      }

      .container {
          width: 100%;
          max-width: 100%;
          padding-left: 16px;
          padding-right: 16px;
      }

      section {
          width: 100%;
          overflow: hidden;
      }
  }/* Social Gallery Section */
.social-gallery {
    background-color: #FAF9F7; /* Light pink background */
    padding: 3.5rem 0;
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) {
    .social-gallery {
        padding: 6rem 0 3.5rem;
    }
}

.section-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2.25rem;
    }
}

.gallery-container {
    position: relative;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .gallery-container {
        margin-bottom: 2.25rem;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: var(--white);
    gap: 0;
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Creates 1:1 aspect ratio */
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Decorative Stamp */
.stamp {
    position: absolute;
    top: -55px;
    right: -55px;
    width: 110px;
    height: 110px;
    color: var(--accent);
    z-index: 2;
}

.stamp svg {
    width: 100%;
    height: 100%;
}

/* Content Section */
.content-container {
    max-width: 768px;
    margin: 0 auto;
}

.description {
    width: 91.666%;
    margin: 0 auto 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .description {
        width: 100%;
        margin-bottom: 2.25rem;
    }
}

.description p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.description a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.description a:hover {
    text-decoration: underline;
}

.submit-button {
    display: inline-block;
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    min-width: 262px;
    margin-bottom: 1rem;
}

.submit-button:hover {
    background-color: var(--text-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.legal-text {
    font-size: 0.75rem;
    color: #666;
}

.legal-text a {
    color: #666;
    text-decoration: underline;
}

.legal-text a:hover {
    color: var(--text-primary);
}

/* ===========================================================
   Signature Cleansers Section
   =========================================================== */
.cp-signature-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f5f2 100%);
}
.cp-signature-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}
.cp-signature-section .section-subtitle {
    display: inline-block;
    font-family: 'Inter', 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-primary, #013f94);
    background: rgba(1, 63, 148, 0.08);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.cp-signature-section h2 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
    font-weight: 600;
    color: var(--text-primary, #013f94);
    margin: 0;
}
.signature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.signature-card {
    --sig-color: #013f94;
    --sig-color-soft: rgba(1, 63, 148, 0.08);
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform .35s ease, box-shadow .35s ease;
    display: flex;
    flex-direction: column;
}
.signature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}
.signature-card.sig-blue   { --sig-color: #1d6fdf; --sig-color-soft: rgba(29, 111, 223, 0.10); }
.signature-card.sig-green  { --sig-color: #1f9b6d; --sig-color-soft: rgba(31, 155, 109, 0.10); }
.signature-card.sig-purple { --sig-color: #7e3ec2; --sig-color-soft: rgba(126, 62, 194, 0.10); }

.signature-card-inner {
    padding: 28px 24px 26px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.signature-image-wrap {
    background: var(--sig-color-soft);
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.signature-image-wrap img {
    max-width: 70%;
    max-height: 90%;
    object-fit: contain;
    transition: transform .4s ease;
}
.signature-card:hover .signature-image-wrap img {
    transform: scale(1.05);
}
.signature-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--sig-color);
    margin: 0 0 8px;
    line-height: 1.2;
}
.signature-tag {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-size: 0.92rem;
    color: #4a4a4a;
    line-height: 1.5;
    margin: 0 0 18px;
}
.signature-benefits-label {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sig-color);
    margin-bottom: 10px;
}
.signature-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    flex: 1;
}
.signature-benefits li {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-size: 0.88rem;
    color: #333;
    padding: 6px 0 6px 22px;
    position: relative;
    line-height: 1.4;
}
.signature-benefits li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--sig-color);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.signature-cta {
    align-self: flex-start;
    font-family: 'Inter', 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: var(--sig-color);
    padding: 12px 22px;
    border-radius: 28px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    margin-top: auto;
}
.signature-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
    color: #fff;
}
.signature-cta i {
    transition: transform .25s ease;
}
.signature-cta:hover i {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .signature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .cp-signature-section { padding: 60px 0; }
    .signature-grid { grid-template-columns: 1fr; gap: 22px; }
    .signature-title { font-size: 1.4rem; }
}
