/* IDE Law — modern blue-white landing (alamylaw-inspired) */
:root {
    --bg: #eef4fb;
    --paper: #ffffff;
    --ink: #0c2340;
    --muted: #5a7a9a;
    --line: #c8d9ec;
    --blue: #1e6fd9;
    --blue-dark: #0a3d7a;
    --blue-light: #e8f2fc;
    --gold: #c9a227;
    --maxw: 1280px;
    --pad: clamp(18px, 4vw, 48px);
    --serif: 'DM Serif Display', Georgia, serif;
    --mono: 'Inter', -apple-system, sans-serif;
    --sans: 'Inter', -apple-system, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.label { font-family: var(--mono); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 12px; }
.label--light { color: rgba(255,255,255,.55); }
.link-underline { font-family: var(--mono); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; border-bottom: 1px solid var(--ink); padding-bottom: 3px; display: inline-block; transition: .2s; }
.link-underline:hover { color: var(--blue); border-color: var(--blue); }
.link-light { color: #9ec8f5; text-decoration: underline; text-underline-offset: 3px; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes fadeInUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 8px rgba(30,111,217,.4); }
    50% { box-shadow: 0 0 20px rgba(30,111,217,.7); }
}

/* announce */
.announce {
    background: var(--blue-dark);
    color: #dce9f8;
    text-align: center;
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 9px 16px;
}
.announce a { text-decoration: underline; text-underline-offset: 3px; color: #fff; }

/* header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 20px;
    height: 80px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { height: 58px; width: auto; }
.brand__text { display: none; }
.top-nav { display: flex; gap: clamp(12px, 2vw, 28px); justify-content: center; flex-wrap: wrap; }
.top-nav__link {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    position: relative;
    padding: 4px 0;
    white-space: nowrap;
    transition: color .2s;
}
.top-nav__link::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--blue);
    transition: width .3s;
}
.top-nav__link:hover, .top-nav__link.active { color: var(--ink); }
.top-nav__link:hover::after { width: 100%; }
.burger { display: none; font-size: 20px; color: var(--ink); }
.navback { position: fixed; inset: 0; background: rgba(12,35,64,.35); z-index: 55; opacity: 0; visibility: hidden; transition: .3s; }
.navback.open { opacity: 1; visibility: visible; }

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    font-family: var(--mono);
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 16px 28px;
    background: var(--blue);
    color: #fff;
    border: 1px solid var(--blue);
    transition: .25s;
    cursor: pointer;
}
.btn:hover:not(:disabled) { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn:disabled { opacity: .55; cursor: not-allowed; }
.btn--sm { width: auto; padding: 12px 22px; font-size: 12px; }
.btn--ghost { width: auto; background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--ghost:hover { background: var(--blue); color: #fff; }

/* hero */
.hero {
    padding: clamp(40px, 6vw, 80px) 0;
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--paper) 55%, var(--bg) 100%);
}
.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(30px, 5vw, 64px);
    align-items: start;
}
.hero__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -.01em;
    margin-bottom: 18px;
    color: var(--ink);
}
.hero__lead { color: var(--muted); font-size: 17px; max-width: 52ch; margin-bottom: 20px; }
.hero__fraud-btn { margin-bottom: 24px; }
.trust-pills { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.trust-pill {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 16px 18px;
    border-radius: 2px;
}
.trust-pill i { color: var(--blue); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.trust-pill strong { display: block; font-size: 14px; margin-bottom: 3px; }
.trust-pill span { font-size: 13px; color: var(--muted); line-height: 1.45; }
.hero__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.hero__note { font-size: 14px; color: var(--muted); max-width: 48ch; line-height: 1.55; }

/* marquee */
.marquee {
    background: var(--blue-dark);
    color: #c8ddf5;
    overflow: hidden;
    white-space: nowrap;
    padding: 13px 0;
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.marquee__t { display: inline-block; animation: scroll 28s linear infinite; }
.marquee__t span { margin: 0 20px; }

/* sections */
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section--alt { background: var(--paper); }
.section--dark { background: var(--ink); color: #e8f2fc; }
.sec-head { text-align: center; max-width: 62ch; margin: 0 auto clamp(36px, 5vw, 56px); }
.sec-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 4vw, 44px); line-height: 1.1; margin-bottom: 14px; }
.sec-head p { color: var(--muted); font-size: 16px; }
.sec-head--light h2 { color: #fff; }
.sec-head--light p { color: rgba(255,255,255,.65); }

/* split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; background: var(--blue-light); }
.split__media--sm { margin: 0; }
.split__media--sm img {
    width: 100%;
    height: clamp(260px, 32vw, 380px);
    aspect-ratio: unset;
    object-fit: cover;
    object-position: center 15%;
    border-radius: 2px;
}
.split--about { align-items: center; }
.about-quote {
    font-family: var(--serif);
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.35;
    color: var(--ink);
    border-left: 3px solid var(--blue);
    padding-left: 24px;
    margin-bottom: 20px;
}
.person-card { font-size: 15px; color: var(--muted); }

/* steps / expertise */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 36px); }
.step { text-align: center; padding: 32px 24px; background: var(--paper); border: 1px solid var(--line); }
.step i { font-size: 28px; color: var(--blue); margin-bottom: 16px; display: block; }
.step h3 { font-family: var(--serif); font-size: 20px; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--muted); }

/* fraud slider */
.fraud-slider { position: relative; padding-bottom: 48px; overflow: visible; }
.fraud-slider .swiper-slide { height: auto; display: flex; width: min(520px, 90vw); }
.fraud-card {
    background: var(--paper);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 220px;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
}
.fraud-card:hover { border-color: var(--blue); box-shadow: 0 8px 32px rgba(30,111,217,.1); }
.fraud-card--featured { border-color: var(--blue); }
.fraud-card__visual {
    position: relative;
    width: 210px;
    flex-shrink: 0;
    overflow: hidden;
}
.fraud-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.fraud-card__visual::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 48px;
    background: linear-gradient(to right, rgba(255,255,255,0), var(--paper));
    pointer-events: none;
}
.fraud-card__body {
    flex: 1;
    padding: 22px 20px 22px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}
.fraud-card__cat { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.fraud-card h3 { font-family: var(--serif); font-size: 18px; line-height: 1.2; color: var(--blue); }
.fraud-card p { font-size: 13px; color: var(--muted); line-height: 1.55; flex-grow: 1; }

/* swiper pagination dots */
.fraud-pagination,
.reviews-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.fraud-pagination .swiper-pagination-bullet,
.reviews-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--line);
    opacity: 1;
    margin: 0 !important;
    transition: transform .25s, background .25s;
}
.fraud-pagination .swiper-pagination-bullet-active {
    background: var(--blue);
    transform: scale(1.25);
}
.reviews-pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,.25);
}
.reviews-pagination .swiper-pagination-bullet-active {
    background: #9ec8f5;
    transform: scale(1.25);
}

/* stages chain */
.stages-chain {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    padding-top: 10px;
}
.stages-chain::before {
    content: '';
    position: absolute;
    top: 72px;
    left: 14%;
    right: 14%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.25) 8%, rgba(255,255,255,.25) 92%, transparent);
    z-index: 0;
}
.stage-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 18px;
}
.stage-step__num {
    font-family: var(--serif);
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1;
    color: rgba(255,255,255,.12);
    margin-bottom: 4px;
    user-select: none;
}
.stage-step__dot {
    width: 14px;
    height: 14px;
    background: var(--blue);
    border: 3px solid var(--ink);
    border-radius: 50%;
    margin: 0 auto 22px;
    box-shadow: 0 0 0 4px rgba(30,111,217,.25);
}
.stage-step__cat {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}
.stage-step h3 {
    font-family: var(--serif);
    font-size: 18px;
    color: #9ec8f5;
    margin-bottom: 12px;
    line-height: 1.2;
}
.stage-step p {
    font-size: 14px;
    color: rgba(255,255,255,.7);
    line-height: 1.6;
    text-align: left;
}

/* benefits grid — equal height */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2.5vw, 24px);
    align-items: stretch;
}
.benefit-card {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.benefit-card h3 { font-family: var(--serif); font-size: 22px; margin-bottom: 14px; }
.benefit-card p { font-size: 15px; color: var(--muted); line-height: 1.65; flex-grow: 1; }

/* case analysis */
.case-analysis-content { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(30px, 5vw, 56px); align-items: start; }
.case-analysis-text h3 { font-family: var(--serif); font-size: clamp(24px, 3vw, 34px); margin-bottom: 16px; line-height: 1.15; }
.case-analysis-text > p { color: rgba(255,255,255,.7); margin-bottom: 24px; font-size: 15px; }
.case-bullets { display: flex; flex-direction: column; gap: 18px; }
.case-bullets li { display: flex; gap: 14px; align-items: flex-start; }
.case-bullets i { color: var(--gold); margin-top: 4px; flex-shrink: 0; width: 18px; text-align: center; font-size: 16px; }
.case-bullets li > div { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.case-bullets strong { display: block; font-size: 15px; color: #fff; line-height: 1.3; }
.case-bullets span { display: block; font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.55; }

/* cta */
.cta-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.cta-image-wrapper { background: var(--blue-light); border: 1px solid var(--line); overflow: hidden; }
.cta-image-wrapper img { width: 100%; display: block; }
.view-document-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding: 14px 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: .2s;
}
.view-document-btn:hover { border-color: var(--blue); color: var(--blue); }
.cta-content h2 { font-family: var(--serif); font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 16px; line-height: 1.1; }
.cta-content > p { color: var(--muted); margin-bottom: 14px; font-size: 15px; line-height: 1.65; }
.cta-form-title { font-family: var(--mono); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }

/* video reviews */
.video-reviews-block { margin-bottom: clamp(40px, 6vw, 64px); }
.video-reviews-block__title {
    font-family: var(--serif);
    font-size: clamp(22px, 3vw, 30px);
    color: #fff;
    text-align: center;
    margin-bottom: 28px;
}
.video-reviews-slider { position: relative; padding-bottom: 44px; }
.video-reviews-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.video-reviews-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,.25);
    opacity: 1;
    margin: 0 !important;
    transition: transform .25s, background .25s;
}
.video-reviews-pagination .swiper-pagination-bullet-active {
    background: #9ec8f5;
    transform: scale(1.25);
}
.video-review-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    overflow: hidden;
    height: 100%;
}
.video-review-card__player {
    width: 100%;
    display: block;
    aspect-ratio: 9 / 16;
    max-height: 420px;
    object-fit: cover;
    background: #000;
}
.video-review-card__caption {
    padding: 14px 16px 16px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    text-align: center;
}

/* reviews */
.reviews-slider { position: relative; padding-bottom: 48px; }
.review-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.review-card--text { padding: 28px 26px; min-height: 300px; }
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.review-text {
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255,255,255,.88);
    flex-grow: 1;
    margin-bottom: 22px;
}
.review-content { padding: 0; margin-top: auto; border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; }
.review-content h3 { font-family: var(--serif); font-size: 18px; margin-bottom: 6px; color: #fff; }
.review-summary { font-family: var(--mono); font-size: 13px; color: var(--gold); letter-spacing: .04em; text-transform: uppercase; }

/* faq */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    cursor: pointer;
}
.faq-question h4 { font-size: 16px; font-weight: 600; line-height: 1.4; }
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute; top: 50%; left: 0;
    width: 100%; height: 2px;
    background: var(--blue);
    transition: transform .3s;
}
.faq-icon::before { transform: rotate(90deg); }
.faq-item.active .faq-icon::before { transform: rotate(0); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer p { color: var(--muted); font-size: 15px; line-height: 1.7; padding-bottom: 22px; }
.faq-item.active .faq-answer { max-height: 400px; }

/* forms */
.hero-form-wrapper, .case-analysis-form-wrapper {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: clamp(24px, 4vw, 36px);
    box-shadow: 0 12px 48px rgba(30,111,217,.08);
}
.hero-form .form-title, .case-analysis-form .form-title {
    font-family: var(--serif);
    font-size: clamp(20px, 2.5vw, 26px);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 8px;
    color: var(--ink);
    text-align: left;
}
.form-subtitle { font-size: 14px; color: var(--muted); margin-bottom: 24px; text-align: left; }
.form-group { position: relative; margin-bottom: 28px; }
.form-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    padding: 10px 0;
    font-size: 15px;
    color: var(--ink);
    outline: none;
    transition: border-color .2s;
}
.form-group input:focus { border-color: var(--blue); }
.form-group label {
    position: absolute; top: 10px; left: 0;
    color: var(--muted);
    font-size: 14px;
    pointer-events: none;
    transition: all .25s;
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: -14px; font-size: 11px; color: var(--blue);
    font-family: var(--mono); letter-spacing: .08em; text-transform: uppercase;
}
.form-disclaimer { font-size: 11px; color: var(--muted); margin-top: 14px; text-align: center; line-height: 1.5; }
.form-disclaimer a { color: var(--blue); text-decoration: underline; }

/* light form (cta) */
.cta-form { margin-top: 28px; padding: 28px; background: var(--blue-light); border: 1px solid var(--line); }
.form-group--light input { background: var(--paper); border: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 14px 16px; border-radius: 0; }
.form-group--light label { left: 16px; top: 14px; }
.form-group--light input:focus + label,
.form-group--light input:not(:placeholder-shown) + label { left: 16px; top: -12px; background: var(--paper); padding: 0 4px; }

/* dark section forms */
.section--dark .hero-form-wrapper,
.section--dark .case-analysis-form-wrapper {
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.12);
    box-shadow: none;
}
.section--dark .hero-form .form-title,
.section--dark .case-analysis-form .form-title { color: #fff; }
.section--dark .form-subtitle { color: rgba(255,255,255,.6); }
.section--dark .form-group input {
    color: #fff;
    border-color: rgba(255,255,255,.25);
    background: transparent;
}
.section--dark .form-group label { color: rgba(255,255,255,.5); }
.section--dark .form-group input:focus + label,
.section--dark .form-group input:not(:placeholder-shown) + label { color: #9ec8f5; }
.section--dark .form-disclaimer { color: rgba(255,255,255,.45); }
.section--dark #case_number { padding: 14px 16px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.05); color: #fff; width: 100%; font-size: 15px; outline: none; }
.section--dark #case_number::placeholder { color: rgba(255,255,255,.35); }
.section--dark #case_number:focus { border-color: var(--blue); }

/* intl tel — base overrides (details in iti-theme.css) */
.iti { width: 100%; }
.form-group input.phone + label { display: none !important; }

/* swiper */
.swiper-wrapper { align-items: stretch; }
.swiper-slide { height: auto; display: flex; }
.fraud-card, .review-card { width: 100%; flex-grow: 1; }
.reviews-slider .swiper-slide { height: auto; }

/* footer */
.site-footer {
    background: var(--ink);
    color: #c8ddf5;
    padding: clamp(56px, 8vw, 80px) 0 32px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer__logo { height: 56px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .9; }
.footer__brand h4 { font-family: var(--serif); font-size: 20px; color: #fff; margin-bottom: 12px; }
.footer__brand > p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.65; max-width: 36ch; margin-bottom: 20px; }
.footer__meta p { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 8px; display: flex; gap: 10px; align-items: flex-start; }
.footer__meta a { color: #9ec8f5; }
.footer__meta i { color: var(--blue); margin-top: 2px; width: 16px; }
.site-footer h5 { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 18px; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a { font-size: 14px; color: rgba(255,255,255,.75); transition: color .2s; }
.site-footer ul a:hover { color: #fff; }
.footer-social { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.footer-social a { font-size: 14px; display: flex; gap: 10px; align-items: center; color: rgba(255,255,255,.75); }
.footer-social a:hover { color: #fff; }
.footer__reviews-link { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; color: var(--gold); text-transform: uppercase; }
.footer-map { border-radius: 4px; overflow: hidden; margin-bottom: 32px; border: 1px solid rgba(255,255,255,.1); }
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-family: var(--mono);
    font-size: 13px;
    color: rgba(255,255,255,.4);
}
.socials { display: flex; gap: 18px; font-size: 16px; }
.socials a { color: rgba(255,255,255,.5); transition: color .2s; }
.socials a:hover { color: #fff; }

/* modal */
.form-modal {
    position: fixed; inset: 0; z-index: 9999;
    display: none; align-items: flex-start; justify-content: center;
    padding: 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.form-modal.show { display: flex; }
.form-modal__overlay { position: fixed; inset: 0; background: rgba(12,35,64,.6); backdrop-filter: blur(4px); }
.form-modal__content {
    position: relative; z-index: 1;
    background: var(--paper);
    padding: 32px 28px;
    max-width: 480px; width: 100%;
    border: 1px solid var(--line);
    box-shadow: 0 20px 60px rgba(12,35,64,.2);
    animation: fadeInUp .3s ease forwards;
    margin: auto 0;
}
.form-modal__close { position: absolute; top: 12px; right: 16px; font-size: 26px; color: var(--muted); z-index: 2; }
.form-modal .form-title, .form-modal .form-subtitle { text-align: center; }
.modal-form-group { margin-bottom: 22px; }
.modal-form-group input {
    width: 100%; background: transparent;
    border: none; border-bottom: 1px solid var(--line);
    padding: 10px 0; font-size: 15px; color: var(--ink); outline: none;
}
.modal-form-group input:focus { border-color: var(--blue); }
.promo-modal__title { font-size: 18px; font-weight: 700; color: var(--blue); text-transform: uppercase; line-height: 1.35; margin-bottom: 12px; display: flex; align-items: flex-start; justify-content: center; gap: 10px; text-align: left; }
.promo-modal__title i { color: #e67e22; font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.promo-modal__subtitle { text-align: left; font-size: 14px; line-height: 1.5; color: var(--ink); }
.promo-modal__subtitle p + p { margin-top: 10px; }
.promo-modal__warning { color: #c0392b; font-weight: 600; display: flex; align-items: flex-start; gap: 8px; }
.promo-modal__warning i { flex-shrink: 0; margin-top: 2px; }
.promo-spots { background: var(--ink); color: #fff; border-radius: 4px; padding: 12px; margin-top: 14px; text-align: center; font-size: 14px; }
.promo-spots strong { color: var(--gold); font-size: 18px; }

/* mobile cta + badge */
.floating-cta-btn { display: none; }
.badge-container { position: fixed; bottom: 56px; right: 24px; z-index: 1000; }
#close-reviews-badge { display: none; }
.review-badge {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 28px rgba(12,35,64,.14);
    width: 188px;
    text-align: center;
    text-decoration: none;
    color: var(--ink);
    display: block;
    transition: transform .2s;
    padding: 14px 0 0;
    overflow: hidden;
}
.review-badge:hover { transform: translateY(-4px); }
.badge-logo { margin: 0 auto 12px; width: 128px; height: auto; display: block; }
.excellent { font-weight: 700; font-size: 15px; margin: 0 0 4px; padding: 0 12px; }
.stars { color: #ffb400; font-size: 18px; letter-spacing: 2px; margin: 0 0 6px; padding: 0 12px; }
.company-name { font-size: 10px; color: var(--muted); margin: 0 0 10px; padding: 0 12px; line-height: 1.35; }
.reviews-count {
    background: var(--blue);
    color: #fff;
    padding: 12px 10px;
    font-size: 12px;
    font-weight: 700;
    margin: 0;
    width: 100%;
    border-radius: 0 0 8px 8px;
    box-sizing: border-box;
}
.show-reviews-badge, .mobile-cta-dock { display: none; }

/* responsive */
@media (max-width: 1100px) {
    .hero__grid, .split, .cta-grid, .case-analysis-content { grid-template-columns: 1fr; }
    .stages-chain { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
    .stages-chain::before { display: none; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .split__media--sm img { height: 300px; }
}
@media (max-width: 860px) {
    .header__inner { grid-template-columns: auto 1fr auto; }
    .header__cta { display: none; }
    .burger { display: block; }
    .top-nav {
        display: flex;
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: var(--paper);
        flex-direction: column;
        padding: 20px var(--pad) 28px;
        gap: 4px;
        border-bottom: 1px solid var(--line);
        transform: translateY(-110%);
        opacity: 0;
        visibility: hidden;
        transition: .35s;
        z-index: 58;
        box-shadow: 0 12px 32px rgba(12,35,64,.1);
    }
    .top-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .top-nav__link { font-size: 13px; padding: 12px 0; border-bottom: 1px solid var(--line); width: 100%; }
    .stages-chain { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .fraud-card { flex-direction: column; min-height: 0; }
    .fraud-card__visual { width: 100%; height: 180px; }
    .fraud-card__visual::after {
        top: auto; left: 0; right: 0; bottom: 0;
        width: 100%; height: 56px;
        background: linear-gradient(to bottom, rgba(255,255,255,0), var(--paper));
    }
    .fraud-card__body { padding: 16px 20px 22px; }
    .footer__grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .badge-container { display: none; }
    .mobile-cta-dock {
        display: flex;
        justify-content: stretch;
        align-items: center;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        padding: 10px 14px;
        z-index: 1001;
        background: rgba(255,255,255,.97);
        border-top: 1px solid var(--line);
        backdrop-filter: blur(8px);
    }
    .floating-cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        background: var(--blue);
        color: #fff;
        padding: 14px 20px;
        border-radius: 28px;
        font-family: var(--mono);
        font-size: 12px;
        letter-spacing: .08em;
        text-transform: uppercase;
        font-weight: 600;
        animation: pulse-glow 2s infinite;
        text-decoration: none;
    }
    body { padding-bottom: 72px; }
}

/* inner pages compat */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.main-nav { display: flex; justify-content: space-between; align-items: center; }
.nav-menu { display: flex; list-style: none; gap: 32px; }
.nav-menu a { color: var(--ink); font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.burger-menu { display: none; }
.page-content-section { padding: 60px 0; background: var(--paper); color: var(--ink); line-height: 1.8; }
.page-content-section h2 { font-family: var(--serif); font-size: 2rem; margin-bottom: 24px; }
.page-content-section h3 { font-size: 1.4rem; margin-top: 32px; margin-bottom: 16px; border-bottom: 1px solid var(--line); padding-bottom: 8px; }
.page-content-section p { margin-bottom: 16px; color: var(--muted); }
