.area {
    position: relative;
    background-color: var(--background-1);
    justify-content: center;
    align-items: center;
    text-align: center;
}

.scrolling-content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
    background-color: black;
    color: white;
    padding: 7rem;
}

.scrolling-content h2 {
    margin: 0.5rem 0;
    font-size: 2.5rem;
    font-weight: 200;
    margin: 15px 0;
    line-height: 1;
}

.scrolling-content h3 {
    font-size: 1.3rem;
    font-weight: 200;
}

@media (max-width: 768px) {
    .scrolling-content {
        padding: 40px;
    }
}

/* AREA-1 */

#area1 {
    top: 80px;
    position: sticky;
    min-height: calc(100vh - 80px);
    font-size: 5rem;
    font-weight: 300;
    display: flex;
    width: 100%;
    flex-direction: column;
    background-color: var(--background-1);
}

#area1 h1 {
    font-size: 5.8rem;
    font-weight: 500;
    padding-bottom: 20px;
}

#area1 h3 {
    font-size: 2.1rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    #area1 {
        text-align: left;
        padding-left: 2rem;
        padding-right: 2rem;
        line-height: 1.1;
    }
    #area1 h1 {
        font-size: 4rem;
    }
    #area1 h3 {
        font-size: 1.6rem;
    }
}

/* STATISTICS */

#statistics {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 100px;
  background-color: var(--background-2);
  color: #121212;
  text-align: center;
}

.metric {
  flex: 1;
}

.metric-value {
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1.1;
}

.metric-label {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 10px;
}

.metric-multiplier {
  font-size: 0.6em;
  vertical-align: super;
  margin-left: 2px;
}

.metric-subtext {
  font-size: 1.1rem;
  font-weight: 400;
  margin-top: 8px;
  color: var(--muted);
}

@media (max-width: 768px) {
    #statistics {
        display: none;
    }
}

/* AREA-2 */

#area2 {
    background-color: var(--background-2);
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding: 160px;
    width: 100%;
}

#area2 .left-column {
  flex: 1;
  width: 65%;
}

#area2 h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.1;
}

#area2 p {
  font-size: 1.3rem;
  line-height: 1.5;
  margin-bottom: 50px;
  color: var(--text);
}

#area2 .right-column {
  flex: 1;
  width: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#area2 .right-column .orb {
    width: 35vh;
    height: 35vh;
    background: radial-gradient(
        circle,
        rgba(224, 18, 128, 0.7) 0%,
        rgba(224, 18, 128, 0.4) 40%,
        rgba(224, 18, 128, 0) 70%
    );
    border-radius: 50%;
    animation: pulse 6s infinite linear, pulse 3s infinite ease-in-out;
    box-shadow: 0 0 20px rgba(224, 18, 128, 0.5), 0 0 40px rgba(224, 18, 128, 0.2);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(199, 21, 133, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(199, 21, 133, 0.9);
    }
}

@media screen and (max-width: 768px) {
  #area2 {
    flex-direction: column-reverse;
    align-items: center;
    text-align: left;
    padding: 60px 20px;
  }

  #area2 .left-column,
  #area2 .right-column {
    width: 100%;
    flex: unset;
  }

  #area2 .left-column h1 {
    font-size: 2rem;
  }

  #area2 .left-column p {
    font-size: 1.3rem;
  }

  #area2 .right-column .orb {
    width: 25vw;
    height: 25vw;
  }
}

/* AREA-3 */

#area3 {
    background-color: var(--background-2);
    padding: 80px;
    min-height: 100vh;
    box-sizing: border-box;
}

#area3 h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.1;
}

#area3 h3 {
    font-size: 1.1rem;
    font-weight: 200;
    margin-bottom: 60px;
}

#area3 .pricing-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

#area3 .plan {
    background: white;
    border: 1px solid #ddd;
    border-radius: 16px;
    width: 30%;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    overflow: visible;
    text-align: left;
}

#area3 .plan.best {
    border: 2px solid #e01280;
}

#area3 .tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #e01280;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
}

#area3 .plan h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

#area3 .plan h3 {
    color: var(--muted);
    margin: 0;
    font-weight: 200;
}

#area3 .plan p {
    font-size: 0.9rem;
    color: #334;
    padding-top: 20px;
}

#area3 .price {
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0 0.25rem;
}

#area3 .per-user {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1.5rem;
}

#area3 ul.features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

#area3 ul.features li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-right: 24px;
    line-height: 1.4;
}

#area3 ul.features li::before {
    content: '✓';
    color: #e01280;
    margin-right: 0.5rem;
}

#area3 .tooltip-icon {
    display: inline-block;
    background: #ccc;
    color: white;
    font-size: 0.65rem;
    width: 16px;
    height: 16px;
    text-align: center;
    line-height: 16px;
    border-radius: 50%;
    margin-left: 6px;
    cursor: pointer;
    position: relative;
}

#area3 .tooltip-icon:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    font-size: 0.75rem;
    padding: 8px 10px;
    border-radius: 6px;
    white-space: nowrap;
    z-index: 999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

#area3 .tooltip-icon:hover::before {
    content: "";
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: #333;
}

#area3 .plan button, a {
    margin-top: auto;
}

#area3 .plan a {
    color: black;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    padding: 14px 28px;
    box-shadow: 0 0 10px var(--muted);
}

@media screen and (max-width: 1194px) {
  #area3 {
    padding: 60px 20px;
  }

  #area3 .pricing-container {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }

  #area3 .plan {
    width: 100%;
  }

  #area3 h1 {
    font-size: 2rem;
    text-align: left;
  }

  #area3 h3 {
    font-size: 1rem;
    text-align: left;
  }

  #area3 .tooltip-icon {
    display: none;
  }
}

/** AREA 4 **/

#area4 {
    background-color: var(--background-1);
    text-align: left;
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding: 160px;
    width: 100%;
}

#area4 p {
  font-size: 1.4rem;
  color: var(--muted);
  line-height: 1.6;
}

#area4 .stacked-section {
  text-align: center;
}

#area4 .stacked-section h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

#area4 .stacked-section p {
  max-width: 75%;
  margin: 0 auto 40px;
  color: var(--text);
  line-height: 1.5;
}

#area4 .stacked-section img {
  width: 100%;
  margin-top: 60px;
  box-shadow: 0 0 20px rgba(224, 18, 128, 0.5), 0 0 40px rgba(224, 18, 128, 0.2);
}

@media (max-width: 768px) {
  #area4 {
    display: none;
  }
}
