v1: full rebuild as Paprika (13 pages from build note v2)
This commit is contained in:
479
v1/services.html
479
v1/services.html
@@ -3,269 +3,344 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Services — Abigail</title>
|
||||
<title>Services & Packages — Paprika</title>
|
||||
<meta name="description" content="Attorney-curated press, judging, scholarly articles, and evidence strategy packages. Packages start at $1,999+.">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
<style>
|
||||
.svc-group { margin-bottom: 64px; }
|
||||
.svc-group-head {
|
||||
display: flex; align-items: baseline; gap: 16px;
|
||||
margin-bottom: 24px;
|
||||
padding-bottom: 16px;
|
||||
border-bottom: 1px solid var(--rule);
|
||||
.hero h1 em { font-style: italic; color: var(--paprika); }
|
||||
|
||||
.pkg-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 20px;
|
||||
}
|
||||
.svc-group-num {
|
||||
font-family: "JetBrains Mono", monospace;
|
||||
color: var(--signal);
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
letter-spacing: 0.08em;
|
||||
.pkg-card {
|
||||
background: var(--paper);
|
||||
border: 1px solid var(--rule);
|
||||
border-radius: 18px;
|
||||
padding: 36px;
|
||||
position: relative;
|
||||
transition: all 0.18s;
|
||||
}
|
||||
.svc-group h2 {
|
||||
font-size: 28px; font-weight: 700;
|
||||
letter-spacing: -0.02em;
|
||||
margin: 0;
|
||||
.pkg-card:hover {
|
||||
border-color: var(--paprika);
|
||||
transform: translateY(-3px);
|
||||
box-shadow: 0 14px 36px rgba(192,57,43,0.1);
|
||||
}
|
||||
.svc-group .lead {
|
||||
.pkg-card.featured {
|
||||
background: var(--paprika);
|
||||
color: white;
|
||||
border-color: var(--paprika);
|
||||
}
|
||||
.pkg-card.featured h3, .pkg-card.featured .pkg-price {
|
||||
color: white;
|
||||
}
|
||||
.pkg-card.featured .pkg-desc {
|
||||
color: rgba(255,255,255,0.85);
|
||||
}
|
||||
.pkg-card.featured .pkg-tag {
|
||||
background: rgba(255,255,255,0.18);
|
||||
color: white;
|
||||
}
|
||||
.pkg-card.featured .pkg-cta {
|
||||
background: white;
|
||||
color: var(--paprika);
|
||||
border-color: white;
|
||||
}
|
||||
.pkg-tag {
|
||||
display: inline-block;
|
||||
font-family: "Inter", sans-serif;
|
||||
font-size: 11px;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.12em;
|
||||
text-transform: uppercase;
|
||||
background: var(--paprika-light);
|
||||
color: var(--paprika);
|
||||
padding: 5px 12px;
|
||||
border-radius: 999px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.pkg-card h3 {
|
||||
font-size: 24px;
|
||||
line-height: 1.15;
|
||||
margin: 0 0 12px;
|
||||
color: var(--ink);
|
||||
}
|
||||
.pkg-desc {
|
||||
font-size: 15px;
|
||||
color: var(--mute);
|
||||
margin: -8px 0 24px;
|
||||
max-width: 720px;
|
||||
line-height: 1.6;
|
||||
margin: 0 0 24px;
|
||||
}
|
||||
.svc-card { display: flex; flex-direction: column; }
|
||||
.svc-card .pill { align-self: flex-start; margin-bottom: 12px; }
|
||||
.svc-card h3 { margin-bottom: 6px; }
|
||||
.svc-card .price-line {
|
||||
font-family: "JetBrains Mono", monospace;
|
||||
font-size: 13px;
|
||||
color: var(--ink);
|
||||
margin: 16px 0 8px;
|
||||
padding-top: 16px;
|
||||
.pkg-price {
|
||||
font-family: "Fraunces", serif;
|
||||
font-size: 22px;
|
||||
font-weight: 600;
|
||||
color: var(--paprika);
|
||||
margin: 0 0 24px;
|
||||
padding-top: 20px;
|
||||
border-top: 1px solid var(--rule);
|
||||
}
|
||||
.svc-card .price-line span { color: var(--signal); font-weight: 600; }
|
||||
.svc-card .link {
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
color: var(--ink);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.1em;
|
||||
margin-top: 16px;
|
||||
.pkg-card.featured .pkg-price {
|
||||
border-top-color: rgba(255,255,255,0.2);
|
||||
}
|
||||
.pkg-price small {
|
||||
font-family: "Inter", sans-serif;
|
||||
font-size: 13px;
|
||||
color: var(--mute);
|
||||
font-weight: 400;
|
||||
display: block;
|
||||
margin-top: 4px;
|
||||
}
|
||||
.pkg-card.featured .pkg-price small {
|
||||
color: rgba(255,255,255,0.75);
|
||||
}
|
||||
.pkg-cta {
|
||||
display: inline-block;
|
||||
padding: 11px 22px;
|
||||
border-radius: 999px;
|
||||
font-weight: 600;
|
||||
font-size: 14px;
|
||||
background: transparent;
|
||||
color: var(--ink);
|
||||
border: 1px solid var(--ink);
|
||||
transition: all 0.15s;
|
||||
}
|
||||
.pkg-cta:hover {
|
||||
background: var(--ink);
|
||||
color: white;
|
||||
}
|
||||
.pkg-card.featured .pkg-cta:hover {
|
||||
background: var(--ink);
|
||||
color: white;
|
||||
border-color: var(--ink);
|
||||
}
|
||||
|
||||
/* Pricing band */
|
||||
.pricing-philosophy {
|
||||
background: var(--paprika-light);
|
||||
border-radius: 18px;
|
||||
padding: 48px 56px;
|
||||
text-align: center;
|
||||
}
|
||||
.pricing-philosophy h3 {
|
||||
font-size: 30px;
|
||||
margin: 0 0 12px;
|
||||
color: var(--ink);
|
||||
}
|
||||
.pricing-philosophy h3 em { font-style: normal; color: var(--paprika); }
|
||||
.pricing-philosophy p {
|
||||
font-size: 16px;
|
||||
color: var(--body);
|
||||
margin: 0;
|
||||
line-height: 1.65;
|
||||
max-width: 720px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.counsel-card {
|
||||
background: var(--ink);
|
||||
color: var(--paper);
|
||||
border-radius: 18px;
|
||||
padding: 40px 44px;
|
||||
display: grid;
|
||||
grid-template-columns: 1fr auto;
|
||||
gap: 32px;
|
||||
align-items: center;
|
||||
}
|
||||
.counsel-card h3 {
|
||||
color: var(--paper);
|
||||
font-size: 24px;
|
||||
margin: 0 0 8px;
|
||||
}
|
||||
.counsel-card p {
|
||||
color: #C9CDD3;
|
||||
font-size: 15px;
|
||||
line-height: 1.6;
|
||||
margin: 0;
|
||||
max-width: 580px;
|
||||
}
|
||||
.counsel-card .btn-secondary {
|
||||
background: transparent;
|
||||
color: white;
|
||||
border-color: rgba(255,255,255,0.3);
|
||||
}
|
||||
.counsel-card .btn-secondary:hover {
|
||||
background: white;
|
||||
color: var(--ink);
|
||||
border-color: white;
|
||||
}
|
||||
|
||||
@media (max-width: 880px) {
|
||||
.pkg-grid { grid-template-columns: 1fr; }
|
||||
.counsel-card { grid-template-columns: 1fr; }
|
||||
.pricing-philosophy { padding: 36px 28px; }
|
||||
}
|
||||
.svc-card.hover:hover .link { color: var(--signal); }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<nav>
|
||||
<div class="container">
|
||||
<a class="brand" href="index.html">Abigail<span class="brand-dot">.</span></a>
|
||||
<a class="brand" href="index.html">
|
||||
<span class="brand-name">Paprika</span>
|
||||
<span class="brand-tagline">Attorney-Curated Press & Evidence for O-1 Talent</span>
|
||||
</a>
|
||||
<div class="nav-links">
|
||||
<a href="press.html">Press</a>
|
||||
<a href="judging.html">Judging</a>
|
||||
<a href="scholarly.html">Scholarly Articles</a>
|
||||
<a href="services.html" class="active">Services</a>
|
||||
<a href="attorneys.html">Attorneys</a>
|
||||
<div class="nav-dropdown" id="resourcesDropdown">
|
||||
<button class="nav-trigger" aria-haspopup="true">
|
||||
Resources
|
||||
<svg width="10" height="10" viewBox="0 0 10 10" fill="none"><path d="M2 3.5l3 3 3-3" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>
|
||||
</button>
|
||||
<div class="dropdown-menu" role="menu">
|
||||
<a href="petitions.html">Petitions</a>
|
||||
<a href="#">Articles</a>
|
||||
<a href="#">Events</a>
|
||||
<a href="#">Careers</a>
|
||||
</div>
|
||||
</div>
|
||||
<a href="login.html" class="nav-login">Log in</a>
|
||||
<button class="theme-toggle" id="themeToggle" aria-label="Toggle theme">
|
||||
<svg class="icon-moon" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg>
|
||||
<svg class="icon-sun" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="4"/><path d="M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M4.93 19.07l1.41-1.41M17.66 6.34l1.41-1.41"/></svg>
|
||||
</button>
|
||||
<a href="login.html#signup" class="nav-cta">Sign up</a>
|
||||
<a href="why-paprika.html">Why Paprika</a>
|
||||
<a href="resources.html">Resources</a>
|
||||
</div>
|
||||
<a href="start-here.html" class="nav-cta">Start Here</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<!-- HERO -->
|
||||
<section class="hero centered">
|
||||
<div class="container">
|
||||
<div class="eyebrow">Services</div>
|
||||
<h1>One platform. <em>Five</em> services.<br>Pick what your case needs.</h1>
|
||||
<p class="lead">From AI-only document preparation to full-lifecycle attorney representation, plus evidence-building services that strengthen the petition itself.</p>
|
||||
<div class="eyebrow">Services & Packages</div>
|
||||
<h1>Packages start at <em>$1,999+</em></h1>
|
||||
<p class="lead">Final pricing depends on outlet level, timeline, field, number of placements, and documentation needs. Custom packages available. We recommend what makes sense after reviewing your profile.</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- PACKAGES -->
|
||||
<section class="section alt">
|
||||
<div class="container">
|
||||
|
||||
<!-- Group 1: Filing Services -->
|
||||
<div class="svc-group">
|
||||
<div class="svc-group-head">
|
||||
<span class="svc-group-num">01</span>
|
||||
<h2>Filing Services</h2>
|
||||
</div>
|
||||
<p class="lead">Get the petition built, reviewed, and filed. Choose the level of attorney involvement that matches your case.</p>
|
||||
|
||||
<div class="grid-3">
|
||||
<div class="card hover svc-card">
|
||||
<span class="pill">Self-serve</span>
|
||||
<h3>AI Drafting Package</h3>
|
||||
<p>AI handles the full filing: intake, evidence map, petition narrative, support letter frameworks, cover letter, and form population. You review, sign, and file.</p>
|
||||
<div class="price-line"><span>From $1,500</span> · flat fee per filing</div>
|
||||
<a class="link" href="../abigail_pricing.html">See pricing →</a>
|
||||
</div>
|
||||
|
||||
<div class="card hover svc-card">
|
||||
<span class="pill signal">Most popular</span>
|
||||
<h3>AI + Attorney Review</h3>
|
||||
<p>Everything in the AI package, plus an Ivy / BigLaw-trained attorney reviews, annotates, and signs off. 3–5 business-day turnaround. Engagement via Abigail Legal Services, P.C.</p>
|
||||
<div class="price-line"><span>From $5,500</span> · flat fee per filing</div>
|
||||
<a class="link" href="../abigail_pricing.html">See pricing →</a>
|
||||
</div>
|
||||
|
||||
<div class="card hover svc-card">
|
||||
<span class="pill">Premium</span>
|
||||
<h3>Lifecycle Representation</h3>
|
||||
<p>Continuous attorney coverage across the full case lifecycle. RFE / NOID responses, status-change strategy, renewals, and green-card pathway planning included.</p>
|
||||
<div class="price-line"><span>Custom</span> · annual engagement</div>
|
||||
<a class="link" href="../abigail_pricing.html">Talk to us →</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section-head">
|
||||
<h2>Package framework.</h2>
|
||||
<p>Pick a starting point. Most clients combine services after the initial profile assessment.</p>
|
||||
</div>
|
||||
|
||||
<!-- Group 2: Evidence-Building Services -->
|
||||
<div class="svc-group">
|
||||
<div class="svc-group-head">
|
||||
<span class="svc-group-num">02</span>
|
||||
<h2>Evidence-Building Services</h2>
|
||||
<div class="pkg-grid">
|
||||
|
||||
<div class="pkg-card">
|
||||
<span class="pkg-tag">Starter</span>
|
||||
<h3>Starter Visibility</h3>
|
||||
<p class="pkg-desc">One attorney-curated press or scholarly article opportunity. For early profile-building when you want to test the engagement before committing further.</p>
|
||||
<div class="pkg-price">Starting at $1,999+<small>Per engagement · single placement</small></div>
|
||||
<a href="start-here.html" class="pkg-cta">Start Here</a>
|
||||
</div>
|
||||
<p class="lead">Targeted help for the criteria where applicants commonly fall short. Optional add-ons to any filing tier.</p>
|
||||
|
||||
<div class="grid-3">
|
||||
<div class="card hover svc-card">
|
||||
<span class="pill caution">Add-on</span>
|
||||
<h3>Press & Media Support</h3>
|
||||
<p>Coordinated outreach to industry publications, podcasts, and journalists — building media coverage that qualifies for O-1A Criterion 3 (published material about you).</p>
|
||||
<div class="price-line"><span>From $2,500</span> · 90-day engagement</div>
|
||||
<a class="link" href="press.html">Learn more →</a>
|
||||
</div>
|
||||
|
||||
<div class="card hover svc-card">
|
||||
<span class="pill caution">Add-on</span>
|
||||
<h3>Peer-Review Intros</h3>
|
||||
<p>Matched introductions to journals, conferences, hackathons, and grant panels seeking reviewers in your field — building evidence for O-1A Criterion 4 (judging the work of others).</p>
|
||||
<div class="price-line"><span>From $1,800</span> · 60-day engagement</div>
|
||||
<a class="link" href="judging.html">Learn more →</a>
|
||||
</div>
|
||||
|
||||
<div class="card hover svc-card">
|
||||
<span class="pill caution">Add-on</span>
|
||||
<h3>RFE Response</h3>
|
||||
<p>AI-drafted, attorney-reviewed RFE / NOID responses. The AI has full case context, making responses faster and more precise than starting fresh.</p>
|
||||
<div class="price-line"><span>From $799</span> · per response</div>
|
||||
<a class="link" href="../abigail_pricing.html">See pricing →</a>
|
||||
</div>
|
||||
<div class="pkg-card featured">
|
||||
<span class="pkg-tag">Most Common</span>
|
||||
<h3>O-1 Press Foundation</h3>
|
||||
<p class="pkg-desc">Multiple coordinated press opportunities over a natural timeline, with USCIS-ready documentation. The most-requested package for candidates 9–18 months out from filing.</p>
|
||||
<div class="pkg-price">Custom quote<small>Based on outlet level, timeline, field</small></div>
|
||||
<a href="start-here.html" class="pkg-cta">Get a Quote</a>
|
||||
</div>
|
||||
|
||||
<div class="pkg-card">
|
||||
<span class="pkg-tag">Comprehensive</span>
|
||||
<h3>O-1 Evidence Builder</h3>
|
||||
<p class="pkg-desc">Press, judging, scholarly articles, and documentation strategy across multiple O-1 criteria. For candidates building a complete public profile from the ground up.</p>
|
||||
<div class="pkg-price">Custom quote<small>Multi-service · multi-criterion engagement</small></div>
|
||||
<a href="start-here.html" class="pkg-cta">Get a Quote</a>
|
||||
</div>
|
||||
|
||||
<div class="pkg-card">
|
||||
<span class="pkg-tag">Strategy</span>
|
||||
<h3>Evidence Strategy Session</h3>
|
||||
<p class="pkg-desc">A profile-specific plan: what to build, in what order, for what timeline. Includes criteria prioritization and budget-sensitive options — useful even if you ultimately go elsewhere.</p>
|
||||
<div class="pkg-price">Profile-specific<small>Session-based · written plan included</small></div>
|
||||
<a href="start-here.html" class="pkg-cta">Book a Session</a>
|
||||
</div>
|
||||
|
||||
<div class="pkg-card">
|
||||
<span class="pkg-tag">Referral</span>
|
||||
<h3>Immigration Counsel Referral</h3>
|
||||
<p class="pkg-desc">Need an O-1 attorney or agent petitioner? Paprika can connect you with experienced immigration counsel. This is a referral — not a legal service provided by Paprika.</p>
|
||||
<div class="pkg-price">Complimentary<small>For active and qualified inbound clients</small></div>
|
||||
<a href="start-here.html#counsel" class="pkg-cta">Contact Our Team</a>
|
||||
</div>
|
||||
|
||||
<div class="pkg-card" id="founder-pr">
|
||||
<span class="pkg-tag">For Founders</span>
|
||||
<h3>Founder Visibility</h3>
|
||||
<p class="pkg-desc">For founders and companies expanding into the U.S. market who need credible English-language media presence — for investors, customers, partners, and long-term positioning.</p>
|
||||
<div class="pkg-price">Custom quote<small>Tailored to company stage and market</small></div>
|
||||
<a href="start-here.html" class="pkg-cta">Get a Quote</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Group 3: Front-Door -->
|
||||
<div class="svc-group">
|
||||
<div class="svc-group-head">
|
||||
<span class="svc-group-num">03</span>
|
||||
<h2>Free Services</h2>
|
||||
</div>
|
||||
<p class="lead">Start here, regardless of which path you eventually take.</p>
|
||||
|
||||
<div class="grid-2">
|
||||
<div class="card hover svc-card">
|
||||
<span class="pill signal">Free</span>
|
||||
<h3>AI Visa Screener</h3>
|
||||
<p>Multi-visa simultaneous analysis with green-card roadmap. Outputs candidate pathways and evidence gap analysis based on your background — not a quiz, a structured reasoning engine.</p>
|
||||
<a class="link" href="../abigail_individuals.html#hero">Run the screener →</a>
|
||||
</div>
|
||||
|
||||
<div class="card hover svc-card">
|
||||
<span class="pill signal">Free</span>
|
||||
<h3>Library & Guides</h3>
|
||||
<p>Attorney-written breakdowns of every visa category, the criteria USCIS actually credits, and how to respond when an RFE shows up.</p>
|
||||
<a class="link" href="../abigail_library.html">Browse the library →</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- PRICING PHILOSOPHY -->
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<div class="pricing-philosophy">
|
||||
<h3>Quality over <em>volume.</em></h3>
|
||||
<p>Paprika is not a mass-placement press shop. We turn down clients whose profiles don't yet make sense for the placements they want. We turn down placements that won't serve a client's case. That selectivity is the service.</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- COUNSEL CARD -->
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<div class="counsel-card">
|
||||
<div>
|
||||
<h3>Need immigration counsel or an O-1 agent petitioner?</h3>
|
||||
<p>Building strong evidence is the first step. When you're ready to file — or if you have legal questions about O-1 eligibility, petition strategy, or agent filing — Paprika can connect you with experienced immigration attorneys who handle O-1 petitions and agent structures.</p>
|
||||
</div>
|
||||
<a href="start-here.html#counsel" class="btn btn-secondary">Talk to Our Team</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- CTA -->
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<div class="cta-band">
|
||||
<h2>Not sure which to start with?</h2>
|
||||
<p>The free screener tells you which visa pathway fits and which evidence gaps to close. Most users start there.</p>
|
||||
<div class="cta-buttons">
|
||||
<a href="../abigail_individuals.html#hero" class="btn btn-primary">Start the free screener</a>
|
||||
<a href="../abigail_pricing.html" class="btn btn-secondary">See full pricing</a>
|
||||
</div>
|
||||
<h2>Send your profile.</h2>
|
||||
<p>We'll recommend the right package — or tell you honestly if Paprika isn't a fit for where you are in your timeline.</p>
|
||||
<a href="start-here.html" class="btn btn-primary">Send Us Your Profile</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- FOOTER -->
|
||||
<footer>
|
||||
<div class="container">
|
||||
<div>
|
||||
<div class="brand" style="color:var(--ink); margin-bottom:8px;">Abigail<span class="brand-dot">.</span></div>
|
||||
<div>AI-native immigration platform</div>
|
||||
<div class="brand-name" style="margin-bottom:6px;">Paprika</div>
|
||||
<div style="font-size:12px; max-width:280px; line-height:1.55;">Attorney-Curated Press & Evidence for O-1 Talent.</div>
|
||||
</div>
|
||||
<div class="footer-links">
|
||||
<div>
|
||||
<div style="color:var(--ink); font-weight:600; margin-bottom:8px;">Services</div>
|
||||
<div><a href="services.html">All services</a></div>
|
||||
<div><a href="press.html">Press support</a></div>
|
||||
<div><a href="judging.html">Peer-review intros</a></div>
|
||||
<div><a href="attorneys.html">Attorney network</a></div>
|
||||
</div>
|
||||
<div>
|
||||
<div style="color:var(--ink); font-weight:600; margin-bottom:8px;">Resources</div>
|
||||
<div><a href="../abigail_library.html">Library</a></div>
|
||||
<div><a href="petitions.html">Petitions</a></div>
|
||||
<div><a href="../abigail_pricing.html">Pricing</a></div>
|
||||
</div>
|
||||
<div>
|
||||
<div style="color:var(--ink); font-weight:600; margin-bottom:8px;">Legal</div>
|
||||
<div><a href="#">Terms</a></div>
|
||||
<div><a href="#">Privacy</a></div>
|
||||
<div><a href="login.html">Log in</a></div>
|
||||
</div>
|
||||
<div class="footer-col">
|
||||
<h4>Services</h4>
|
||||
<a href="press.html">Press</a>
|
||||
<a href="judging.html">Judging</a>
|
||||
<a href="scholarly.html">Scholarly Articles</a>
|
||||
<a href="services.html">Packages</a>
|
||||
</div>
|
||||
<div class="footer-col">
|
||||
<h4>About</h4>
|
||||
<a href="why-paprika.html">Why Paprika</a>
|
||||
<a href="resources.html">Resources</a>
|
||||
<a href="faq.html">FAQ</a>
|
||||
<a href="about.html">About</a>
|
||||
</div>
|
||||
<div class="footer-col">
|
||||
<h4>Legal</h4>
|
||||
<a href="terms.html">Terms of Service</a>
|
||||
<a href="privacy.html">Privacy</a>
|
||||
<a href="disclaimer.html">Disclaimer</a>
|
||||
<a href="start-here.html">Start Here</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="disclaimer">
|
||||
Abigail Technologies, Inc. operates an AI-native immigration platform and does not provide legal services. Legal services, where elected, are provided by Abigail Legal Services, P.C. through a separate engagement letter. Evidence-building services are non-legal professional services and do not guarantee specific media placements or peer-review invitations. Use of the platform's screener output does not constitute legal advice or an attorney-client relationship.
|
||||
Paprika is not a law firm and does not provide legal advice or immigration representation. Use of our services does not create an attorney-client relationship.
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script>
|
||||
const dd = document.getElementById("resourcesDropdown");
|
||||
if (dd) {
|
||||
const trigger = dd.querySelector(".nav-trigger");
|
||||
trigger.addEventListener("click", (e) => {
|
||||
e.stopPropagation();
|
||||
dd.classList.toggle("open");
|
||||
});
|
||||
document.addEventListener("click", () => dd.classList.remove("open"));
|
||||
dd.querySelector(".dropdown-menu").addEventListener("click", (e) => e.stopPropagation());
|
||||
}
|
||||
const THEME_KEY = "abigail-theme";
|
||||
const root = document.documentElement;
|
||||
if (localStorage.getItem(THEME_KEY) === "dark") root.classList.add("dark");
|
||||
const toggle = document.getElementById("themeToggle");
|
||||
if (toggle) toggle.addEventListener("click", () => {
|
||||
root.classList.toggle("dark");
|
||||
localStorage.setItem(THEME_KEY, root.classList.contains("dark") ? "dark" : "light");
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user