body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    background: #f7f8fa;
    color: #222;
    line-height: 1.6;
}

/* HEADER */
.header {
    background: #ffffffee;
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

.container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo__icon {
    background: #1a73e8;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 20px;
}

.logo__text {
    font-size: 20px;
    font-weight: 600;
    margin-left: 10px;
}

.nav__link {
    margin-left: 22px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: 0.15s;
}

.nav__link:hover {
    color: #1a73e8;
}

.nav__link--accent {
    font-weight: 600;
    color: #1a73e8;
}

/* HERO */
.hero {
    padding: 80px 0 100px;
    background: #fff;
}

.hero__inner {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.hero__content {
    flex: 1 1 480px;
}

.hero__title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero__subtitle {
    color: #555;
    font-size: 18px;
    margin-bottom: 25px;
}

.hero__image img {
    width: 100%;
    border-radius: 12px;
}

/* BUTTON */
.btn {
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn--primary {
    background: #1a73e8;
    color: #fff;
}

.btn--primary:hover {
    background: #1558b0;
}

/* SECTIONS */
.section {
    padding: 80px 0;
}

.section--light {
    background: #f9fafc;
}

.section__title {
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
}

.section__subtitle {
    text-align: center;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* GRID */
.grid {
    display: grid;
    gap: 30px;
}

.grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 24px;
    border-radius: 10px;
    transition: 0.2s;
}

.card:hover {
    box-shadow: 0 6px 20px #00000010;
}

.card__img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* PRICING */
.price {
    font-size: 26px;
    font-weight: 700;
    margin: 10px 0 15px;
}

.center {
    text-align: center;
}

/* FAQ */
.faq__item {
    margin-bottom: 15px;
}

.faq__question {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    font-size: 17px;
    position: relative;
}

.faq__question::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 12px;
    font-size: 22px;
    transition: transform 0.3s ease;
}

.faq__item.active .faq__question::after {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #fff;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
    transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 400px;
    padding: 16px 20px;
}

/* FOOTER */
.footer {
    background: #111;
    color: #ccc;
    padding: 40px 0;
    text-align: center;
}
