/* ADS-Free. Main styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #000;
    background: linear-gradient(180deg, #f6a23c, #f3a03a);
}

/* container */
.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav a {
    margin-left: 15px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

/* hero */
.hero {
    text-align: center;
    margin: 5px 0;
}

.hero h1 {
    font-size: 36px;
}

.hero p {
    font-size: 18px;
    opacity: 0.8;
}

/* button */
.btn {
    background: #3bb54a;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    font-weight: bold;
}

/* cards */
.card {
    background: #fff;
    border-radius: 38px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature {
    background: rgba(255,255,255,0.7);
    padding: 15px;
    border-radius: 20px;
    text-align: center;
}

/* ===== ROADMAP ===== */

.roadmap-wrapper {
    padding: 30px;
}

.timeline {
    position: relative;
    margin-top: 20px;
    padding-left: 40px;
}

/* green line */
.timeline::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #3bb54a, rgba(59,181,74,0.2));
    box-shadow: 0 0 10px rgba(59,181,74,0.4);
    border-radius: 10px;
}

.step {
    position: relative;
    margin-bottom: 25px;
    padding-left: 20px;
    transition: transform 0.3s ease;
}

.step.unlocked:hover {
    transform: translateX(8px);
}

.dot {
    position: absolute;
    left: -28px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

/* content */
.content {
    background: rgba(255,255,255,0.75);
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    backdrop-filter: blur(6px);
}

/* unlocked */
.step.unlocked .dot {
    background: #3bb54a;
    box-shadow: 0 0 12px rgba(59,181,74,0.8);
}

/* locked */
.step.locked .dot {
    background: transparent;
    border: 2px dashed rgba(59,181,74,0.5);
}

.step.locked .content {
    opacity: 0.55;
}


/* Remove underlines and change color for all links */
a,
a:hover,
a:visited,
a:active {
  text-decoration: none;
  color: black;
}


/* Browsers banner */

.browser-banner.horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: white;
    border-radius: 38px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.browser-banner.horizontal img {
    width: 280px;
}

.browser-banner.horizontal .banner-text {
    flex: 1;
    text-align: left;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .browser-banner.horizontal {
        flex-direction: column;
        text-align: center;
    }

    .browser-banner.horizontal .banner-text {
        text-align: center;
    }
}
/******************************/
/* FAQ */

.faq {
    margin-top: 30px;
}

.faq-item {
	overflow: hidden;
    position: relative;
	border-radius: 38px;
    background: white;
    padding: 20px 24px;
    margin-bottom: 18px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow:
        0 12px 30px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.6);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

/* glossy highlight */
.faq-item::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -20%;
    width: 140%;
    height: 120%;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.55),
        transparent 40%
    );
    pointer-events: none;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 45px rgba(0,0,0,0.12),
        0 0 25px rgba(59,181,74,0.18),
        inset 0 1px 0 rgba(255,255,255,0.8);
}

.faq-question {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.faq-answer {
    color: rgba(0,0,0,0.65);
    line-height: 1.6;
    font-size: 1.1rem;
}

/******************************/
/* Footer */
.footer {
    text-align: center;
    margin-top: 50px;
    font-size: 14px;
}

.footer a {
    color: black;
    font-weight: bold;
    text-decoration: none;
    margin: 0 5px;
}

/******************************/
/* Types */
h2 {
   text-align: center;
}
