/* Base css start */

/* google fonts cdn */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --poppins: "Poppins", sans-serif;
    --inter: "Inter", sans-serif;
    --lato: "Lato", sans-serif;
}

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

ol,
ul {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

a,
button {
    transition: all 0.3s;
}

a {
    text-decoration: none;
}

body {
    font-family: var(--poppins);
    color: #000;
}

.container {
    max-width: 1220px;
    padding-inline: 20px;
    margin-inline: auto;
}

/* Base css end */

/* header section start */
.header {
    border-radius: 12px;
    background-color: #fbfbfb;
    padding-block: 15px;
}

.header__msg {
    font-size: 14px;
    line-height: normal;
    font-family: var(--lato);
    font-style: italic;
    text-align: center;
}

/* header section end */

/* hero section start */
.hero {
    padding-block: 40px 60px;
}

.hero__wrapper {
    display: flex;
    align-items: end;
    gap: 106px;
}

.hero__content {
    flex-grow: 1;
}

.hero__video {
    width: 530px;
    flex-shrink: 0;
}

.hero__logo {
    display: block;
    width: 180px;
    margin-left: 9px;
    margin-bottom: 72px;
}

.hero__title {
    color: #333;
    font-size: 51px;
    font-weight: 500;
    line-height: 114%;
    letter-spacing: -0.96px;
    margin-bottom: 19px;
}

.hero__title span {
    background-image: linear-gradient(90deg, #FF6900 0%, #9810FA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__desc {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 16px;
    font-weight: 300;
}

.hero__review {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

.hero__review-stars {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.hero__review-stars img {
    width: 17px;
}

.hero__review p {
    color: rgba(33, 33, 33, 0.8);
    font-family: var(--inter);
    line-height: normal;
    letter-spacing: -0.32px;
}

.hero__review p span {
    font-weight: 700;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: max-content;
    gap: 20px;
}

.add-chrome-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    border-radius: 20px;
    background-color: #5470e0;
    height: 64px;
    padding-inline: 8px 42px;
    font-family: var(--inter);
    color: #ffff;
    font-weight: 300;
    letter-spacing: -0.36px;
}

.add-chrome-btn strong {
    font-weight: 700;
    font-size: 18px;
}

.add-chrome-btn img {
    width: 45px;
}

.privacy-slogan {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(33, 33, 33, 0.6);
    font-family: var(--inter);
    line-height: normal;
    letter-spacing: -0.32px;
}

.privacy-slogan__icon {
    width: 16px;
}

/* hero section end */

/* reviews section start */

.section-subtitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 16px;
    color: #757575;
}

.section-title {
    color: #333;
    font-size: 48px;
    font-weight: 300;
    line-height: 133.333%;
    letter-spacing: -0.96px;
}

.section-title span {
    font-weight: 700;
}

.reviews__header {
    text-align: center;
    margin-bottom: 72px;
}

.reviews__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.reviews__card {
    border-radius: 24px;
    border: 1px solid rgba(33, 33, 33, 0.1);
    background-color: rgba(255, 255, 255, 0.01);
    -webkit-backdrop-filter: blur(75px);
    backdrop-filter: blur(75px);
    padding: 24px 32px;
    min-height: 316px;
    transition: all 0.3s;
}

.reviews__card:hover {
    box-shadow: 0px 1px 18px 0px rgba(230, 230, 230, 0.49);
}

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

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

.reviews__profile-avatar {
    width: 40px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 50%;
}

.reviews__profile-name {
    color: #212121;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.32px;
}

.reviews__date {
    color: rgba(33, 33, 33, 0.6);
    font-family: var(--inter);
    font-size: 12px;
    line-height: normal;
    letter-spacing: -0.24px;
}

.reviews__stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.reviews__stars img {
    width: 15px;
}

.reviews__desc {
    color: #000;
    font-size: 18px;
    font-weight: 300;
    line-height: 150%;
}

/* reviews section end */

/* how-it-works section start */
.how-it-works {
    padding-block: 96px 118px;
}

.how-it-works__header {
    text-align: center;
    margin-bottom: 48px;
}

.how-it-works__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 77px;
}

.how-it-works__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.how-it-works__step-thumb img {
    width: 100%;
}

.how-it-works__step-title {
    color: #333;
    font-size: 32px;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 12px;
}

.how-it-works__step-desc {
    color: #000;
    font-size: 18px;
    font-weight: 300;
    line-height: 150%;
}

/* how-it-works section end */

/* footer section start */

.footer {
    background-color: #f3f8ff;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.footer::after {
    content: "";
    width: 527px;
    height: 115px;
    opacity: 0.3;
    background-color: #ff78ff;
    filter: blur(200px);
    position: absolute;
    bottom: -26px;
    right: 16%;
    z-index: -1;
}

.footer__main {
    padding-block: 107px 50px;
}

.footer__wrapper {
    display: flex;
    gap: 96px;
}

.footer__left {
    flex: 1;
    padding-top: 20px;
}

.footer__logo img {
    width: 180px;
}

.footer__logo {
    display: inline-flex;
    margin-bottom: 10px;
}

.footer__desc {
    color: #1e1e1e;
    font-weight: 300;
    line-height: 150%;
    margin-bottom: 42px;
}

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

.add-chrome-btn--lg {
    height: 87px;
    gap: 18px;
    padding-inline: 10px 56px;
    font-size: 22px;
    letter-spacing: -0.489px;
    border-radius: 24px;
}

.add-chrome-btn--lg img {
    width: 65px;
}

.add-chrome-btn--lg strong {
    font-size: 24px;
}

.dmca-protection {
    margin-top: 48px;
    padding-left: 16px;
}

.dmca-protection__logo {
    width: auto;
    height: 40px;
    display: block;
    margin-bottom: 18px;
}

.dmca-protection__text {
    color: #1e1e1e;
    font-family: var(--lato);
    letter-spacing: -0.32px;
    line-height: 1.5;
}

.footer__bottom {
    background-color: #ffff;
    padding-block: 24px;
    font-family: var(--lato);
}

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

.footer__nav {
    gap: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer__link {
    color: #1d2026;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.32px;
    text-decoration-line: underline;
}

.footer__link:hover {
    color: #5470e0;
}

.footer__nav-and {
    color: #1d202699;
}

.footer__copyright {
    color: rgba(29, 32, 38, 0.6);
    line-height: 24px;
    letter-spacing: -0.32px;
}

/* footer section end */
/* custom new css */
.add-chrome-btn {
    background: linear-gradient(135deg, #5470e0 0%, #4a5fd1 100%);
    position: relative;
    overflow: hidden;
}

.add-chrome-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6680f0 0%, #5a6fe1 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.add-chrome-btn:hover::before {
    left: 0;
}

.add-chrome-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(84, 112, 224, 0.35);
}