:root {
  --ref-color-primary-0: rgb(0, 0, 0);
  --ref-color-primary-5: rgb(24, 16, 6);
  --ref-color-primary-10: rgb(38, 26, 11);
  --ref-color-primary-15: rgb(53, 35, 15);
  --ref-color-primary-20: rgb(69, 45, 17);
  --ref-color-primary-25: rgb(85, 54, 19);
  --ref-color-primary-30: rgb(102, 65, 20);
  --ref-color-primary-35: rgb(119, 75, 21);
  --ref-color-primary-40: rgb(137, 86, 21);
  --ref-color-primary-45: rgb(155, 97, 22);
  --ref-color-primary-50: rgb(173, 108, 21);
  --ref-color-primary-55: rgb(192, 119, 20);
  --ref-color-primary-60: rgb(211, 131, 18);
  --ref-color-primary-65: rgb(220, 146, 56);
  --ref-color-primary-70: rgb(229, 161, 85);
  --ref-color-primary-75: rgb(236, 176, 113);
  --ref-color-primary-80: rgb(242, 191, 141);
  --ref-color-primary-85: rgb(247, 207, 169);
  --ref-color-primary-90: rgb(249, 225, 197);
  --ref-color-primary-95: rgb(253, 241, 226);
  --ref-color-primary-96: rgb(254, 242, 230);
  --ref-color-primary-97: rgb(254, 245, 236);
  --ref-color-primary-98: rgb(255, 249, 242);
  --ref-color-primary-99: rgb(255, 252, 249);
  --ref-color-primary-100: rgb(255, 255, 255);

  --primary-orange: var(--ref-color-primary-70);
  --light-orange: var(--ref-color-primary-90);
  --dark-orange: var(--ref-color-primary-65);
  --text-dark: var(--ref-color-primary-15);
  --bg-light: var(--ref-color-primary-96);
  --white: var(--ref-color-primary-100);

  --shadow-sm: 0 2px 4px rgba(115, 80, 42, 0.1);
  --shadow-md: 0 5px 8px rgba(115, 80, 42, 0.1);
  --shadow-lg: 0 5px 8px rgba(115, 80, 42, 0.1), 0 10px 15px
    rgba(115, 80, 42, 0.08);
  --shadow-xl: 0 5px 8px rgba(115, 80, 42, 0.4), 0 15px 25px
    rgba(115, 80, 42, 0.1);
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --green-500: #28a745;
  --blue-500: #007bff;
  --blue-600: #0056b3;
  --purple-500: rgb(123, 50, 149);
  --purple-600: rgb(102, 41, 124);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "BIZ UDPGothic", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

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

.top-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 0 60px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5em;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: 0.125rem;
}

h2 {
  font-size: 2rem;
  letter-spacing: 0.1rem;
}

h3 {
  font-size: 1.5rem;
  letter-spacing: 0.05rem;
}

a {
  color: var(--dark-orange);
  text-decoration: none;
  transition: color 0.3s;
}

a:not(.btn):hover {
  color: var(--primary-orange);
}

ul {
  list-style: none;
}

section {
  padding: 80px 0;
}

.highlight {
  color: #fd611f;
  margin: 0 0.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn i {
  margin-left: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, #fd611f, #ff7a3d);
  color: var(--white);
  box-shadow: 0 2px 6px rgba(253, 97, 31, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: translateY(0);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover {
  color: var(--white);
  background: linear-gradient(135deg, #e85510, #fd611f);
  box-shadow: 0 4px 12px rgba(253, 97, 31, 0.25), 0 0 25px
    rgba(253, 97, 31, 0.12);
  transform: translateY(-2px);
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(253, 97, 31, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--dark-orange);
  border: 1px solid var(--ref-color-primary-80);
}

.btn-secondary:hover {
  background-color: var(--bg-light);
}

.btn-white {
  background-color: var(--white);
  color: var(--dark-orange);
  box-shadow: 0 4px 10px rgba(229, 138, 33, 0.15);
}

.btn-white:hover {
  background-color: var(--bg-light);
  box-shadow: 0 6px 12px rgba(229, 138, 33, 0.2);
}

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

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

.section-subtitle {
  font-size: 1.2rem;
  color: var(--ref-color-primary-30);
  max-width: 700px;
  margin: 0 auto;
}

.logo-color {
  height: 3.25rem;
  width: auto;
  display: block;
}

.hero {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background-color: var(--bg-light);
}

.browser-mockup {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: white;
  border: 1px solid var(--ref-color-primary-80);
}

.browser-mockup.quest-screen {
  width: min(32.8125rem, 60vw);
}

.browser-mockup.quest-score {
  width: min(36.09375rem, 60vw);
}

.browser-bar {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  height: 30px;
  background: #f0f0f0;
  border-bottom: 1px solid #ddd;
}

.browser-buttons {
  display: flex;
  gap: 6px;
  margin-right: 12px;
}

.browser-button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.close-btn {
  background-color: #ff5f56;
}

.minimize-btn {
  background-color: #ffbd2e;
}

.maximize-btn {
  background-color: #27c93f;
}

.browser-content img {
  width: 100%;
  height: auto;
  display: block;
}
.hero {
  position: relative;
  padding: 2rem 0;
  overflow: hidden;
  background: linear-gradient(
      123deg,
      transparent 0%,
      transparent 36%,
      rgba(211, 131, 18, 0.08) 36%,
      rgba(220, 146, 56, 0.08) 56%,
      transparent 56%,
      transparent 100%
    ),
    linear-gradient(
      251deg,
      transparent 0%,
      transparent 68%,
      rgba(229, 161, 85, 0.1) 68%,
      rgba(242, 191, 141, 0.1) 99%,
      transparent 99%,
      transparent 100%
    ),
    linear-gradient(
      135deg,
      var(--ref-color-primary-95),
      var(--ref-color-primary-96)
    );
}

.bg-gradient {
  animation: float 15s ease-in-out infinite alternate;
}

.bg-gradient-2 {
  animation: float 20s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, -30px);
  }
}

.bg-gradient {
  position: absolute;
  top: -40px;
  right: -160px;
  width: 320px;
  height: 320px;
  background-color: var(--ref-color-primary-85);
  border-radius: 50%;
  opacity: 0.35;
  filter: blur(40px);
}

.bg-gradient-2 {
  position: absolute;
  bottom: -120px;
  left: -40px;
  width: 350px;
  height: 300px;
  background-color: var(--ref-color-primary-70);
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(40px);
}

.decorative-grid-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.grid-square {
  position: absolute;
  width: 1.75rem;
  height: 1.75rem;
  padding: 1px;
  pointer-events: auto;
  will-change: transform;
}

.grid-square-inner {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 2px solid rgba(242, 191, 141, 0.3);
  border-radius: 0.375rem;
  transition: all 0.7s ease;
  transform: scale(0.98);
  opacity: 0.5;
}

.grid-square.active .grid-square-inner {
  transform: scale(1);
  opacity: 1;
  background-color: rgba(229, 161, 85, 0.2);
  border-color: rgba(211, 131, 18, 0.25);
}

@media (max-width: 768px) {
  .decorative-grid-container {
    max-height: 24rem;
  }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.hero-image {
  position: relative;
  min-height: 35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 30px;
}

.social-proof {
  margin-top: 30px;
  font-weight: 500;
  color: var(--ref-color-primary-30);
}

.company-logos {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.company-logo {
  width: 90px;
  height: 40px;
  background-color: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  opacity: 0.5;
  font-size: 0.7rem;
}

.chat-demo {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 20px;
  border: 1px solid var(--ref-color-primary-80);
}

.chat-content {
  background-color: var(--bg-light);
  border-radius: 10px;
  padding: 20px;
}

.features {
  background-color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  padding: 30px;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease,
    background-color 0.2s ease, border-color 0.2s ease;
  border: 1px solid var(--ref-color-primary-80);
  position: relative;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 10px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    var(--ref-color-primary-70),
    var(--ref-color-primary-85)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: exclude;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  background-color: var(--bg-light);
  box-shadow: 0 12px 32px rgba(229, 161, 85, 0.12);
  border-color: var(--ref-color-primary-70);
}

.feature-card:hover::before {
  opacity: 0.6;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: var(--light-orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon-wide {
  width: 200px;
}

.feature-icon i {
  color: var(--dark-orange);
  font-size: 1.5rem;
}

.feature-icon-image {
  width: 60px;
  height: 60px;
  background-color: var(--light-orange);
  border-radius: 8px;
  display: flex;
}
.feature-icon-wide .feature-icon-image {
  width: 130px;
  height: 130px;
  background-color: transparent;
  border-radius: 8px;
  display: flex;
}

.feature-icon-lg .feature-icon-image {
  width: 65px;
  height: 65px;
}

.reports {
  background-color: var(--white);
}

.reports-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.reports-features {
  margin: 30px 0;
}

.report-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.report-feature-icon {
  width: 40px;
  height: 40px;
  background-color: var(--light-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  margin-right: 15px;
}

.report-feature-icon i {
  color: var(--dark-orange);
}

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

.report-date {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.report-section {
  margin-bottom: 20px;
}

.report-section h4 {
  margin-bottom: 15px;
}

.cta {
  background-image: linear-gradient(
    135deg,
    var(--dark-orange),
    var(--primary-orange)
  );
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.cta h2 {
  margin-bottom: 20px;
}

.cta p {
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2rem;
  word-break: auto-phrase;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer {
  background-color: var(--gray-800);
  color: var(--white);
  padding: 4rem 0 1rem;
}

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

.footer-column h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-logo {
  height: 2rem;
  width: auto;
  margin-bottom: 20px;
  display: block;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-column p {
  color: var(--gray-400);
  margin-bottom: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: var(--gray-400);
  transition: color 0.3s;
}

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

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-700);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: var(--gray-400);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

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

.footer-links a {
  color: var(--gray-400);
  font-size: 0.85rem;
}

/* Device Mockups */
.device-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 50rem;
  height: auto;
  margin: 0 auto;
}

.smartphone {
  position: absolute;
  width: 11.6rem;
  height: 23rem;
  background: #666;
  border-radius: 2rem;
  box-shadow: 0 0 0 2px #e0e0e0, 0 25px 50px rgba(173, 108, 21, 0.4);
  z-index: 3;
  left: 15%;
  top: 20%;
  transform: translateX(-50%);
}

.smartphone::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6rem;
  height: 0.9rem;
  background: #666;
  border-radius: 0 0 0.75rem 0.75rem;
  z-index: 10;
}

.smartphone-power-button {
  position: absolute;
  right: -0.15rem;
  top: 5rem;
  width: 0.15rem;
  height: 3rem;
  background: #b8b8b8;
  border-radius: 0 0.1rem 0.1rem 0;
}

.smartphone-volume-buttons {
  position: absolute;
  left: -0.15rem;
  top: 5rem;
}

.smartphone-volume-button {
  width: 0.15rem;
  height: 2rem;
  background: #b8b8b8;
  border-radius: 0.1rem 0 0 0.1rem;
  margin-bottom: 1rem;
}

.smartphone-screen {
  position: absolute;
  top: 0.25rem;
  left: 0.2rem;
  right: 0.2rem;
  bottom: 0.25rem;
  background: #000;
  border-radius: 1.8rem;
  overflow: hidden;
}

.smartphone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: white;
  object-position: center top;
}

.laptop {
  position: relative;
  width: 80%;
  max-width: 45rem;
  margin: 0 auto;
  margin-left: 8%;
}

.laptop-screen {
  position: relative;
  width: 100%;
  padding-bottom: 62.5%;
  background: #999;
  border-radius: 0.6rem 0.6rem 0 0;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(173, 108, 21, 0.3);
}

/* .laptop-screen::before {
    content: '';
    position: absolute;
    top: 0.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.3rem;
    height: 0.3rem;
    background: #666;
    border-radius: 50%;
    z-index: 100;
} */

.laptop-content {
  position: absolute;
  top: 0.3rem;
  left: 0.3rem;
  right: 0.3rem;
  bottom: 0.3rem;
  background: #fff;
  border-radius: 0.3rem;
  overflow: hidden;
}

.laptop-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slideshow-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 1s
    ease-in-out;
}

.slideshow-image.active {
  opacity: 1;
  transform: translate(0, 0) !important;
}

/* From left */
.slideshow-image.from-left:not(.active) {
  transform: translateX(-100%);
}

.slideshow-image.from-left.prev {
  opacity: 0;
  transform: translateX(100%);
}

/* From right */
.slideshow-image.from-right:not(.active) {
  transform: translateX(100%);
}

.slideshow-image.from-right.prev {
  opacity: 0;
  transform: translateX(-100%);
}

/* From top */
.slideshow-image.from-top:not(.active) {
  transform: translateY(-100%);
}

.slideshow-image.from-top.prev {
  opacity: 0;
  transform: translateY(100%);
}

/* From bottom */
.slideshow-image.from-bottom:not(.active) {
  transform: translateY(100%);
}

.slideshow-image.from-bottom.prev {
  opacity: 0;
  transform: translateY(-100%);
}

.laptop-base {
  position: relative;
  width: 110%;
  margin-left: -5%;
  height: 0.6rem;
  background: linear-gradient(180deg, #b8b8b8 0%, #a0a0a0 100%);
  transform: perspective(200px) rotateX(15deg);
  transform-origin: top center;
  border-radius: 0 0 1rem 1rem;
  box-shadow: 0 5px 15px rgba(173, 108, 21, 0.25), 0 3px 5px
    rgba(173, 108, 21, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.laptop-base::before {
  content: "";
  position: absolute;
  top: 0.15rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3.5rem;
  height: 0.3rem;
  background: #888;
  border-radius: 0.1rem;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  word-break: keep-all;
  text-wrap: nowrap;
}

@media (max-width: 992px) {
  .hero-container,
  .reports-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero-content {
    text-align: center;
    margin-bottom: 0;
  }

  .hero-image {
    min-height: auto;
    width: 100%;
    max-width: 40rem;
    margin: 0 auto;
  }

  .smartphone {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 10rem;
    height: 20.83rem;
    margin: 0;
    border-radius: 1.5rem;
    left: 14%;
  }

  .smartphone::before {
    width: 4rem;
    height: 0.6rem;
    top: 0.25rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .smartphone-screen {
    border-radius: 1.45rem;
  }

  .laptop {
    max-width: 35rem;
    margin: 0;
    width: 100%;
  }

  .browser-mockup.quest-screen {
    width: min(32.8125rem, calc(90vw - 2rem));
  }
  .browser-mockup.quest-score {
    width: min(36.09375rem, calc(90vw - 2rem));
  }
  .section-header {
    margin-bottom: 40px;
  }

  h1 {
    font-size: 2rem;
    letter-spacing: 0.1rem;
  }

  h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .top-container {
    padding: 1rem 2rem;
  }
  .hero-container {
    gap: 1rem;
  }

  .hero-image {
    flex-direction: column;
    gap: 1rem;
  }

  .logo-color {
    height: 35px;
  }

  .features-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-links {
    margin-top: 10px;
    justify-content: center;
  }

  .hero-image {
    min-height: auto;
  }

  .device-showcase {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    min-height: auto;
    padding: 0;
  }

  .smartphone {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 9rem;
    height: 18.75rem;
    margin: 0;
    border-radius: 1rem;
  }

  .smartphone::before {
    width: 3rem;
    height: 0.45rem;
    background: #666;
    border-radius: 0 0 0.375rem 0.375rem;
    z-index: 10;
    top: 0.25rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .smartphone-screen {
    border-radius: 0.95rem;
  }

  .laptop {
    max-width: 22rem;
    margin: 0;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .top-container {
    padding: 0.5rem 1rem;
  }

  .logo-color {
    height: 30px;
    max-width: 180px;
  }

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

  .score-details {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
  }

  .hero {
    padding: 40px 0;
  }

  .hero-image {
    min-height: auto;
  }

  .device-showcase {
    min-height: auto;
    gap: 2rem;
    padding: 0;
  }

  .smartphone {
    width: 8rem;
    height: 16.67rem;
  }

  .laptop {
    max-width: 20rem;
  }
}

.typewriter-text {
  white-space: pre-wrap;
  overflow: hidden;
  min-height: 4.5rem;
}

@media (min-width: 1400px) {
  .hero-container {
    gap: 120px;
  }

  .smartphone {
    left: 10%;
    width: 12.6rem;
    height: 25rem;
    top: 20%;
  }

  .laptop {
    margin-left: 10%;
  }
}

.mobile-badge-wrapper {
  position: absolute;
  bottom: -1rem;
  right: 2rem;
  z-index: 10;
}

.mobile-badge-wrapper::after {
  content: "";
  position: absolute;
  top: -20px;
  right: 45px;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(40, 167, 69, 0.3);
  border-radius: 50%;
  background: rgba(40, 167, 69, 0.1);
}

.hero-image .mobile-badge {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(249, 255, 251, 0.98)
  );
  border: 1px solid rgba(40, 167, 69, 0.2);
  box-shadow: 0 8px 24px rgba(40, 167, 69, 0.12), 0 3px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  animation: float-badge 3s ease-in-out infinite;
}

.hero-image .mobile-badge:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 25px rgba(40, 167, 69, 0.2), 0 3px 6px rgba(0, 0, 0, 0.08);
}

@keyframes float-badge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.mobile-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(40, 167, 69, 0.08),
    rgba(40, 167, 69, 0.12)
  );
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green-500);
  box-shadow: 0 2px 6px rgba(40, 167, 69, 0.15);
  animation: gentle-glow-green 4s ease-in-out infinite;
  transition: transform 0.2s ease;
}

.mobile-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(40, 167, 69, 0.2);
}

.mobile-badge i {
  width: 1rem;
  height: 1rem;
  color: var(--green-500);
}

.mobile-badge.orange {
  background: linear-gradient(
    135deg,
    var(--ref-color-primary-98),
    var(--ref-color-primary-95)
  );
  border: 1px solid var(--ref-color-primary-90);
  color: var(--ref-color-primary-60);
  box-shadow: 0 2px 6px rgba(211, 131, 18, 0.15);
  animation: gentle-glow 4s ease-in-out infinite;
}

.mobile-badge.orange:hover {
  box-shadow: 0 3px 8px rgba(211, 131, 18, 0.2);
}

.mobile-badge.orange i {
  color: var(--ref-color-primary-65);
}

.mobile-badge.blue {
  background: linear-gradient(
    135deg,
    rgba(0, 123, 255, 0.08),
    rgba(0, 123, 255, 0.12)
  );
  border: 1px solid rgba(0, 123, 255, 0.3);
  color: var(--blue-600);
  box-shadow: 0 2px 6px rgba(0, 123, 255, 0.15);
  animation: gentle-glow-blue 4s ease-in-out infinite;
}

.mobile-badge.blue:hover {
  box-shadow: 0 3px 8px rgba(0, 123, 255, 0.2);
}

.mobile-badge.blue i {
  color: var(--blue-500);
}

.mobile-badge.purple {
  background: linear-gradient(
    135deg,
    rgba(123, 50, 149, 0.08),
    rgba(123, 50, 149, 0.12)
  );
  border: 1px solid rgba(123, 50, 149, 0.3);
  color: var(--purple-600);
  box-shadow: 0 2px 6px rgba(123, 50, 149, 0.15);
  animation: gentle-glow-purple 4s ease-in-out infinite;
}

.mobile-badge.purple:hover {
  box-shadow: 0 3px 8px rgba(123, 50, 149, 0.2);
}

.mobile-badge.purple i {
  color: var(--purple-500);
}

@keyframes gentle-glow {
  0%,
  100% {
    box-shadow: 0 2px 6px rgba(211, 131, 18, 0.15);
  }
  50% {
    box-shadow: 0 3px 10px rgba(211, 131, 18, 0.25);
  }
}

@keyframes gentle-glow-green {
  0%,
  100% {
    box-shadow: 0 2px 6px rgba(40, 167, 69, 0.15);
  }
  50% {
    box-shadow: 0 3px 10px rgba(40, 167, 69, 0.25);
  }
}

@keyframes gentle-glow-blue {
  0%,
  100% {
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.15);
  }
  50% {
    box-shadow: 0 3px 10px rgba(0, 123, 255, 0.25);
  }
}

@keyframes gentle-glow-purple {
  0%,
  100% {
    box-shadow: 0 2px 6px rgba(123, 50, 149, 0.15);
  }
  50% {
    box-shadow: 0 3px 10px rgba(123, 50, 149, 0.25);
  }
}

@media (max-width: 992px) {
  .mobile-badge-wrapper {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 2rem;
    text-align: center;
  }

  .mobile-badge-wrapper::before,
  .mobile-badge-wrapper::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-badge {
    margin-top: 0;
    font-size: 0.8125rem;
    padding: 0.4375rem 0.875rem;
  }

  .mobile-badge i {
    width: 0.875rem;
    height: 0.875rem;
  }

  .mobile-badge-wrapper {
    margin-top: 1.5rem;
  }

  .hero-image .mobile-badge {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }

  .hero-buttons .btn-primary,
  .reports-content .btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 1.05rem;
  }

  .cta .btn-white {
    padding: 0.75rem 1.5rem;
    font-size: 1.15rem;
  }
}

@media (max-width: 540px) {
  .logo-color {
    height: 26px;
    max-width: 140px;
  }
}

.hero-buttons .btn-primary,
.reports-content .btn-primary {
  position: relative;
  box-shadow: 0 2px 6px rgba(253, 97, 31, 0.2), 0 0 20px rgba(253, 97, 31, 0.08);
}

.cta-buttons .btn-white {
  position: relative;
}

.hero-buttons .btn-primary::after,
.reports-content .btn-primary::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #e85510, #ff7a3d, #e85510);
  border-radius: 50px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  filter: blur(5px);
}

.hero-buttons .btn-primary:hover::after,
.reports-content .btn-primary:hover::after {
  opacity: 0.7;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.btn-primary i {
  transition: transform 0.3s ease;
}

.btn-primary:hover i {
  transform: translateX(3px);
  animation: arrow-bounce 0.6s ease-in-out;
}

@keyframes arrow-bounce {
  0%,
  100% {
    transform: translateX(3px);
  }
  50% {
    transform: translateX(6px);
  }
}

.hero-buttons .btn-primary,
.reports-content .btn-primary {
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.cta .btn-white {
  background: var(--white);
  color: var(--ref-color-primary-60);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 18px 40px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
}

.cta .btn-white:hover {
  background: var(--ref-color-primary-98);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
  .btn-primary {
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
  }

  .hero-buttons .btn-primary,
  .reports-content .btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .cta .btn-white {
    padding: 16px 32px;
    font-size: 1.1rem;
  }

  .hero-buttons .btn-primary::after,
  .reports-content .btn-primary::after {
    display: none;
  }
}

.pricing {
  background: linear-gradient(
    180deg,
    var(--ref-color-primary-100) 0%,
    var(--ref-color-primary-98) 100%
  );
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(229, 161, 85, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.pricing-structure {
  margin-top: 4rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.pricing-component {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(229, 161, 85, 0.08);
  border: 2px solid var(--ref-color-primary-85);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.pricing-component::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 1.5rem;
  padding: 1px;
  background: linear-gradient(
    135deg,
    var(--ref-color-primary-70),
    var(--ref-color-primary-85)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: exclude;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0.6;
  pointer-events: none;
}

.pricing-component:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(229, 161, 85, 0.15);
  border-color: var(--ref-color-primary-70);
}

.pricing-component:hover::before {
  opacity: 1;
}

.pricing-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ref-color-primary-98);
  border-radius: 50%;
}

.soco-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.pricing-component h3 {
  font-size: 1.5rem;
  color: var(--ref-color-primary-55);
  margin-bottom: 0.75rem;
}

.pricing-component p {
  font-size: 1rem;
  color: var(--ref-color-primary-30);
  line-height: 1.6;
}

.pricing-plus {
  display: flex;
  align-items: center;
  justify-content: center;
}

.plus-symbol {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--ref-color-primary-65),
    var(--ref-color-primary-60)
  );
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(211, 131, 18, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plus-symbol:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(211, 131, 18, 0.3);
}

.plus-symbol i {
  width: 32px;
  height: 32px;
  stroke-width: 3;
}

.pricing-formula {
  margin-bottom: 4rem;
}

.formula-box {
  background: var(--white);
  border: 1px solid var(--ref-color-primary-70);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(229, 161, 85, 0.08);
}

.formula-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.formula-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.soco-icon-small {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.formula-text {
  font-weight: 600;
  color: var(--ref-color-primary-30);
}

.formula-highlight {
  background: linear-gradient(
    135deg,
    var(--ref-color-primary-95),
    var(--ref-color-primary-90)
  );
  color: var(--ref-color-primary-60);
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-weight: 700;
  border: 1px solid var(--ref-color-primary-85);
}

.formula-multiply {
  font-weight: 700;
  color: var(--ref-color-primary-65);
  font-size: 1.5rem;
}

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

.pricing-feature {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid var(--ref-color-primary-70);
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 12px rgba(229, 161, 85, 0.06);
}

.pricing-feature::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 1rem;
  padding: 1px;
  background: linear-gradient(
    135deg,
    var(--ref-color-primary-70),
    var(--ref-color-primary-85)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: exclude;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0.5;
  pointer-events: none;
}

.pricing-feature:hover {
  border-color: var(--ref-color-primary-70);
  box-shadow: 0 6px 16px rgba(229, 161, 85, 0.12);
  transform: translateY(-2px);
}

.pricing-feature:hover::before {
  opacity: 0.8;
}

.pricing-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--ref-color-primary-95);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-feature-icon i {
  width: 24px;
  height: 24px;
  color: var(--ref-color-primary-60);
}

.pricing-feature-content h4 {
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.pricing-feature-content p {
  font-size: 0.95rem;
  color: var(--ref-color-primary-30);
  line-height: 1.6;
}

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

.pricing-note {
  font-size: 1.125rem;
  color: var(--ref-color-primary-30);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.pricing-cta .btn {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.pricing-component-monthly {
  grid-column: span 1;
}

.pricing-formula-inline {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ref-color-primary-90);
}

.pricing-formula-inline .formula-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.1rem;
}

.pricing-formula-inline .formula-highlight {
  background: linear-gradient(
    135deg,
    var(--ref-color-primary-95),
    var(--ref-color-primary-90)
  );
  color: var(--ref-color-primary-60);
  padding: 0.375rem 0.875rem;
  border-radius: 0.5rem;
  font-weight: 700;
  border: 1px solid var(--ref-color-primary-85);
  font-size: 1rem;
}

.pricing-formula-inline .formula-multiply {
  font-weight: 700;
  color: var(--ref-color-primary-65);
  font-size: 1.375rem;
}

@media (min-width: 992px) {
  .pricing-grid {
    grid-template-columns: minmax(300px, 1fr) auto minmax(400px, 1.5fr);
  }

  .pricing-component-monthly {
    grid-column: span 1;
  }

  .pricing-formula-inline .formula-content {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-plus {
    transform: rotate(90deg);
    margin: 1rem 0;
  }

  .pricing-component {
    padding: 2rem;
  }

  .pricing-icon {
    width: 100px;
    height: 100px;
  }

  .soco-icon {
    width: 60px;
    height: 60px;
  }

  .formula-content {
    flex-wrap: wrap;
    font-size: 1rem;
    text-align: center;
    justify-content: center;
  }

  .formula-multiply {
    font-size: 1.25rem;
  }

  .pricing-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-formula-inline .formula-content {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .pricing-formula-inline .formula-highlight {
    font-size: 0.9rem;
    padding: 0.25rem 0.625rem;
  }

  .pricing-formula-inline .formula-multiply {
    font-size: 1.25rem;
  }
}

/* Custom scroll animations to replace AOS */
[data-animate] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

[data-animate="fade-in"] {
  transform: scale(0.95);
}

[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Maintain hover animations after scroll animation */
.feature-card.animate-in:hover {
  transform: translateY(-8px) !important;
}

/* Hero corporate link */
.hero-corporate-link {
  display: inline-flex;
  align-items: center;
  color: var(--ref-color-primary-30);
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-corporate-link:hover {
  color: var(--dark-orange);
}

.hero-corporate-link i {
  width: 1rem;
  height: 1rem;
  margin-left: 0.25rem;
}

/* Individual plan cards */
.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto 3rem;
}

.plan-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  border: 2px solid var(--ref-color-primary-85);
  box-shadow: 0 4px 16px rgba(229, 161, 85, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(229, 161, 85, 0.12);
}

.plan-card-recommended {
  border-color: var(--ref-color-primary-60);
  box-shadow: 0 4px 16px rgba(211, 131, 18, 0.12);
}

.plan-card-recommended:hover {
  box-shadow: 0 8px 24px rgba(211, 131, 18, 0.18);
}

.plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    var(--ref-color-primary-65),
    var(--ref-color-primary-60)
  );
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.plan-price {
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ref-color-primary-55);
}

.price-period {
  font-size: 0.875rem;
  color: var(--ref-color-primary-30);
}

.plan-cta {
  margin-bottom: 1.5rem;
}

.plan-features {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--ref-color-primary-20);
  border-top: 1px solid var(--ref-color-primary-95);
}

.plan-features li i {
  width: 1rem;
  height: 1rem;
  color: var(--ref-color-primary-60);
  flex-shrink: 0;
}

/* Corporate pricing note */
.corporate-pricing-note {
  text-align: center;
  padding: 2rem;
  background: var(--ref-color-primary-98);
  border-radius: 1rem;
  border: 1px solid var(--ref-color-primary-90);
}

.corporate-pricing-note p {
  font-size: 1rem;
  color: var(--ref-color-primary-30);
  margin-bottom: 0.75rem;
}

.corporate-pricing-note a {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--ref-color-primary-60);
}

.corporate-pricing-note a i {
  width: 1rem;
  height: 1rem;
  margin-left: 0.25rem;
}

/* Plan cards responsive */
@media (max-width: 992px) {
  .plan-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-cards .plan-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .plan-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .plan-cards .plan-card:last-child {
    max-width: none;
  }

  .price-amount {
    font-size: 1.75rem;
  }

  .hero-corporate-link {
    font-size: 0.875rem;
  }
}
