/* Import Font */
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Bold.woff2') format('woff2'),
        url('../fonts/Nunito-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Black.woff2') format('woff2'),
        url('../fonts/Nunito-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-ExtraBold.woff2') format('woff2'),
        url('../fonts/Nunito-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-ExtraLight.woff2') format('woff2'),
        url('../fonts/Nunito-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Light.woff2') format('woff2'),
        url('../fonts/Nunito-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Medium.woff2') format('woff2'),
        url('../fonts/Nunito-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Regular.woff2') format('woff2'),
        url('../fonts/Nunito-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-SemiBold.woff2') format('woff2'),
        url('../fonts/Nunito-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Reset CSS */
/* Color Variables */
:root {
    --color-bg: #000000;
    --color-text: #ffffff;
    --color-primary: #45D0EC;
}

/* ===== Scrollbar Styling (Webkit browsers: Chrome, Edge, Safari) ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #222;
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #34a9c1;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

::selection {
    background: var(--color-primary);
    color: var(--color-text);
}

/* Base Styles */
body {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
}

h1 {
    font-size: 62px;
}

h2 {
    font-size: 42px;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.5s ease;
}

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

/* Lists */
ul,
ol {
    list-style: none;
}

/* Images */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Forms */
input,
button,
textarea,
select {
    font: inherit;
    border: none;
    outline: none;
    background: none;
    color: inherit;
}

/* Buttons */
button {
    cursor: pointer;
}

/* Tables */
table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

section {
    padding: 60px 0;
}

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

.header_main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-download {
    width: 100%;
    max-width: 150px;
    transition: all 0.3s ease;
}

.btn-download img {
    width: 100%;
}

.btn-download:hover {
    scale: 1.05;
    filter: brightness(1.3);
}

.hero_section {
    padding: 30px 0;
}

.hero_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 130px;
}

.hero_text {
    flex: 1;
}

.hero_text h1 {
    margin-bottom: 16px;
}

.hero_text h1 span {
    color: var(--color-primary);
}

.hero_text p {
    margin-bottom: 26px;
    color: var(--color-text);
    font-size: 20px;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

footer {
    background-color: #585858;
    padding: 50px 0;
}

.footer_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-left img {
    width: 40px;
    height: auto;
}

.ft_logo {
    width: fit-content;
    display: inline-block;
    padding-bottom: 28px;
}

.footer-text {
    font-size: 16px;
    padding-bottom: 12px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 16px;
    padding-bottom: 24px;
}

.footer-copy {
    font-size: 14px;
}

.footer-right {
    flex: 1;
    justify-content: flex-end;
}

.unlock_main {
    gap: 90px;
}

.unlock_main p {
    padding-top: 12px;
    padding-bottom: 42px;
}

.unlock_text {
    max-width: 500px;
    width: 100%;
}

.testimonials {
    background-color: #292929;
}

.testimonial_header {
    text-align: center;
    padding-bottom: 40px;
}

.testimonial_header .title {
    padding-bottom: 10px;
}

.testimonial_header .subtitle {
    color: #E5E7EB;
    font-size: 18px;
}

.testimonials .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Testimonial Card */
.testimonials .card {
    background: #374151;
    padding: 32px;
    border-bottom: 4px solid transparent;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    transition: all 0.2s ease;
    position: relative;
}

.testimonials .card:hover {
    background: #243d64;
    border-bottom-color: var(--color-primary);
    scale: 1.02;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.testimonials .card .quote {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.6;
    color: #E5E7EB;
}

.testimonials .card .quote::before {
    content: "“";
    font-size: 60px;
    color: #004CE8;
    position: absolute;
    left: 24px;
    top: 12px;
}

.testimonials .card .testimonial-author h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #E5E7EB;
}

.testimonial-author,
.testimonials .card .quote {
    padding-left: 32px;
}

.testimonials .card .testimonial-author span {
    font-size: 14px;
    color: #D1D5DB;
}

.feature_header {
    text-align: center;
    padding-bottom: 34px;
}

.feature-flex {
    display: flex;
    padding-bottom: 32px;
    align-items: stretch;
    gap: 26px;
    justify-content: space-between;
}

.feature-flex:last-child {
    padding-bottom: 0;
}

.feature-flex:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-card {
    background: #212121;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
    width: 100%;
    max-width: 768px;
    border-radius: 12px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.feature-card ul {
    list-style-type: disc;
    margin-left: 18px;
    color: #CECECE;
    line-height: 34px;
    font-size: 20px;
}

.img-card {
    display: flex;
}


.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 16px;
    row-gap: 70px;
    align-items: stretch;
    padding-top: 40px;
}

.step-card {
    border: 1px solid #CECECE;
    border-radius: 12px;
    padding: 80px 30px 30px 30px;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(0, 76, 232, 0.3);
    scale: 1.01;
}

.step-card:hover .step-number {
    box-shadow: 0 4px 10px rgba(0, 76, 232, 0.6);
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #004CE8;
    border: 1px solid var(--color-text);
    font-weight: 600;
    font-size: 24px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 102, 255, 0.4);
}

.step-content {
    text-align: center;
}

.step-content img {
    margin-bottom: 20px;
    display: flex;
    margin-inline: auto;
}

.step-content h3 {
    font-size: 24px;
    padding-bottom: 12px;
}

.step-content p {
    font-size: 18px;
    color: #CECECE;
    line-height: 29px;
}