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

html {
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  height: 100%;
}

:root {
  --tooljar-blue: #0047ab;
  --tooljar-purple: #9589a6;
  --tooljar-bg: #f4f4f4;
}

body {
  font-family: "Instrument Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--tooljar-bg);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  position: relative;
  touch-action: pan-y;
  height: 100%;
}

/* Header with Logo */
.demo-header {
  padding: 5vh 5vw;
}

.logo-small {
  flex-shrink: 0;
}

.logo-small img {
  height: 70px;
  width: auto;
}

/* Main Content */
.demo-main {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0px 80px 80px 80px;
}

.demo-container {
  background-color: #ffffffcc;
  border-radius: 16px;
  padding: 50px 60px 60px 60px;
  max-width: 1300px;
  width: 100%;
  display: flex;
  gap: 100px;
  align-items: center;
  justify-content: center;
}

/* Left Column - Form */
.demo-form-section {
  flex: 1;
  max-width: 680px;
}

.demo-title {
  font-size: 33px;
  font-weight: 600;
  color: var(--tooljar-blue);
  margin-bottom: 8px;
  line-height: 1.3;
}

.demo-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--tooljar-gray);
  margin-bottom: 3em;
  line-height: 1.4;
}

/* Form Styles */
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-label {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  min-width: 130px;
  text-align: left;
}

.form-label .required {
  color: #b91c1c;
}

.form-input,
.form-select {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  font-size: 15px;
  font-family: "Instrument Sans", sans-serif;
  color: #333;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  background-color: white;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--tooljar-blue);
  box-shadow: 0 0 0 3px rgba(0, 71, 171, 0.08);
}

.form-input::placeholder {
  color: #999;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option {
  padding: 10px;
}

.phone-input-container {
  flex: 1;
  display: flex;
  gap: 0;
  align-items: stretch;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  background-color: white;
}

.phone-input-container:focus-within {
  border-color: var(--tooljar-blue);
  box-shadow: 0 0 0 3px rgba(0, 71, 171, 0.08);
}

.country-select {
  flex: 0 0 100px;
  padding: 12px 8px 12px 12px;
  border: none;
  border-right: 1px solid #e2e2e2;
  border-radius: 0;
  font-size: 15px;
  font-family: "Instrument Sans", sans-serif;
  color: #333;
  cursor: pointer;
  background-color: transparent;
  transition: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 28px;
}

.country-select:focus {
  outline: none;
}

.phone-number-input {
  flex: 1;
  border: none;
  border-radius: 0 6px 6px 0;
  padding: 12px 14px;
}

.phone-number-input:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.form-group-helper {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.form-helper-spacer {
  min-width: 130px;
}

.form-helper {
  flex: 1;
  font-size: 14px;
  color: #666;
  font-style: italic;
}

.form-feedback {
  display: none;
  align-items: flex-start;
  gap: 10px;
  margin-left: 146px;
  padding: 12px 14px;
  border-radius: 8px;
}

.form-feedback.show {
  display: flex;
}

.form-feedback-error {
  background: #fdf2f2;
  border: 1px solid #f6cece;
  box-shadow: 0 4px 14px rgba(185, 28, 28, 0.08);
}

.form-feedback-icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #b91c1c;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  margin-top: 1px;
}

.form-feedback-text {
  color: #7f1d1d;
  font-size: 14px;
  line-height: 1.45;
}

.form-submit {
  margin-top: 32px;
  margin-left: 146px;
  padding: 14px 56px;
  background-color: var(--tooljar-blue);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Instrument Sans", sans-serif;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.1s ease;
  align-self: flex-end;
}

.form-submit:hover {
  background-color: #003d8f;
}

.form-submit:active {
  transform: scale(0.98);
}

.form-submit:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
}

/* Right Column - What to Expect */
.demo-info-section {
  flex: 1;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
}

.info-divider {
  width: 229px;
  height: 10px;
  background: var(--tooljar-blue);
  margin-bottom: 20px;
}

.info-title {
  font-size: 33px;
  font-weight: 600;
  color: var(--tooljar-blue);
  margin-bottom: 20px;
  line-height: 1.3;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-list li {
  font-size: 18px;
  font-weight: 400;
  color: var(--tooljar-gray);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

.info-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #666;
  font-weight: normal;
  font-size: 20px;
  line-height: 1.4;
}

/* Success Message */
.success-message {
  display: none;
  text-align: center;
  padding: 60px 40px;
}

.success-message.show {
  display: block;
}

.success-icon {
  font-size: 72px;
  color: var(--tooljar-blue);
  margin-bottom: 24px;
}

.success-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--tooljar-blue);
  margin-bottom: 16px;
}

.success-text {
  font-size: 18px;
  color: #595959;
  line-height: 1.6;
  margin-bottom: 40px;
}

.success-button {
  display: inline-block;
  padding: 16px 40px;
  background-color: var(--tooljar-blue);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.success-button:hover {
  background-color: #003d8f;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .demo-container {
    flex-direction: column;
    gap: 50px;
  }

  .demo-info-section {
    flex: 1;
    padding-top: 0;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .demo-header {
    padding: 5vh 5vw;
  }

  .logo-small img {
    height: 60px;
  }

  .demo-main {
    padding: 0 15px 40px 15px;
  }

  .demo-container {
    padding: 40px 32px;
  }

  .demo-form-section {
    max-width: none;
    width: 100%;
  }

  .demo-title {
    font-size: 25px;
    line-height: 1.3;
  }

  .demo-subtitle {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 32px;
  }

  .form-group {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .form-label {
    min-width: auto;
  }

  .form-submit {
    margin-left: 0;
    width: 100%;
    align-self: stretch;
  }

  .form-feedback {
    margin-left: 0;
  }

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

  .form-helper-spacer {
    display: none;
  }

  .form-helper {
    margin-top: -8px;
  }

  .country-select {
    flex: 0 0 90px;
  }

  .info-divider {
    display: none;
  }

  .info-title {
    font-size: 25px;
    line-height: 1.3;
  }

  .info-list li {
    font-size: 15px;
    line-height: 1.4;
  }

  .success-title {
    font-size: 28px;
  }

  .success-text {
    font-size: 16px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --tooljar-blue: #0047ab;
  --tooljar-purple: #9589a6;
  --tooljar-gray: #565454;
  --tooljar-bg: #f4f4f4;
  --card-shadow: rgba(0, 71, 171, 0.08);
  --card-shadow-hover: rgba(0, 71, 171, 0.15);
  --status-open: #0066ff;
  --status-high: #ff6b6b;
  --status-medium: #ffa500;
  --status-low: #4caf50;
  --card-stagger-delay: 0.08s;
  --card-entry-duration: 0.6s;
}

/* Hero page - responsive to viewport */
#screen5 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5vh 5vw;
  padding-bottom: max(5vh, 80px);
  background-color: #f4f4f4;
  overflow: visible;
  touch-action: pan-y;
}

#screen5 .logo-small {
  flex-shrink: 0;
}

#screen5 .logo-small img {
  height: 70px;
  width: auto;
}

#screen5 .hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 100%;
  margin-bottom: max(60px, 5vh);
  padding-right: 5vw;
}

#screen5 .hero-headline-container {
  display: flex;
  align-items: flex-start;
  gap: 3vw;
  margin-bottom: 0.5em;
}

#screen5 .hero-icon {
  display: none;
}

#screen5 .hero-headline {
  font-size: min(9vw, 150px);
  font-weight: 700;
  color: #d1ced6;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
  flex: 1;
  overflow: hidden;
  margin-top: 50px;
}

#screen5 .hero-headline {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

#screen5 .hero-headline .line {
  display: block;
  white-space: nowrap;
  font-size: inherit;
  width: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#screen5 .hero-subheading {
  font-size: min(2.5vw, 50px);
  font-weight: 600;
  color: #0047ab;
  line-height: 1.4;
  margin-bottom: 2vh;
  opacity: 0;
}

#screen5 .hero-subheading.typing {
  opacity: 1;
}

#screen5 .hero-subheading.typing-complete {
  opacity: 1;
}

/* Typing cursor */
#screen5 .hero-subheading::after {
  content: "|";
  color: #0047ab;
  margin-left: 4px;
  opacity: 0;
  animation: blink 1s infinite;
}

#screen5 .hero-subheading.typing::after {
  opacity: 1;
}

#screen5 .hero-subheading.typing-complete::after {
  display: none;
}

@keyframes blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

#screen5 .hero-subheading.show {
  opacity: 1;
}

#screen5 .hero-description {
  font-size: min(1.8vw, 18px);
  font-weight: 400;
  color: #595959;
  line-height: 1.6;
  max-width: min(80%, 900px);
  margin-left: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

#screen5 .hero-description.show {
  opacity: 1;
}

#screen5 .hero-cta {
  position: fixed;
  bottom: 5vh;
  right: 5vw;
  font-size: 16px;
  font-weight: 600;
  color: #0066ff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    opacity 0.5s ease,
    transform 0.2s ease;
  opacity: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 14px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

#screen5 .hero-cta.show {
  opacity: 1 !important;
  pointer-events: auto !important;
}

#screen5 .hero-cta.hide {
  opacity: 0 !important;
  pointer-events: none !important;
}

#screen5 .hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1400px) {
  #screen5 .hero-headline {
    font-size: 140px;
  }
}

@media (max-width: 1024px) {
  #screen5 {
    padding-bottom: max(60px, 5vh);
  }

  #screen5 .hero-headline {
    font-size: min(10vw, 120px);
  }

  #screen5 .hero-description {
    font-size: min(2.2vw, 18px);
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  #screen5 {
    padding: 20px 20px 70px 20px;
    min-height: 100vh;
  }

  #screen5 .logo-small {
    margin-bottom: 20px;
  }

  #screen5 .logo-small img {
    height: 50px;
  }

  #screen5 .hero-content {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    margin-bottom: 50px;
  }

  #screen5 .hero-headline-container {
    margin-left: 0;
    margin-right: 0;
    gap: 12px;
    margin-bottom: 0.8em;
  }

  #screen5 .hero-headline {
    font-size: clamp(28px, 11vw, 65px);
    line-height: 1;
    width: 100%;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: keep-all;
    margin-top: 0;
  }

  #screen5 .hero-headline .line {
    font-size: inherit !important;
    transform: none !important;
  }

  #screen5 .hero-subheading {
    font-size: clamp(16px, 5vw, 22px);
    margin-bottom: 1em;
    line-height: 1.3;
  }

  #screen5 .hero-description {
    font-size: 14px;
    line-height: 1.6;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  #screen5 .hero-cta {
    bottom: 20px;
    right: 20px;
    font-size: 14px;
    padding: 10px 16px;
  }

  /* Problem Section - Small Mobile */
  #problem-section {
    padding: 50px 0;
  }

  #problem-section h2 {
    font-size: 36px;
    line-height: 1.1;
  }

  #problem-section .problem-intro {
    font-size: 16px;
    margin-bottom: 30px;
  }

  #problem-section .problem-solution {
    font-size: 16px;
  }
}

/* Responsive for mobile - Screen 5 (Hero Section) */
@media (max-width: 768px) {
  #screen5 {
    padding: 25px 25px 80px 25px;
    min-height: 100vh;
  }

  #screen5 .logo-small {
    margin-bottom: 20px;
  }

  #screen5 .logo-small img {
    height: 60px;
  }

  #screen5 .hero-content {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    margin-bottom: 60px;
  }

  #screen5 .hero-headline-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1em;
  }

  #screen5 .hero-headline {
    font-size: clamp(38px, 10vw, 90px);
    line-height: 1;
    width: 100%;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: keep-all;
    margin-top: 0;
  }

  #screen5 .hero-headline .line {
    font-size: inherit !important;
    transform: none !important;
  }

  #screen5 .hero-subheading {
    font-size: clamp(18px, 5vw, 32px);
    margin-bottom: 1em;
    line-height: 1.35;
  }

  #screen5 .hero-description {
    font-size: 15px;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    line-height: 1.65;
  }

  #screen5 .hero-cta {
    bottom: 25px;
    right: 25px;
    font-size: 16px;
    padding: 12px 20px;
  }
}

/* Problem Section */
#problem-section {
  background-color: #f4f4f4;
  padding: 80px 5vw;
  padding-bottom: 80px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#problem-section .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

#problem-section .problem-content {
  text-align: left;
  max-width: 1000px;
}

#problem-section h2 {
  font-size: 33px;
  font-weight: 600;
  color: var(--tooljar-blue);
  line-height: 1.3;
  margin-bottom: 20px;
  text-align: left;
}

#problem-section .problem-intro {
  font-size: 18px;
  font-weight: 400;
  color: var(--tooljar-gray);
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: left;
}

#problem-section .problem-solution {
  font-size: 18px;
  font-weight: 400;
  color: var(--tooljar-gray);
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: left;
}

#problem-section .problem-adaptors {
  width: 100%;
  max-width: 1000px;
  font-size: 25px;
  font-weight: 500;
  color: #0047ab;
  line-height: 1.3;
  margin: 0 0 20px 0;
  text-align: center;
}

/* Cards Container - Absolute Positioning for Scattered Layout */
.problem-cards-grid {
  width: 100%;
  max-width: 1400px;
  position: relative;
  min-height: 640px;
  height: auto;
  margin: 0 auto;
}

/* Base Card Styles */
.ui-card {
  position: absolute;
  opacity: 0;
  transition:
    opacity 1.2s cubic-bezier(0.25, 0.1, 0.25, 1),
    transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.ui-card.animated-in {
  opacity: 1;
}

/* Floating animations for all cards */
/* For cards with translateY(-50%) base - Cards 1, 2 */
@keyframes float1 {
  0%,
  100% {
    transform: translateY(-50%) translate(0, 0);
  }
  25% {
    transform: translateY(-50%) translate(4px, -8px);
  }
  50% {
    transform: translateY(-50%) translate(-3px, -5px);
  }
  75% {
    transform: translateY(-50%) translate(3px, -10px);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translateY(-50%) translate(0, 0);
  }
  25% {
    transform: translateY(-50%) translate(-5px, -6px);
  }
  50% {
    transform: translateY(-50%) translate(4px, -9px);
  }
  75% {
    transform: translateY(-50%) translate(-3px, -7px);
  }
}

/* For cards with translateX(-50%) base */
@keyframes float3 {
  0%,
  100% {
    transform: translateX(-50%) translate(0, 0);
  }
  25% {
    transform: translateX(-50%) translate(3px, -7px);
  }
  50% {
    transform: translateX(-50%) translate(-4px, -5px);
  }
  75% {
    transform: translateX(-50%) translate(5px, -8px);
  }
}

/* For cards with translate(-15%, -50%) base */
@keyframes float4 {
  0%,
  100% {
    transform: translate(-15%, -50%) translate(0, 0);
  }
  25% {
    transform: translate(-15%, -50%) translate(-4px, -9px);
  }
  50% {
    transform: translate(-15%, -50%) translate(3px, -6px);
  }
  75% {
    transform: translate(-15%, -50%) translate(-5px, -8px);
  }
}

/* For cards with no base transform - Cards 5, 6, 10, 11 */
@keyframes float5 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(5px, -6px);
  }
  50% {
    transform: translate(-4px, -9px);
  }
  75% {
    transform: translate(3px, -7px);
  }
}

@keyframes float6 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-3px, -8px);
  }
  50% {
    transform: translate(4px, -5px);
  }
  75% {
    transform: translate(-5px, -9px);
  }
}

/* For cards with translate(-50%, -50%) base */
@keyframes float7 {
  0%,
  100% {
    transform: translate(-50%, -50%) translate(0, 0);
  }
  25% {
    transform: translate(-50%, -50%) translate(-3px, -8px);
  }
  50% {
    transform: translate(-50%, -50%) translate(4px, -6px);
  }
  75% {
    transform: translate(-50%, -50%) translate(-5px, -10px);
  }
}

/* For cards with translateY(-50%) base */
@keyframes float8 {
  0%,
  100% {
    transform: translateY(-50%) translate(0, 0);
  }
  25% {
    transform: translateY(-50%) translate(4px, -7px);
  }
  50% {
    transform: translateY(-50%) translate(-3px, -9px);
  }
  75% {
    transform: translateY(-50%) translate(5px, -6px);
  }
}

/* Reduced motion: simple fade only */
@media (prefers-reduced-motion: reduce) {
  .ui-card {
    transition: opacity 0.4s ease-out;
  }
  .ui-card.has-ambient {
    animation: none !important;
  }
}

.ui-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.ui-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--tooljar-blue);
  margin: 0;
}

/* Card Positioning & Entry Animations - Absolute Positioned, Scattered Layout */
/* Using data-card-index selectors for image-based cards */

/* Card 1: Recent Activity - Center */
.ui-card[data-card-index="0"] {
  top: 58px;
  left: 46%;
  transform: translate(55px, 20px) scale(0.95);
  width: 340px;
  z-index: 4;
  transition-delay: 0.18s;
}

.ui-card[data-card-index="0"].animated-in {
  transform: translate(0, 0);
  animation: float5 7s ease-in-out infinite;
  animation-delay: 1.2s;
}

/* Card 2: People - Right center */
.ui-card[data-card-index="1"] {
  top: 155px;
  right: 200px;
  transform: translate(60px, 20px) scale(0.95);
  width: 245px;
  z-index: 6;
  transition-delay: 0.3s;
}

.ui-card[data-card-index="1"].animated-in {
  transform: translate(0, 0);
  animation: float6 7.4s ease-in-out infinite;
  animation-delay: 1.5s;
}

/* Card 3: Categories - Right bottom */
.ui-card[data-card-index="2"] {
  top: 330px;
  right: 0;
  transform: translate(65px, 30px) scale(0.95);
  width: 245px;
  z-index: 5;
  transition-delay: 0.42s;
}

.ui-card[data-card-index="2"].animated-in {
  transform: translate(0, 0);
  animation: float5 7.8s ease-in-out infinite;
  animation-delay: 1.8s;
}

/* Card 4: Job update details - Overlapping email */
.ui-card[data-card-index="3"] {
  top: 185px;
  left: 175px;
  transform: translate(-55px, 35px) scale(0.95);
  width: 500px;
  z-index: 5;
  transition-delay: 0.15s;
}

.ui-card[data-card-index="3"].animated-in {
  transform: translate(0, 0);
  animation: float5 7.1s ease-in-out infinite;
  animation-delay: 1.25s;
}

/* Card 5: Job update email - Left */
.ui-card[data-card-index="4"] {
  top: 64px;
  left: 0;
  transform: translateX(-65px) scale(0.95);
  width: 600px;
  z-index: 2;
  transition-delay: 0.06s;
}

.ui-card[data-card-index="4"].animated-in {
  transform: translateX(0);
  animation: float5 6.8s ease-in-out infinite;
  animation-delay: 1s;
}

/* Card 6: Priority change - Right top */
.ui-card[data-card-index="5"] {
  top: 0;
  right: 0;
  transform: translateX(70px) scale(0.95);
  width: 410px;
  z-index: 3;
  transition-delay: 0.12s;
}

.ui-card[data-card-index="5"].animated-in {
  transform: translateX(0);
  animation: float6 7.2s ease-in-out infinite;
  animation-delay: 1.1s;
}

/* Card 7: RFC initiated - Left bottom */
.ui-card[data-card-index="6"] {
  top: 375px;
  left: 55px;
  transform: translate(-60px, 45px) scale(0.95);
  width: 500px;
  z-index: 2;
  transition-delay: 0.24s;
}

.ui-card[data-card-index="6"].animated-in {
  transform: translate(0, 0);
  animation: float6 8.2s ease-in-out infinite;
  animation-delay: 1.4s;
}

/* Card 8: RFC replied - Left bottom overlay */
.ui-card[data-card-index="7"] {
  top: 455px;
  left: 235px;
  transform: translate(-55px, 45px) scale(0.95);
  width: 500px;
  z-index: 5;
  transition-delay: 0.36s;
}

.ui-card[data-card-index="7"].animated-in {
  transform: translate(0, 0);
  animation: float5 7.2s ease-in-out infinite;
  animation-delay: 1.7s;
}

/* Card 9: Groupings - Lower center */
.ui-card[data-card-index="8"] {
  top: 380px;
  left: 40%;
  transform: translate(-45px, 55px) scale(0.95);
  width: 245px;
  z-index: 6;
  transition-delay: 0.48s;
}

.ui-card[data-card-index="8"].animated-in {
  transform: translate(0, 0);
  animation: float6 7.8s ease-in-out infinite;
  animation-delay: 2s;
}

/* Card 10: Projects - Bottom center */
.ui-card[data-card-index="9"] {
  top: 465px;
  left: 58%;
  transform: translate(35px, 60px) scale(0.95);
  width: 245px;
  z-index: 6;
  transition-delay: 0.54s;
}

.ui-card[data-card-index="9"].animated-in {
  transform: translate(0, 0);
  animation: float5 6.3s ease-in-out infinite;
  animation-delay: 2.2s;
}

.problem-mobile-layout {
  display: none;
}

@keyframes problemMobileFloatA {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  35% {
    transform: translate3d(3px, -6px, 0);
  }
  70% {
    transform: translate3d(-3px, -3px, 0);
  }
}

@keyframes problemMobileFloatB {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  35% {
    transform: translate3d(-4px, -5px, 0);
  }
  70% {
    transform: translate3d(3px, -7px, 0);
  }
}

/* Responsive: Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  #problem-section {
    padding: 60px 5vw;
  }

  #problem-section .container {
    gap: 40px;
  }

  #problem-section .problem-content {
    max-width: 100%;
  }

  .problem-cards-grid {
    display: none;
  }

  .ui-card {
    display: none;
  }

  #problem-section .problem-adaptors {
    font-size: 25px;
  }

  .problem-mobile-layout {
    --problem-mobile-width: min(100vw, 430px);
    display: block;
    position: relative;
    width: var(--problem-mobile-width);
    height: calc(var(--problem-mobile-width) * 3.27);
    margin: -10px auto 0 auto;
    overflow: visible;
    isolation: isolate;
  }

  .problem-mobile-card {
    position: absolute;
    display: block;
    height: auto;
    max-width: none;
    filter: drop-shadow(0 10px 24px rgba(0, 71, 171, 0.08));
    will-change: transform;
  }

  .problem-mobile-card:nth-child(odd) {
    animation: problemMobileFloatA 7.5s ease-in-out infinite;
  }

  .problem-mobile-card:nth-child(even) {
    animation: problemMobileFloatB 8.4s ease-in-out infinite;
  }

  .problem-mobile-card-recent {
    top: 0;
    left: calc(var(--problem-mobile-width) * 0.142);
    width: calc(var(--problem-mobile-width) * 0.681);
    z-index: 1;
    animation-delay: -0.4s;
  }

  .problem-mobile-card-email {
    top: calc(var(--problem-mobile-width) * 0.414);
    left: 0;
    width: calc(var(--problem-mobile-width) * 0.495);
    z-index: 4;
    animation-delay: -1.5s;
  }

  .problem-mobile-card-reply {
    top: calc(var(--problem-mobile-width) * 0.895);
    left: calc(var(--problem-mobile-width) * 0.374);
    width: calc(var(--problem-mobile-width) * 0.533);
    z-index: 7;
    animation-delay: -2.2s;
  }

  .problem-mobile-card-groupings {
    top: calc(var(--problem-mobile-width) * 0.693);
    left: calc(var(--problem-mobile-width) * 0.523);
    width: calc(var(--problem-mobile-width) * 0.374);
    z-index: 6;
    animation-delay: -0.9s;
  }

  .problem-mobile-card-people {
    top: calc(var(--problem-mobile-width) * 1.265);
    left: 0;
    width: calc(var(--problem-mobile-width) * 0.495);
    z-index: 6;
    animation-delay: -2.7s;
  }

  .problem-mobile-card-categories {
    top: calc(var(--problem-mobile-width) * 1.43);
    left: calc(var(--problem-mobile-width) * 0.374);
    width: calc(var(--problem-mobile-width) * 0.5);
    z-index: 7;
    animation-delay: -1.2s;
  }

  .problem-mobile-card-projects {
    top: calc(var(--problem-mobile-width) * 1.953);
    left: calc(var(--problem-mobile-width) * 0.549);
    width: calc(var(--problem-mobile-width) * 0.449);
    z-index: 8;
    animation-delay: -3.1s;
  }

  .problem-mobile-card-rfc-start {
    top: calc(var(--problem-mobile-width) * 2.279);
    left: 0;
    width: calc(var(--problem-mobile-width) * 0.572);
    z-index: 4;
    animation-delay: -1.8s;
  }

  .problem-mobile-card-rfc-reply {
    top: calc(var(--problem-mobile-width) * 2.565);
    left: calc(var(--problem-mobile-width) * 0.114);
    width: calc(var(--problem-mobile-width) * 0.572);
    z-index: 5;
    animation-delay: -2.5s;
  }

  .problem-mobile-card-review {
    top: calc(var(--problem-mobile-width) * 2.879);
    left: calc(var(--problem-mobile-width) * 0.042);
    width: calc(var(--problem-mobile-width) * 0.916);
    z-index: 6;
    animation-delay: -0.7s;
  }

  @media (prefers-reduced-motion: reduce) {
    .problem-mobile-card {
      animation: none;
    }
  }
}

/* Responsive for mobile - Problem Section */
@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  #problem-section {
    padding: 20px 20px 60px 20px;
    min-height: auto;
    overflow: hidden;
  }

  #problem-section .container {
    flex-direction: column;
    gap: 40px;
  }

  #problem-section .problem-content {
    text-align: left;
  }

  #problem-section h2 {
    font-size: 25px;
    text-align: left;
    line-height: 1.3;
  }

  #problem-section .problem-intro {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 30px;
    text-align: left;
  }

  #problem-section .problem-solution {
    font-size: 15px;
    font-weight: 400;
    color: var(--tooljar-gray);
    line-height: 1.4;
    text-align: left;
  }

  #problem-section .problem-adaptors {
    font-size: 20px;
    font-weight: 500;
    color: #0047ab;
    line-height: 1.3;
    text-align: center;
  }

  #problem-section .problem-image {
    flex: 0 0 auto;
    width: 100%;
  }

  .problem-cards-grid {
    display: none;
  }

  .ui-card {
    display: none;
  }

  .problem-mobile-layout {
    margin-top: -18px;
  }

  #process-as-service-section {
    padding: 20px 20px 60px 20px;
    margin-top: -40px;
    min-height: auto;
  }

  #process-as-service-section .container {
    flex-direction: column;
    gap: 40px;
  }

  #process-as-service-section .problem-content {
    text-align: left;
  }

  #process-as-service-section h2 {
    font-size: 25px;
    font-weight: 600;
    color: var(--tooljar-blue);
    text-align: left;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  #process-as-service-section .problem-intro {
    font-size: 15px;
    font-weight: 400;
    color: var(--tooljar-gray);
    line-height: 1.4;
    margin-bottom: 30px;
    text-align: left;
  }

  #process-as-service-section .problem-solution {
    font-size: 15px;
    font-weight: 400;
    color: var(--tooljar-gray);
    line-height: 1.4;
    text-align: left;
  }

  #process-as-service-section .process-quote {
    font-size: 15px;
    font-weight: 400;
    color: var(--tooljar-gray);
    font-style: italic;
    line-height: 1.4;
    padding: 20px;
    text-align: left;
    border-left: 4px solid var(--tooljar-blue);
  }

  #process-as-service-section .process-quote footer {
    font-size: 14px;
  }
}

/* Jobs Section - Matches Problem Section Layout */
#jobs-section {
  background-color: #f4f4f4;
  padding: 100px 5vw;
  position: relative;
}

#jobs-section .section-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8vw;
}

#jobs-section .jobs-content {
  flex: 1;
  text-align: left;
}

#jobs-section .jobs-image {
  flex: 0 0 40%;
  max-width: 40%;
}

#jobs-section .placeholder-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #e5e5e7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8e8a8a;
  font-size: 18px;
  font-weight: 500;
}

#jobs-section h2 {
  font-size: 33px;
  font-weight: 600;
  color: #0047ab;
  line-height: 1.3;
  margin-bottom: 20px;
}

#jobs-section .jobs-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #595959;
  line-height: 1.7;
  margin-bottom: 20px;
}

#jobs-section .jobs-body {
  font-size: 20px;
  font-weight: 400;
  color: #595959;
  line-height: 1.7;
}

/* Process as a Service Section - Base Styles */
#process-as-service-section {
  background-color: #f4f4f4;
  position: relative;
}

/* Process as a Service Section - Desktop Styles */
@media (min-width: 769px) {
  #process-as-service-section {
    background-color: #f4f4f4;
    padding: 80px 3vw;
    padding-bottom: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #process-as-service-section .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  #process-as-service-section .problem-content {
    text-align: left;
    max-width: 800px;
  }

  #process-as-service-section h2 {
    font-size: 33px;
    font-weight: 600;
    color: var(--tooljar-blue);
    line-height: 1.3;
    margin-bottom: 20px;
    text-align: left;
  }

  #process-as-service-section .problem-intro {
    font-size: 18px;
    font-weight: 400;
    color: var(--tooljar-gray);
    line-height: 1.4;
    margin-bottom: 20px;
    text-align: left;
  }

  #process-as-service-section .problem-solution {
    font-size: 18px;
    font-weight: 400;
    color: var(--tooljar-gray);
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: left;
  }

  #process-as-service-section .process-quote {
    margin-top: 40px;
    padding: 30px;
    border-left: 4px solid var(--tooljar-blue);
    /*background-color: rgba(255, 255, 255, 0.5);*/
    font-size: 18px;
    font-style: italic;
    color: var(--tooljar-gray);
    line-height: 1.4;
    text-align: left;
  }

  #process-as-service-section .process-quote footer {
    margin-top: 15px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    color: var(--tooljar-blue);
  }
}

/* Everything Revolves Around Jobs Section */
#jobs-hero-section {
  background-color: #f4f4f4;
  padding: 0;
  padding-bottom: 40px;
  position: relative;
  min-height: auto;
}

#jobs-hero-section .jobs-hero-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

#jobs-hero-section .jobs-hero-content {
  text-align: left;
  max-width: 800px;
}

#jobs-hero-section h2 {
  font-size: 33px;
  font-weight: 600;
  color: #0047ab;
  margin-bottom: 20px;
  line-height: 1.3;
  text-align: left;
}

#jobs-hero-section .jobs-hero-subtitle {
  font-size: 25px;
  font-weight: 500;
  color: var(--tooljar-purple);
  margin: 0 0 32px 0;
  line-height: 1.4;
  text-align: left;
}

#jobs-hero-section .jobs-hero-description {
  font-size: 20px;
  font-weight: 400;
  color: var(--tooljar-gray);
  line-height: 1.4;
  max-width: 800px;
  margin-bottom: 20px;
  text-align: left;
}

/* Jobs Feature Cards */
.jobs-feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 800px;
  margin-bottom: 60px;
}

.jobs-feature-card {
  background: white;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.jobs-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 71, 171, 0.1);
  border-left-color: var(--tooljar-blue);
}

.jobs-feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--tooljar-blue);
  margin-bottom: 12px;
  line-height: 1.3;
  text-align: left;
}

.jobs-feature-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: var(--tooljar-purple);
  margin-bottom: 12px;
  line-height: 1.4;
  text-align: left;
}

.jobs-feature-description {
  font-size: 15px;
  font-weight: 400;
  color: var(--tooljar-gray);
  line-height: 1.5;
  text-align: left;
  margin: 0;
}

#jobs-hero-section .jobs-hero-image {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.laptop-frame-container {
  position: relative;
  width: 100%;
  display: block;
}

.laptop-frame {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.laptop-screen-video {
  position: absolute;
  top: 3.5%;
  right: 11.3%;
  width: 77.3%;
  height: auto;
  object-fit: fill;
  z-index: 1;
  border-radius: 0;
}

#jobs-hero-section .jobs-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive video positioning for different screen sizes */
@media (min-width: 1920px) {
  .laptop-screen-video {
    top: 3.5%;
    right: 11.3%;
    width: 77.3%;
    border-radius: 0;
  }
}

@media (max-width: 1919px) and (min-width: 1440px) {
  .laptop-screen-video {
    top: 3.5%;
    right: 11.3%;
    width: 77.3%;
    border-radius: 0;
  }
}

@media (max-width: 1439px) and (min-width: 1024px) {
  .laptop-screen-video {
    top: 3.5%;
    right: 11.3%;
    width: 77.3%;
    border-radius: 0;
  }
}

@media (max-width: 1023px) and (min-width: 769px) {
  .laptop-screen-video {
    top: 3.5%;
    right: 11.3%;
    width: 77.3%;
    border-radius: 0;
  }
}

@media (max-width: 768px) {
  .laptop-screen-video {
    top: 3.5%;
    right: 11.3%;
    width: 77.3%;
    border-radius: 0;
  }
}

/* Responsive for tablet - Jobs Hero Section */
@media (max-width: 1024px) and (min-width: 769px) {
  .jobs-feature-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 700px;
  }

  .jobs-feature-card {
    padding: 28px 24px;
  }
}

/* Responsive for mobile - Jobs Hero Section */
@media (max-width: 768px) {
  #jobs-hero-section {
    padding: 0;
    padding-bottom: 40px;
    min-height: auto;
  }

  #jobs-hero-section .jobs-hero-container {
    flex-direction: column;
    gap: 40px;
    padding: 20px 20px 0 20px;
    margin-top: 0;
  }

  #jobs-hero-section .jobs-hero-content {
    text-align: left;
  }

  #jobs-hero-section h2 {
    font-size: 25px;
    text-align: left;
    line-height: 1.3;
  }

  #jobs-hero-section .jobs-hero-description {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 20px;
    text-align: left;
  }

  .jobs-feature-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
    padding: 0;
  }

  .jobs-feature-card {
    padding: 24px 20px;
  }

  .jobs-feature-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .jobs-feature-subtitle {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .jobs-feature-description {
    font-size: 15px;
    line-height: 1.4;
  }

  #jobs-hero-section .jobs-hero-image {
    width: calc(100vw - 32px);
    max-width: none;
    margin-left: calc(50% - 50vw + 16px);
    margin-right: calc(50% - 50vw + 16px);
  }

  #jobs-hero-section .laptop-frame-container {
    width: 100%;
    padding: 10px;
    background: #15181d;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    box-shadow:
      0 18px 36px rgba(0, 0, 0, 0.18),
      inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  }

  #jobs-hero-section img.laptop-frame {
    display: none !important;
    visibility: hidden;
    width: 0;
    height: 0;
  }

  #jobs-hero-section .laptop-screen-video {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: auto;
    border-radius: 14px;
    background: #000;
  }
}

/* Features Section */
#features-section {
  background-color: #f4f4f4;
  padding: 0;
  position: relative;
  margin-top: 100px;
}

.features-top-bar {
  position: relative;
  height: 200px;
  width: 100vw;
  display: flex;
  margin-bottom: -65px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  z-index: 0;
}

.features-top-bar .bar-segment-1 {
  background-color: #11275e;
  flex: 1;
}

.features-top-bar .bar-segment-2 {
  background-color: #163279;
  flex: 1.5;
}

.features-top-bar .bar-segment-3 {
  background-color: #1c419c;
  flex: 2;
}

.features-top-bar .bar-segment-4 {
  background-color: #0047ab;
  flex: 3;
}

#features-section .features-content-wrapper {
  padding: 0 5vw 100px 5vw;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}

.features-heading {
  font-size: 33px;
  font-weight: 600;
  color: #0047ab;
  text-align: left;
  padding-top: 100px;
  padding-bottom: 40px;
  padding-left: 5vw;
  padding-right: 5vw;
  margin-bottom: 0;
  line-height: 1.3;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.features-intro {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 5vw;
}

.features-intro-text {
  font-size: 18px;
  font-weight: 400;
  color: var(--tooljar-gray);
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: left;
}

.features-intro-text:last-child {
  margin-bottom: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 48px;
  padding-top: 70px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 71, 171, 0.1);
}

.feature-title {
  font-size: 25px;
  font-weight: 500;
  color: #0047ab;
  margin-bottom: 16px;
  line-height: 1.3;
  text-align: left;
}

.feature-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #9589a6;
  margin-bottom: 16px;
  line-height: 1.5;
  text-align: left;
}

.feature-description {
  font-size: 16px;
  font-weight: 400;
  color: #595959;
  line-height: 1.6;
  text-align: left;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  font-size: 16px;
  font-weight: 400;
  color: #595959;
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0047ab;
  font-weight: bold;
}

/* Hide scroll indicator on desktop */
.features-scroll-indicator {
  display: none;
}

/* AI Setup Text */
.features-ai-setup {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--tooljar-purple);
  line-height: 1.6;
  max-width: 800px;
  margin: 60px auto 0;
  padding: 0 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-title {
    font-size: 24px;
  }

  .feature-subtitle {
    font-size: 16px;
  }

  .feature-description {
    font-size: 15px;
  }
}

/* Responsive for mobile - Features Section with horizontal scroll */
@media (max-width: 768px) {
  #features-section {
    padding: 20px 0 60px 0;
    min-height: auto;
    margin-top: 150px;
  }

  #features-section .features-content-wrapper {
    padding: 0;
  }

  .features-heading {
    display: block;
    font-size: 25px;
    font-weight: 600;
    color: #0047ab;
    text-align: left;
    padding: 0 20px;
    margin-bottom: 20px;
    padding-top: 40px;
    line-height: 1.3;
  }

  .features-intro {
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .features-intro-text {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .features-top-bar {
    display: flex;
    margin-top: 0;
    margin-bottom: 0;
    height: 150px;
  }

  .features-container {
    position: relative;
    padding: 0 20px;
    margin-top: -120px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .features-container::-webkit-scrollbar {
    display: none;
  }

  /* Scroll indicator dots */
  .features-scroll-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding-bottom: 20px;
  }

  .scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d0d0d0;
    transition:
      background-color 0.3s ease,
      width 0.3s ease;
  }

  .scroll-dot.active {
    background-color: #0047ab;
    width: 24px;
    border-radius: 4px;
  }

  .features-grid {
    display: flex;
    gap: 15px;
    min-height: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 20px;
  }

  .feature-card {
    flex: 0 0 85%;
    min-width: 85%;
    min-height: auto;
    background: white;
    border-radius: 24px;
    padding: 60px 28px 32px 28px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .feature-title {
    font-size: 25px;
    font-weight: 500;
    color: #0047ab;
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .feature-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #9589a6;
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.4;
  }

  .feature-description {
    font-size: 15px;
    font-weight: 400;
    color: #595959;
    text-align: left;
    line-height: 1.4;
  }

  .feature-list {
    margin-top: 16px;
  }

  .feature-list li {
    font-size: 16px;
    color: #595959;
    line-height: 1.6;
  }

  .features-ai-setup {
    font-size: 16px;
    margin: 40px auto 0;
  }
}

/* Built for Teams Section */
#built-for-teams-section {
  background-color: #f4f4f4;
  padding: 80px 5vw;
  position: relative;
  min-height: auto;
}

#built-for-teams-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

#built-for-teams-section .built-for-teams-content {
  text-align: left;
  max-width: 100%;
}

#built-for-teams-section h2 {
  font-size: 33px;
  font-weight: 600;
  color: var(--tooljar-blue);
  line-height: 1.3;
  margin-bottom: 20px;
  text-align: left;
}

#built-for-teams-section .built-for-teams-intro {
  font-size: 18px;
  font-weight: 400;
  color: var(--tooljar-gray);
  line-height: 1.4;
  margin-bottom: 40px;
  text-align: left;
}

#built-for-teams-section .industry-examples-heading {
  font-size: 24px;
  font-weight: 600;
  color: var(--tooljar-blue);
  line-height: 1.3;
  margin: 0 0 24px 0;
  text-align: left;
}

.industry-examples {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 0;
}

.industry-example {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.industry-example:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 71, 171, 0.1);
}

.industry-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--tooljar-blue);
  margin-bottom: 12px;
  line-height: 1.3;
  text-align: left;
}

.industry-description {
  font-size: 18px;
  font-weight: 400;
  color: var(--tooljar-gray);
  line-height: 1.4;
  margin: 0;
  text-align: left;
}

/* Wherever Work Happens Section */
#wherever-work-section {
  background-color: #f4f4f4;
  padding: 100px 5vw;
  position: relative;
}

.wherever-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.wherever-content {
  flex: 1;
  max-width: 600px;
}

.wherever-header {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.tooljar-icon {
  height: 100px;
  flex-shrink: 0;
}

.wherever-text-wrapper {
  margin-left: 0;
}

.wherever-heading {
  font-size: 33px;
  font-weight: 600;
  color: #0047ab;
  line-height: 1.3;
  margin-bottom: 0;
  text-align: left;
}

.wherever-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #9589a6;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
}

.wherever-description {
  font-size: 18px;
  font-weight: 400;
  color: #595959;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
}

.wherever-pwa {
  font-size: 18px;
  font-weight: 400;
  color: #595959;
  font-style: italic;
  line-height: 1.6;
  text-align: left;
  margin-top: 30px;
}

.wherever-phone {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1424 / 2956;
  min-height: 500px;
}

.phone-video {
  position: absolute;
  top: 1.5%;
  left: 3.65%;
  width: 92.7%;
  height: 97%;
  object-fit: cover;
  border-radius: 50px;
  z-index: 1;
}

.phone-frame-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  shape-rendering: geometricPrecision;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

@media (max-width: 1024px) {
  .wherever-container {
    gap: 60px;
  }

  .wherever-heading {
    font-size: 40px;
  }

  .wherever-subtitle,
  .wherever-description,
  .wherever-pwa {
    font-size: 16px;
  }

  .tooljar-icon {
    height: 100px;
  }

  .wherever-header {
    gap: 20px;
  }
}

/* Responsive for mobile - Built for Teams Section */
@media (max-width: 768px) {
  #built-for-teams-section {
    padding: 60px 20px;
  }

  #built-for-teams-section h2 {
    font-size: 25px;
    margin-bottom: 20px;
  }

  #built-for-teams-section .built-for-teams-intro {
    font-size: 15px;
    margin-bottom: 30px;
  }

  #built-for-teams-section .industry-examples-heading {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .industry-examples {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .industry-example {
    padding: 24px 20px;
  }

  .industry-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .industry-description {
    font-size: 15px;
  }
}

/* Responsive for mobile - Wherever Work Section */
@media (max-width: 768px) {
  #wherever-work-section {
    padding: 60px 20px;
  }

  .wherever-container {
    flex-direction: column;
    gap: 40px;
  }

  .wherever-content {
    max-width: 100%;
  }

  .wherever-header {
    flex-direction: row;
    gap: 15px;
    margin-bottom: 10px;
    align-items: flex-start;
  }

  .tooljar-icon {
    height: 100px;
    flex-shrink: 0;
  }

  .wherever-text-wrapper {
    margin-left: 0;
  }

  .wherever-heading {
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .wherever-subtitle {
    font-size: 18px;
    font-weight: 500;
  }

  .wherever-description {
    font-size: 15px;
    line-height: 1.4;
  }

  .wherever-pwa {
    font-size: 16px;
    margin-top: 20px;
  }

  .phone-mockup {
    max-width: 320px;
    margin: 0 auto;
  }

  .wherever-phone {
    width: 100%;
    min-height: 600px;
  }
}

/* How Teams Use Tooljar Section */
#how-teams-use-section {
  background: white;
  padding: 100px 0 0 0;
  position: relative;
}

#how-teams-use-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(
    to bottom,
    rgba(244, 244, 244, 0) 0%,
    rgba(244, 244, 244, 0.3) 50%,
    var(--tooljar-bg) 100%
  );
  pointer-events: none;
}

.how-teams-container {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
}

.how-teams-heading {
  font-size: 33px;
  font-weight: 600;
  color: #0047ab;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.3;
  padding-left: 0;
  width: min(1610px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.how-teams-cards-wrapper {
  overflow-x: auto;
  overflow-y: visible;
  width: 100%;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
}

.how-teams-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
}

.how-teams-cards::-webkit-scrollbar {
  height: 8px;
}

.how-teams-cards::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 4px;
}

.how-teams-cards::-webkit-scrollbar-thumb {
  background: #0047ab;
  border-radius: 4px;
}

.how-teams-card {
  flex: 0 0 380px;
  background-color: #f4f4f4;
  border-radius: 50px;
  padding: 40px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.how-teams-card:hover {
  transform: translateY(-4px);
}

.how-teams-card-title {
  font-size: 24px;
  font-weight: 600;
  color: #0047ab;
  margin-bottom: 16px;
  line-height: 1.3;
  text-align: left;
}

.how-teams-card-description {
  font-size: 16px;
  font-weight: 400;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: left;
}

.how-teams-card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.how-teams-card-image.slide-in {
  opacity: 1;
  transform: translateY(0);
}

/* Hide scroll indicator on desktop */
.how-teams-scroll-indicator {
  display: none;
}

/* Responsive for mobile - How Teams Use Section */
@media (max-width: 768px) {
  #how-teams-use-section {
    padding: 60px 0 0 0;
  }

  .how-teams-container {
    padding: 0;
  }

  .how-teams-heading {
    font-size: 25px;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.3;
    padding: 0 20px;
  }

  .how-teams-cards-wrapper {
    position: relative;
    padding: 0 20px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .how-teams-cards-wrapper::-webkit-scrollbar {
    display: none;
  }

  .how-teams-cards {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
  }

  .how-teams-card {
    flex: 0 0 calc(100vw - 80px);
    min-width: calc(100vw - 80px);
    padding: 40px 30px;
    border-radius: 30px;
  }

  .how-teams-card-title {
    font-size: 20px;
  }

  .how-teams-card-description {
    font-size: 15px;
    line-height: 1.4;
  }

  .how-teams-card-image {
    opacity: 1;
    transform: translateY(0);
  }

  /* Scroll indicator dots for how-teams section */
  .how-teams-scroll-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 0 20px 20px 20px;
  }

  .how-teams-scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d0d0d0;
    transition:
      background-color 0.3s ease,
      width 0.3s ease;
  }

  .how-teams-scroll-dot.active {
    background-color: #0047ab;
    width: 24px;
    border-radius: 4px;
  }
}

/* Meet TJ Section */
#meet-tj-section {
  background-color: var(--tooljar-bg);
  padding: 100px 5vw;
  position: relative;
}

.meet-tj-container {
  max-width: 1400px;
  margin: 0 auto;
}

.meet-tj-header {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.tj-animated-icon {
  width: 116px;
  height: 113px;
  flex-shrink: 0;
}

/* Central star - always visible, no animation */
.tj-animated-icon .star-center {
  opacity: 1;
  fill: #0047ab;
}

/* Base sparkle styling */
.tj-animated-icon .sparkle {
  fill: #0047ab;
  transform-origin: center;
}

/* Sparkle fade animation - creates thinking effect */
@keyframes sparkle-pulse {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}

/* Inner ring - fastest pulse (1.6s cycle) */
.tj-animated-icon .sparkle-inner {
  animation: sparkle-pulse 1.6s ease-in-out infinite;
}

/* Middle ring - medium pulse (1.8s cycle, 0.4s delay) */
.tj-animated-icon .sparkle-middle {
  animation: sparkle-pulse 1.8s ease-in-out infinite;
  animation-delay: 0.4s;
}

/* Outer ring - slowest pulse (2.0s cycle, 0.8s delay) */
.tj-animated-icon .sparkle-outer {
  animation: sparkle-pulse 2s ease-in-out infinite;
  animation-delay: 0.8s;
}

/* Accessibility: respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .tj-animated-icon .sparkle {
    animation: none !important;
    opacity: 1;
  }
}

.meet-tj-heading {
  font-size: 120px;
  font-weight: 700;
  color: #0047ab;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
  text-align: left;
}

.meet-tj-content {
  margin-left: 146px;
  max-width: 800px;
}

.meet-tj-subtitle {
  font-size: 33px;
  font-weight: 600;
  color: #0047ab;
  line-height: 1.3;
  margin-bottom: 24px;
  margin-top: 0;
  text-align: left;
}

.meet-tj-tagline {
  font-size: 25px;
  font-weight: 500;
  color: #9589a6;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
}

.meet-tj-description {
  font-size: 18px;
  font-weight: 400;
  color: #595959;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
}

.meet-tj-description:last-child {
  margin-bottom: 0;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  #meet-tj-section {
    padding: 80px 5vw;
  }

  .meet-tj-heading {
    font-size: 90px;
  }

  .meet-tj-content {
    margin-left: 120px;
  }

  .meet-tj-subtitle {
    font-size: 32px;
  }

  .meet-tj-tagline {
    font-size: 16px;
  }

  .meet-tj-description {
    font-size: 16px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  #meet-tj-section {
    padding: 150px 20px 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .meet-tj-container {
    max-width: 500px;
    margin: 0 auto;
  }

  .meet-tj-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
  }

  .tj-animated-icon {
    width: 90px;
    height: 88px;
  }

  .meet-tj-heading {
    font-size: 64px;
    text-align: left;
    line-height: 1.2;
  }

  .meet-tj-content {
    margin-left: 0;
    max-width: 100%;
  }

  .meet-tj-subtitle {
    font-size: 25px;
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .meet-tj-tagline {
    font-size: 15px;
    line-height: 1.4;
    text-align: left;
  }

  .meet-tj-description {
    font-size: 15px;
    line-height: 1.4;
    text-align: left;
  }
}

/* Ask TJ Section */
#ask-tj-section {
  background-color: #f4f4f4;
  padding: 100px 5vw;
  position: relative;
}

.ask-tj-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.ask-tj-content {
  flex: 1;
  max-width: 600px;
}

.ask-tj-point {
  margin-bottom: 40px;
}

.ask-tj-point:last-child {
  margin-bottom: 0;
}

.ask-tj-point-title {
  font-size: 25px;
  font-weight: 500;
  color: #0047ab;
  margin-bottom: 16px;
  line-height: 1.3;
  text-align: left;
}

.ask-tj-point-description {
  font-size: 20px;
  font-weight: 400;
  color: var(--tooljar-gray);
  line-height: 1.4;
  margin-bottom: 0;
  text-align: left;
}

.ask-tj-heading {
  font-size: 33px;
  font-weight: 600;
  color: #0047ab;
  line-height: 1.3;
  margin-bottom: 40px;
  text-align: left;
}

.ask-tj-intro {
  font-size: 18px;
  font-weight: 400;
  color: #595959;
  line-height: 1.6;
  margin-bottom: 12px;
  text-align: left;
}

.ask-tj-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.ask-tj-list li {
  font-size: 18px;
  font-weight: 400;
  color: #595959;
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}

.ask-tj-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #595959;
  font-weight: normal;
  font-size: 20px;
  line-height: 1.6;
}

.ask-tj-tagline {
  font-size: 18px;
  font-weight: 400;
  color: #595959;
  line-height: 1.6;
  margin-bottom: 40px;
  text-align: left;
  font-style: italic;
}

.ask-tj-subheading {
  font-size: 36px;
  font-weight: 600;
  color: #0047ab;
  line-height: 1.3;
  margin-bottom: 20px;
  margin-top: 40px;
  text-align: left;
}

.ask-tj-subheading:first-of-type {
  margin-top: 0;
}

.ask-tj-description {
  font-size: 18px;
  font-weight: 400;
  color: #595959;
  line-height: 1.6;
  margin-bottom: 12px;
  text-align: left;
}

.ask-tj-description:last-child {
  margin-bottom: 0;
}

.ask-tj-emphasis {
  font-size: 18px;
  font-weight: 500;
  color: #9589a6;
  line-height: 1.6;
  margin-bottom: 4px;
  text-align: left;
}

.ask-tj-emphasis:last-child {
  margin-bottom: 0;
}

.ask-tj-phone {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ask-tj-phone .phone-mockup {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1424 / 2956;
  min-height: 500px;
}

.ask-tj-phone .phone-video {
  position: absolute;
  top: 1.5%;
  left: 3.65%;
  width: 92.7%;
  height: 97%;
  object-fit: cover;
  border-radius: 50px;
  z-index: 1;
}

.ask-tj-phone .phone-frame-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  shape-rendering: geometricPrecision;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .ask-tj-container {
    gap: 60px;
  }

  .ask-tj-heading {
    font-size: 25px;
    margin-bottom: 30px;
  }

  .ask-tj-intro {
    font-size: 16px;
  }

  .ask-tj-subheading {
    font-size: 32px;
  }

  .ask-tj-list li,
  .ask-tj-tagline,
  .ask-tj-description,
  .ask-tj-emphasis {
    font-size: 16px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  #ask-tj-section {
    padding: 60px 20px;
  }

  .ask-tj-container {
    flex-direction: column;
    gap: 40px;
  }

  .ask-tj-content {
    max-width: 100%;
  }

  .ask-tj-point {
    margin-bottom: 30px;
  }

  .ask-tj-point-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .ask-tj-point-description {
    font-size: 15px;
    line-height: 1.4;
  }

  .ask-tj-phone .phone-mockup {
    max-width: 320px;
    margin: 0 auto;
  }

  .ask-tj-phone {
    width: 100%;
    min-height: 600px;
  }
}

/* History Section */
#history-section {
  background-color: var(--tooljar-bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
  position: relative;
}

.history-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.history-accent-bar {
  width: 168px;
  height: 37px;
  background-color: var(--tooljar-blue);
  flex-shrink: 0;
  margin-top: 12px;
}

.history-content {
  flex: 1;
  max-width: 800px;
}

.history-heading {
  font-size: 33px;
  font-weight: 600;
  color: var(--tooljar-blue);
  line-height: 1.3;
  margin-bottom: 32px;
  text-align: left;
}

.history-description {
  font-size: 18px;
  font-weight: 400;
  color: var(--tooljar-gray);
  line-height: 1.6;
  margin-bottom: 24px;
  text-align: left;
}

.history-tagline {
  font-size: 25px;
  font-weight: 500;
  color: #0047ab;
  line-height: 1.55;
  text-align: left;
}

/* History Section - Tablet */
@media (max-width: 1024px) {
  #history-section {
    padding: 60px;
    min-height: 100vh;
  }

  .history-accent-bar {
    width: 120px;
  }

  .history-heading {
    font-size: 40px;
  }

  .history-description {
    font-size: 16px;
  }

  .history-tagline {
    font-size: 25px;
    line-height: 1.55;
  }
}

/* History Section - Mobile */
@media (max-width: 768px) {
  #history-section {
    padding: 60px 24px;
    min-height: 100vh;
  }

  .history-container {
    flex-direction: column;
    gap: 24px;
  }

  .history-accent-bar {
    display: none;
  }

  .history-heading {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.3;
  }

  .history-description {
    font-size: 15px;
    line-height: 1.4;
  }

  .history-tagline {
    font-size: 20px;
    line-height: 1.55;
    font-weight: 500;
  }
}

/* CTA Section */
#cta-section {
  background-color: #f4f4f4;
  padding: 0;
  position: relative;
  min-height: 100vh;
}

.cta-top-bar {
  position: relative;
  height: 300px;
  width: 100vw;
  display: flex;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.cta-bar-segment-1 {
  background-color: #11275e;
  flex: 1;
}

.cta-bar-segment-2 {
  background-color: #163279;
  flex: 1.5;
}

.cta-bar-segment-3 {
  background-color: #1c419c;
  flex: 2;
}

.cta-bar-segment-4 {
  background-color: #0047ab;
  flex: 3;
}

.cta-logo-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
  transform: translateY(-97%);
}

.cta-logo {
  height: 70px;
  width: auto;
  display: block;
}

.cta-container {
  padding: 20px 5vw 120px;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-heading {
  font-size: 33px;
  font-weight: 600;
  color: #0047ab;
  margin-bottom: 30px;
  line-height: 1.3;
  text-align: left;
  max-width: 700px;
  display: none; /* Hidden on desktop, carousel shows instead */
}

/* CTA Word Carousel Styles */
.cta-word-container {
  position: relative;
  height: 110px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  transform: translateZ(0);
}

.cta-word-prefix {
  font-size: 80px;
  font-weight: 700;
  color: var(--tooljar-blue);
  letter-spacing: 0;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: fit-content;
}

.cta-word-carousel {
  position: relative;
  width: 480px;
  min-width: 480px;
  height: 110px;
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: width 0.4s ease;
}

.cta-word-carousel.finished {
  width: auto;
  min-width: auto;
  overflow: visible;
}

.cta-word-carousel.finished .cta-word-carousel-inner {
  position: relative;
  width: auto;
  height: auto;
}

.cta-word-carousel.finished .cta-word.active {
  position: static;
  transform: none;
  width: auto;
}

.cta-word-carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.cta-word {
  font-size: 80px;
  font-weight: 700;
  color: var(--tooljar-blue);
  letter-spacing: 0;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: left;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(110px);
  filter: blur(4px);
  transition:
    opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s 0.55s;
}

.cta-word.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s 0s;
}

.cta-word.exit {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-110px);
  filter: blur(4px);
  transition:
    opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s 0.55s;
}

.cta-word-to-second {
  font-size: 80px;
  font-weight: 700;
  color: var(--tooljar-blue);
  letter-spacing: 0;
  white-space: nowrap;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  filter: blur(4px);
  transition: all 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.cta-word-to-second.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  filter: blur(0);
}

.cta-word-done {
  font-size: 80px;
  font-weight: 700;
  color: var(--tooljar-blue);
  letter-spacing: 0;
  white-space: nowrap;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  filter: blur(4px);
  transition: all 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.cta-word-done.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  filter: blur(0);
}

.cta-description {
  font-size: 18px;
  font-weight: 400;
  color: #595959;
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 20px;
  text-align: left;
}

.cta-subtext {
  font-size: 18px;
  font-weight: 500;
  color: var(--tooljar-purple);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 60px;
  text-align: left;
  max-width: 700px;
}

.cta-button {
  display: inline-block;
  background-color: #0047ab;
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 44px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
  font-family: "Instrument Sans", sans-serif;
  align-self: flex-end;
}

.cta-button:hover {
  background-color: #003d8f;
  transform: translateY(-2px);
}

.cta-beta-note {
  font-size: 14px;
  font-weight: 400;
  color: #595959;
  line-height: 1.6;
  max-width: 700px;
  margin-top: 40px;
  text-align: left;
}

.cta-footer {
  padding: 0 80px 80px;
  display: flex;
  justify-content: flex-end;
}

.cta-footer-link {
  color: #0066ff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.cta-footer-link:hover {
  gap: 16px;
}

.cta-footer-link .arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .cta-top-bar {
    height: 200px;
  }

  .cta-logo-wrapper {
    padding: 0 20px;
    margin: 0;
  }

  .cta-logo {
    height: 50px;
  }

  .cta-container {
    padding: 40px 20px 120px;
    position: relative;
    min-height: calc(100vh - 200px);
  }

  /* Mobile CTA - Show heading, hide carousel */
  .cta-heading {
    display: block !important;
    font-size: 25px;
    margin-bottom: 24px;
    line-height: 1.3;
  }

  .cta-word-container {
    display: none !important;
  }

  .cta-description {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .cta-subtext {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 40px;
  }

  .cta-button {
    font-size: 16px;
    padding: 16px 40px;
  }

  .cta-beta-note {
    font-size: 13px;
    margin-top: auto;
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
  }

  #cta-section {
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  #cta-section #footer {
    margin-top: auto;
  }

  .cta-footer {
    padding: 0;
    justify-content: right;
    position: absolute;
    bottom: 5vh;
    left: 0;
    right: 20px;
  }

  .cta-footer-link {
    font-size: 16px;
    color: #0066ff;
  }

  #footer {
    padding: 15px 20px;
  }

  .footer-copyright {
    font-size: 11px;
  }
}

/* How It Works Section */
#how-it-works {
  background-color: #f4f4f4;
  padding: 100px 0;
  position: relative;
}

#how-it-works .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}

#how-it-works .section-header {
  text-align: center;
  margin-bottom: 80px;
}

#how-it-works h2 {
  font-size: 33px;
  font-weight: 700;
  color: #0047ab;
  margin-bottom: 16px;
  line-height: 1.3;
}

#how-it-works .subheading {
  font-size: 20px;
  font-weight: 500;
  color: #595959;
  line-height: 1.6;
}

/* Step styling */
.step {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.step-content {
  flex: 1;
  position: relative;
}

.step-number {
  font-size: 60px;
  font-weight: 700;
  color: #b4d0f0;
  opacity: 0.3;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.step h3 {
  font-size: 28px;
  font-weight: 600;
  color: #0047ab;
  margin-bottom: 16px;
  line-height: 1.3;
}

.step p {
  font-size: 18px;
  font-weight: 500;
  color: #595959;
  line-height: 1.7;
}

.step-image {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 71, 171, 0.1);
  transition: box-shadow 0.3s ease;
}

.step-image img:hover {
  box-shadow: 0 15px 50px rgba(0, 71, 171, 0.15);
}

/* Mobile screenshot side by side */
.step-image-mobile {
  gap: 20px;
}

.step-image-mobile img {
  max-width: 45%;
}

/* Step 2: Image on left */
.step-2 {
  flex-direction: row-reverse;
}

/* Animation classes */
.hidden {
  opacity: 0;
  transform: translateY(30px);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-left {
  transform: translateX(-40px);
}

.slide-right {
  transform: translateX(40px);
}

/* Responsive for tablet */
@media (max-width: 1024px) {
  #how-it-works {
    padding: 80px 0;
  }

  #how-it-works h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .step {
    gap: 40px;
    margin-bottom: 80px;
  }

  .step h3 {
    font-size: 24px;
  }

  .step p {
    font-size: 16px;
  }

  .step-number {
    font-size: 50px;
  }
}

/* Responsive for mobile - How It Works Section */
@media (max-width: 768px) {
  #how-it-works {
    padding: 60px 0;
  }

  #how-it-works h2 {
    font-size: 25px;
    line-height: 1.3;
  }

  #how-it-works .subheading {
    font-size: 18px;
  }

  #how-it-works .section-header {
    margin-bottom: 60px;
  }

  .step {
    flex-direction: column !important;
    gap: 30px;
    margin-bottom: 60px;
    text-align: left;
  }

  .step-content {
    width: 100%;
  }

  .step-image {
    flex: none;
    width: 100%;
  }

  .step-number {
    font-size: 40px;
  }

  .step h3 {
    font-size: 22px;
  }

  .step p {
    font-size: 16px;
  }

  .step-image-mobile {
    flex-direction: column;
    gap: 15px;
  }

  .step-image-mobile img {
    max-width: 70%;
    margin: 0 auto;
  }

  /* Simpler mobile animations */
  .hidden {
    transform: translateY(20px);
  }

  .slide-left,
  .slide-right {
    transform: translateY(20px);
  }
}

/* ====================================
   Footer Section
   ==================================== */
#footer {
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Desktop Footer Styles */
@media (min-width: 769px) {
  #footer {
    padding: 40px 20px;
  }

  .footer-copyright {
    font-size: 14px;
    color: var(--tooljar-gray);
    font-weight: 400;
  }
}
