/* ===== anty.marketing — Deep Navy ===== */

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

:root {
    --color-bg: #050810;
    --color-surface: #0d1220;
    --color-border: rgba(136, 146, 176, 0.12);
    --color-text: #f0f4ff;
    --color-text-muted: #8892b0;
    --color-accent: #00e5cc;
    --color-accent-hover: #33edd8;
    --color-accent-glow: rgba(0, 229, 204, 0.15);
    --color-cta: #ff4d00;
    --color-cta-hover: #ff6a2a;
    --color-cta-glow: rgba(255, 77, 0, 0.2);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --max-width: 760px;
    --section-padding: 100px 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 8, 16, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header__logo-img {
    height: 18px;
    width: auto;
}

.header__cta {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-cta);
    text-decoration: none;
    transition: color 0.2s;
}

.header__cta:hover {
    color: var(--color-cta-hover);
}

/* ===== HERO ===== */
.hero {
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.hero__icon {
    width: 56px;
    height: auto;
    margin-bottom: 24px;
    position: relative;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6.5vw, 4rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    position: relative;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 540px;
    margin: 0 auto 16px;
    line-height: 1.7;
}

.hero__proof {
    font-size: 0.88rem;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 44px;
    letter-spacing: 0.02em;
}

.hero__micro {
    margin-top: 14px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
}

.btn--primary {
    background: linear-gradient(135deg, #ff4d00 0%, #ff8c00 50%, #ffb347 100%);
    color: #fff;
    padding: 16px 48px;
    border-radius: 100px;
    box-shadow: 0 0 30px rgba(255, 77, 0, 0.45), 0 0 80px rgba(255, 140, 0, 0.25), 0 0 120px rgba(255, 179, 71, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.btn__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn--primary:hover {
    background: linear-gradient(135deg, #e64500 0%, #ff7b00 50%, #ffa533 100%);
    box-shadow: 0 0 40px rgba(255, 77, 0, 0.55), 0 0 100px rgba(255, 140, 0, 0.35), 0 0 160px rgba(255, 179, 71, 0.15);
    transform: translateY(-2px);
}

/* ===== SOCIAL PROOF BAND ===== */
.proof-band {
    padding: 48px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.proof-band__inner {
    text-align: center;
}

.proof-band__top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.proof-band__stars {
    font-size: 1rem;
    color: var(--color-accent);
    letter-spacing: 2px;
}

.proof-band__text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
}

.proof-band__marquee {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.proof-band__track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.proof-band__logo {
    height: 28px;
    width: auto;
    opacity: 0.45;
    filter: grayscale(100%) brightness(1.8);
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section {
    padding: var(--section-padding);
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 44px;
    line-height: 1.2;
}

.section__subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-top: -28px;
    margin-bottom: 48px;
}

.section__micro {
    margin-top: 44px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.section--promise,
.section--faq {
    background: var(--color-surface);
}

.section--faq {
    padding: 48px 0;
}

/* ===== PROBLEM ===== */
.problem__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.problem__list li {
    position: relative;
    padding-left: 28px;
    font-size: 1.05rem;
    color: var(--color-text-muted);
}

.problem__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff4d4d;
    box-shadow: 0 0 8px rgba(255, 77, 77, 0.4);
}

/* ===== CARDS ===== */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    padding: 32px 24px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.card:hover {
    border-color: rgba(0, 229, 204, 0.3);
    box-shadow: 0 0 30px var(--color-accent-glow);
}

.card__number {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    display: block;
    margin-bottom: 14px;
    letter-spacing: 0.05em;
}

.card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.card__text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ===== STEPS ===== */
.steps {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

.step__number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 229, 204, 0.1);
    border: 1px solid rgba(0, 229, 204, 0.2);
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}

.step__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.step__text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* ===== AUDIENCE ===== */
.audience__text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.audience__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    font-size: 0.82rem;
    padding: 7px 18px;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.02);
}

/* ===== FAQ ===== */
.faq {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.faq__question {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.faq__answer {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* ===== FORM ===== */
.section--form {
    background: var(--color-surface);
    padding: 48px 0;
}

.section--form .section__title,
.section--form .section__subtitle {
    text-align: center;
}

.form {
    max-width: 560px;
    margin: 0 auto;
}

.form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form__group--full {
    margin-bottom: 16px;
}

.form__label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.form__input {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    color: var(--color-text);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form__input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 12px var(--color-accent-glow);
}

.form__textarea {
    resize: vertical;
    min-height: 80px;
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238892b0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    cursor: pointer;
    line-height: 1.5;
}

.form__checkbox input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--color-accent);
}

.btn--submit {
    width: 100%;
    margin-top: 8px;
    padding: 16px;
    font-size: 1.05rem;
    border-radius: 100px;
    justify-content: center;
}

.form__micro {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 12px;
}

/* ===== THANK YOU ===== */
.section--thankyou {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thankyou {
    text-align: center;
}

.thankyou .section__title {
    margin-bottom: 16px;
}

.thankyou__text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.thankyou__alt {
    margin-top: 24px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid var(--color-border);
    padding: 24px 0;
}

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

.footer__logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
}

.footer__copy {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}


/* ===== PRICING ===== */
.section--pricing {
    background: var(--color-surface);
}

.section--pricing .section__title {
    text-align: center;
}

.pricing__intro {
    text-align: center;
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 520px;
    margin: -28px auto 48px;
    line-height: 1.7;
}

.pricing__intro strong {
    color: var(--color-text);
}

.pricing__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.pricing__card {
    padding: 36px 28px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
}

.pricing__card--highlight {
    border-color: rgba(0, 229, 204, 0.3);
    box-shadow: 0 0 30px rgba(0, 229, 204, 0.08);
}

.pricing__label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 8px;
}

.pricing__price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}

.pricing__vat {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.pricing__name {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.pricing__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing__list li {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    padding-left: 20px;
    position: relative;
}

.pricing__list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.85rem;
}

.pricing__note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.pricing__tagline {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: -0.01em;
    margin-bottom: 36px;
}

.pricing__cta {
    text-align: center;
}

/* ===== SECTION SPACING FIXES ===== */
.section--steps { padding-bottom: 40px; }
.section--audience { padding-top: 40px; }

/* ===== PROOF ===== */
.section--proof {
    padding-bottom: 48px;
    background: var(--color-surface);
    text-align: center;
}

.proof__text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 480px;
    margin: 0 auto 12px;
}

.proof__model {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.02em;
    margin: 20px auto;
}

.section--proof .section__title {
    text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
    :root { --section-padding: 68px 0; }
    .hero { padding: 100px 0 68px; }
    .cards { grid-template-columns: 1fr; }
    .form__grid { grid-template-columns: 1fr; }
    .pricing__cards { grid-template-columns: 1fr; }
}

.thankyou__redirect {
    margin-top: 32px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.form__link {
    color: var(--color-accent);
    text-decoration: underline;
}

.form__link:hover {
    color: var(--color-accent-hover);
}
