Aimpress_site/src/pages/AboutPage.css
Vadym Samoilenko af26ccd2b7 Add About, Services, Pricing pages with quote form
- /about: company story, differentiators, values, founder bio, industries, company details
- /services: 6 service cards with pricing, assurance pack, process steps, tech stack
- /pricing: pricing table, retainer tiers, training, payment terms, discounts, comparison, FAQ, inline quote form
- QuoteForm component with service dropdown + project description textarea
- POST /api/quote endpoint via Resend for quote requests
- Nav updated: About Us, Services, Pricing now route to standalone pages
- SEO: JSON-LD schemas, sitemap.xml, llms.txt updated
- Founder photo added

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-08 15:19:30 +00:00

375 lines
6.5 KiB
CSS

.about-page {
padding-top: 8rem;
min-height: 100vh;
}
/* Hero */
.about-hero {
padding: 4rem 2rem 3rem;
text-align: center;
}
.about-hero h1 {
font-size: 3.2rem;
font-weight: 800;
color: #fff;
margin-bottom: 1rem;
}
.about-hero-sub {
font-size: 1.2rem;
color: var(--light-grey-100);
opacity: 0.8;
max-width: 600px;
margin: 0 auto;
}
/* Sections */
.about-section {
padding: 4rem 2rem;
}
.about-section .section-title {
text-align: center;
font-size: 2rem;
font-weight: 800;
color: #fff;
margin-bottom: 2.5rem;
}
/* Story */
.about-story-text {
max-width: 800px;
margin: 0 auto;
color: var(--light-grey-100);
font-size: 1.05rem;
line-height: 1.8;
}
.about-story-text p {
margin-bottom: 1.2rem;
}
/* Differentiator Cards */
.about-diff-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
max-width: 1000px;
margin: 0 auto;
}
.about-glass-card {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 16px;
padding: 2rem;
transition: border-color 0.3s;
}
.about-glass-card:hover {
border-color: var(--orange-100);
}
.about-card-icon {
width: 40px;
height: 40px;
color: var(--orange-100);
margin-bottom: 1rem;
}
.about-card-icon svg {
width: 100%;
height: 100%;
}
.about-glass-card h3 {
font-size: 1.15rem;
font-weight: 700;
color: #fff;
margin-bottom: 0.6rem;
}
.about-glass-card p {
color: var(--light-grey-100);
font-size: 0.95rem;
line-height: 1.6;
opacity: 0.85;
}
/* Values */
.about-values-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 1.25rem;
max-width: 1100px;
margin: 0 auto;
}
.about-value-item {
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 12px;
padding: 1.5rem;
text-align: center;
}
.about-value-item h3 {
font-size: 1rem;
font-weight: 700;
color: var(--orange-100);
margin-bottom: 0.5rem;
}
.about-value-item p {
color: var(--light-grey-100);
font-size: 0.85rem;
line-height: 1.5;
opacity: 0.8;
}
/* Founder */
.about-founder-card {
display: flex;
gap: 2.5rem;
align-items: flex-start;
max-width: 900px;
margin: 0 auto;
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-left: 3px solid var(--orange-100);
border-radius: 16px;
padding: 2.5rem;
}
.about-founder-photo {
flex-shrink: 0;
}
.about-founder-img {
width: 140px;
height: 140px;
border-radius: 50%;
object-fit: cover;
border: 3px solid rgba(255, 255, 255, 0.15);
}
.about-founder-info h3 {
font-size: 1.5rem;
font-weight: 800;
color: #fff;
margin-bottom: 0.25rem;
}
.about-founder-role {
display: block;
color: var(--orange-100);
font-weight: 600;
font-size: 0.95rem;
margin-bottom: 1.25rem;
}
.about-founder-details {
list-style: none;
padding: 0;
}
.about-founder-details li {
color: var(--light-grey-100);
font-size: 0.95rem;
line-height: 1.6;
margin-bottom: 0.75rem;
padding-left: 1rem;
position: relative;
}
.about-founder-details li::before {
content: '';
position: absolute;
left: 0;
top: 0.55em;
width: 5px;
height: 5px;
border-radius: 50%;
background: var(--orange-100);
}
.about-founder-details li strong {
color: #fff;
}
/* Industries */
.about-industries {
display: flex;
flex-wrap: wrap;
gap: 1rem;
justify-content: center;
max-width: 800px;
margin: 0 auto;
}
.about-industry-badge {
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 100px;
padding: 0.6rem 1.5rem;
color: var(--light-grey-100);
font-size: 0.95rem;
font-weight: 500;
transition: border-color 0.3s, color 0.3s;
}
.about-industry-badge:hover {
border-color: var(--orange-100);
color: #fff;
}
/* Company Details */
.about-company-details {
max-width: 700px;
margin: 0 auto;
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 12px;
overflow: hidden;
}
.about-detail-row {
display: flex;
justify-content: space-between;
padding: 1rem 1.5rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.about-detail-row:last-child {
border-bottom: none;
}
.about-detail-row span:first-child {
color: var(--light-grey-100);
opacity: 0.7;
font-size: 0.9rem;
}
.about-detail-row span:last-child {
color: #fff;
font-weight: 500;
font-size: 0.95rem;
text-align: right;
}
.about-detail-row a {
color: var(--orange-100);
text-decoration: none;
}
.about-detail-row a:hover {
text-decoration: underline;
}
/* CTA */
.about-cta-section {
padding-bottom: 6rem;
}
.about-cta {
text-align: center;
background: rgba(255, 91, 4, 0.08);
border: 1px solid rgba(255, 91, 4, 0.2);
border-radius: 20px;
padding: 3.5rem 2rem;
max-width: 700px;
margin: 0 auto;
}
.about-cta h2 {
font-size: 1.8rem;
font-weight: 800;
color: #fff;
margin-bottom: 0.75rem;
}
.about-cta p {
color: var(--light-grey-100);
font-size: 1.05rem;
margin-bottom: 2rem;
opacity: 0.85;
}
.about-cta-btn {
background: var(--orange-100);
color: #fff;
border: none;
padding: 0.9rem 2.5rem;
border-radius: 100px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
font-family: var(--font-primary);
}
/* Responsive */
@media (max-width: 900px) {
.about-diff-grid {
grid-template-columns: 1fr;
}
.about-values-grid {
grid-template-columns: repeat(3, 1fr);
}
.about-founder-card {
flex-direction: column;
align-items: center;
text-align: center;
}
.about-founder-details li {
text-align: left;
}
}
@media (max-width: 600px) {
.about-page {
padding-top: 6rem;
}
.about-hero h1 {
font-size: 2.2rem;
}
.about-hero-sub {
font-size: 1rem;
}
.about-section {
padding: 3rem 1rem;
}
.about-values-grid {
grid-template-columns: repeat(2, 1fr);
}
.about-founder-card {
padding: 1.5rem;
}
.about-detail-row {
flex-direction: column;
gap: 0.25rem;
}
.about-detail-row span:last-child {
text-align: left;
}
.about-cta {
padding: 2.5rem 1.5rem;
}
.about-cta h2 {
font-size: 1.4rem;
}
}