/* Page-specific styles for marketing.html. Shared navbar/hero/cta/footer come from products.css. */

.hero h1 { max-width: 860px; }

.hero .hero-note {
    margin-top: 18px;
    font-family: "Roboto Mono", monospace;
    font-size: 12.5px;
    letter-spacing: .03em;
    color: rgba(255, 255, 255, 0.4);
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.9s ease forwards;
    animation-delay: 1s;
}

/* ── HONEST BOX (hero) ── */
.hero .truth {
    max-width: 640px;
    margin-top: 32px;
    padding: 18px 22px;
    border: 1px solid rgba(255, 214, 0, 0.5);
    border-radius: 14px;
    background: rgba(255, 214, 0, 0.06);
    display: flex;
    gap: 14px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.9s ease forwards;
    animation-delay: 0.7s;
}
.hero .truth svg { flex-shrink: 0; margin-top: 2px; }
.hero .truth p { font-size: 15px; line-height: 23px; color: rgba(255, 255, 255, 0.75); }
.hero .truth p strong { color: var(--accent, #FFD600); font-weight: 600; }

/* ── HOW (3 steps) ── */
.how .how-step.done {
    background: #1E1E1E;
    border-radius: 18px;
    padding: 28px;
    margin: -28px;
}
.how .how-step.done .num { color: var(--accent, #FFD600); }
.how .how-step.done h4 { color: #fff; }
.how .how-step.done p { color: rgba(255, 255, 255, 0.65); }
.how .how-step p strong { color: #1E1E1E; font-weight: 600; }

/* ── PLANS ── */
.plans {
    padding-top: 120px;
    padding-bottom: 60px;
}

.plans .head { max-width: 620px; margin-bottom: 56px; }
.plans h2 { font-size: 48px; line-height: 58px; font-weight: 500; margin-top: 6px; }
.plans .head p { margin-top: 16px; font-size: 17px; line-height: 26px; color: rgba(30, 30, 30, .62); }

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

.plan-card {
    background: #fff;
    border: 1px solid rgba(30, 30, 30, .1);
    border-radius: 18px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.plan-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px -30px rgba(30, 30, 30, .3);
    border-color: rgba(30, 30, 30, .25);
}

.plan-card.featured { background: #1E1E1E; border-color: #1E1E1E; }
.plan-card.featured * { color: #fff; }

.plan-card .ribbon {
    align-self: flex-start;
    margin-bottom: 16px;
    background: var(--accent, #FFD600);
    color: #1E1E1E !important;
    font-family: "Roboto Mono", monospace;
    font-size: 11px;
    letter-spacing: .05em;
    padding: 6px 12px;
    border-radius: 40px;
}

.plan-card .plan-for {
    font-family: "Roboto Mono", monospace;
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(30, 30, 30, .4);
    margin-bottom: 14px;
}
.plan-card.featured .plan-for { color: rgba(255, 255, 255, .45); }

.plan-card h3 { font-size: 26px; line-height: 32px; font-weight: 500; margin-bottom: 10px; }
.plan-card h3 .highlight { color: var(--accent, #FFD600); }
.plan-card .tagline { font-size: 15px; line-height: 23px; color: rgba(30, 30, 30, .62); margin-bottom: 26px; }
.plan-card.featured .tagline { color: rgba(255, 255, 255, .65); }

.plan-card .price { font-size: 36px; line-height: 40px; font-weight: 500; }
.plan-card .price span { font-size: 15px; font-weight: 400; color: rgba(30, 30, 30, .5); }
.plan-card.featured .price span { color: rgba(255, 255, 255, .5); }
.plan-card .price-note {
    margin-top: 8px;
    font-family: "Roboto Mono", monospace;
    font-size: 12px;
    line-height: 18px;
    color: rgba(30, 30, 30, .5);
    padding-bottom: 24px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(30, 30, 30, .1);
}
.plan-card.featured .price-note { color: rgba(255, 255, 255, .5); border-bottom-color: rgba(255, 255, 255, .15); }

.plan-card ul { list-style: none; flex: 1; margin-bottom: 28px; display: flex; flex-direction: column; gap: 11px; }
.plan-card li {
    font-size: 14.5px;
    line-height: 22px;
    color: rgba(30, 30, 30, .75);
    padding-left: 28px;
    position: relative;
}
.plan-card.featured li { color: rgba(255, 255, 255, .8); }
.plan-card li strong { font-weight: 600; color: #1E1E1E; }
.plan-card.featured li strong { color: #fff; }
.plan-card li::before {
    content: "";
    position: absolute;
    left: 0; top: 3px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--accent, #FFD600) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 8.3l2.3 2.3 4.7-5' stroke='%231E1E1E' stroke-width='1.7' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 16px no-repeat;
}

.plan-card .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
}
.plan-card .meta span {
    font-family: "Roboto Mono", monospace;
    font-size: 11.5px;
    letter-spacing: .03em;
    padding: 7px 12px;
    border-radius: 40px;
    border: 1px solid rgba(30, 30, 30, .18);
    color: rgba(30, 30, 30, .65);
}
.plan-card.featured .meta span { border-color: rgba(255, 255, 255, .25); color: rgba(255, 255, 255, .7); }

.plan-card a.btn-plan {
    align-self: flex-start;
    background-color: #1E1E1E;
    color: #fff;
    text-decoration: none;
    padding: 15px 26px;
    border-radius: 40px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.plan-card a.btn-plan::before {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 0%;
    background: var(--accent, #FFD600);
    z-index: -1;
    transition: height 0.3s ease;
}
.plan-card a.btn-plan:hover::before { height: 100%; }
.plan-card a.btn-plan:hover { color: #1E1E1E; }
.plan-card a.btn-plan:hover svg path { stroke: #1E1E1E; }
.plan-card.featured a.btn-plan { background: var(--accent, #FFD600); color: #1E1E1E; }
.plan-card.featured a.btn-plan::before { background: #fff; }
.plan-card.featured a.btn-plan svg path { stroke: #1E1E1E; }

.budget-note {
    margin-top: 20px;
    padding: 26px 30px;
    border: 1px dashed rgba(30, 30, 30, .3);
    border-radius: 18px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: flex-start;
}
.budget-note .icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: #F1F0EA;
    display: flex; align-items: center; justify-content: center;
}
.budget-note h4 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.budget-note p { font-size: 14.5px; line-height: 23px; color: rgba(30, 30, 30, .62); }

/* ── BUNDLE ── */
.bundle { padding-top: 40px; padding-bottom: 120px; }
.bundle .box {
    background: var(--accent, #FFD600);
    border-radius: 24px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
}
.bundle .caption { color: rgba(30, 30, 30, .5); }
.bundle h2 { font-size: 40px; line-height: 48px; font-weight: 500; margin-bottom: 14px; }
.bundle .box > div > p { font-size: 16px; line-height: 25px; color: rgba(30, 30, 30, .7); }
.bundle .price-box {
    background: #1E1E1E;
    border-radius: 18px;
    padding: 34px 30px;
    text-align: center;
}
.bundle .price-box .was { font-family: "Roboto Mono", monospace; font-size: 13px; color: rgba(255,255,255,.4); text-decoration: line-through; margin-bottom: 6px; }
.bundle .price-box .now { font-size: 44px; line-height: 48px; font-weight: 500; color: #fff; }
.bundle .price-box .now span { font-size: 15px; color: rgba(255,255,255,.5); }
.bundle .price-box .save { margin-top: 10px; font-family: "Roboto Mono", monospace; font-size: 11.5px; letter-spacing: .04em; color: var(--accent, #FFD600); }
.bundle .price-box a {
    margin-top: 24px;
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--accent, #FFD600);
    color: #1E1E1E;
    text-decoration: none;
    padding: 15px 26px;
    border-radius: 40px;
    font-size: 14px;
    transition: opacity 200ms ease, transform 200ms ease;
}
.bundle .price-box a:hover { opacity: .85; transform: translateY(-2px); }

/* ── COMPARE ── */
.compare { background: #1E1E1E; padding-top: 110px; padding-bottom: 110px; }
.compare .head { max-width: 620px; margin-bottom: 50px; }
.compare .caption { color: rgba(255,255,255,.4); }
.compare h2 { font-size: 48px; line-height: 58px; font-weight: 500; margin-top: 6px; color: #fff; }
.compare h2 .highlight { color: var(--accent, #FFD600); }
.compare .head p { margin-top: 16px; font-size: 17px; line-height: 26px; color: rgba(255,255,255,.6); }

.compare-wrap { overflow-x: auto; }
.compare table { width: 100%; min-width: 720px; border-collapse: collapse; }
.compare th, .compare td {
    text-align: left;
    padding: 18px 16px;
    vertical-align: top;
    font-size: 14.5px;
    line-height: 22px;
    color: rgba(255,255,255,.75);
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.compare th {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    padding-top: 0;
}
.compare th:first-child, .compare td:first-child {
    font-family: "Roboto Mono", monospace;
    font-size: 12px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    white-space: nowrap;
    padding-left: 0;
}
.compare td strong { color: #fff; font-weight: 600; }
.compare tr:last-child td { border-bottom: none; }
.compare .pill {
    display: inline-block;
    font-family: "Roboto Mono", monospace;
    font-size: 11.5px;
    padding: 5px 10px;
    border-radius: 40px;
    background: var(--accent, #FFD600);
    color: #1E1E1E;
}
.compare .pill.slow { background: rgba(255,255,255,.15); color: #fff; }

/* ── HONEST ── */
.honest { padding-top: 120px; padding-bottom: 60px; }
.honest .head { max-width: 620px; margin-bottom: 50px; }
.honest h2 { font-size: 48px; line-height: 58px; font-weight: 500; margin-top: 6px; }
.honest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.honest-card {
    background: #fff;
    border: 1px solid rgba(30, 30, 30, .1);
    border-radius: 18px;
    padding: 34px;
}
.honest-card h3 {
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 22px;
    color: rgba(30, 30, 30, .5);
}
.honest-card ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.honest-card li { font-size: 15px; line-height: 23px; color: rgba(30, 30, 30, .75); padding-left: 30px; position: relative; }
.honest-card li::before {
    content: "";
    position: absolute; left: 0; top: 4px;
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--accent, #FFD600) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 8.3l2.3 2.3 4.7-5' stroke='%231E1E1E' stroke-width='1.7' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 16px no-repeat;
}
.honest-card.no li::before {
    background: #1E1E1E url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M5.5 5.5l5 5M10.5 5.5l-5 5' stroke='%23FFD600' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E") center / 16px no-repeat;
}

/* ── FAQ ── */
.faq { padding-top: 60px; padding-bottom: 40px; }
.faq .container { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.faq h2 { font-size: 48px; line-height: 58px; font-weight: 500; margin-top: 6px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { padding: 26px 0; border-top: 1px solid rgba(30, 30, 30, .12); }
.faq-item:last-child { border-bottom: 1px solid rgba(30, 30, 30, .12); }
.faq-item h4 { font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.faq-item p { font-size: 15px; line-height: 24px; color: rgba(30, 30, 30, .62); }

/* ── CTA overrides ── */
.cta .cta-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta .cta-row a.btn-cta { margin-bottom: 0; }
.cta .cta-row a.btn-ghost {
    text-decoration: none;
    border: 1px solid #1E1E1E;
    padding: 18px 30px;
    border-radius: 30px;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: background 200ms ease;
}
.cta .cta-row a.btn-ghost:hover { background: #fff; }
.cta { padding-bottom: 130px; }

/* ── RESPONSIVE ── */
@media screen and (max-width: 1100px) {
    .plan-grid { grid-template-columns: 1fr; max-width: 640px; }
}

@media screen and (max-width: 980px) {
    .bundle .box { grid-template-columns: 1fr; padding: 36px; }
    .honest-grid { grid-template-columns: 1fr; }
    .faq .container { grid-template-columns: 1fr; gap: 30px; }
    .plans h2, .compare h2, .honest h2, .faq h2, .bundle h2 { font-size: 36px; line-height: 44px; }
    .how .how-step.done { margin: 0; }
}

@media screen and (max-width: 768px) {
    .plans h2, .compare h2, .honest h2, .faq h2 { font-size: 32px; line-height: 40px; }
    .bundle h2 { font-size: 30px; line-height: 38px; }
    .plan-card { padding: 28px 24px; }
    .plan-card h3 { font-size: 26px; line-height: 32px; }
    .budget-note { grid-template-columns: 1fr; padding: 24px; }
    .bundle .box { padding: 28px 22px; }
    .cta .cta-row { flex-direction: column; align-items: stretch; }
    .cta .cta-row a { justify-content: center; }
}
