Aimpress_site/src/pages/ServicesPage.css
Vadym Samoilenko a0cec68ff2 Redesign pages with homepage patterns, remove How We Work & Tech Stack
- Apply glassmorphism, radial glows, gradient banners to About/Services/Pricing
- Remove How We Work and Technology Stack sections from Services
- Add gradient banner styling to discount section on Pricing
- Update About values section with full-width gradient banner

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

374 lines
7.2 KiB
CSS

.services-page {
padding-top: 8rem;
min-height: 100vh;
}
/* Hero */
.services-hero {
padding: 4rem 2rem 3rem;
text-align: center;
}
.services-hero h1 {
font-size: clamp(2.4rem, 5vw, 3.5rem);
font-weight: 800;
color: #fff;
margin-bottom: 1rem;
}
.services-hero-sub {
font-size: clamp(1rem, 2vw, 1.25rem);
color: var(--light-grey-100);
opacity: 0.8;
max-width: 640px;
margin: 0 auto;
line-height: 1.6;
}
/* Sections */
.services-section {
padding: 5rem 2rem;
}
.services-section .section-title {
text-align: center;
font-size: clamp(1.6rem, 3vw, 2.2rem);
font-weight: 800;
color: #fff;
margin-bottom: 3rem;
}
/* Service Cards Grid */
.services-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
max-width: 1200px;
margin: 0 auto;
}
.service-card {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 2rem;
cursor: pointer;
position: relative;
overflow: hidden;
transition: border-color 0.3s, box-shadow 0.4s, transform 0.35s;
}
.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 30% 20%, rgba(255, 91, 4, 0.08), transparent 60%);
opacity: 0;
transition: opacity 0.4s;
pointer-events: none;
border-radius: 20px;
}
.service-card:hover {
border-color: rgba(255, 255, 255, 0.2);
transform: translateY(-3px);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.service-card:hover::before {
opacity: 1;
}
.service-card--expanded {
border-color: var(--orange-100);
}
.service-card--popular {
border-color: var(--orange-100);
background: rgba(255, 91, 4, 0.06);
}
.service-card--popular::before {
background: radial-gradient(circle at 30% 20%, rgba(255, 91, 4, 0.15), transparent 60%);
opacity: 0.5;
}
.service-card--popular:hover {
border-color: var(--orange-100);
box-shadow: 0 8px 40px rgba(255, 91, 4, 0.15);
}
.service-popular-badge {
position: absolute;
top: -11px;
right: 1.5rem;
background: linear-gradient(135deg, var(--orange-100), var(--yellow-100));
color: #fff;
padding: 0.25rem 0.9rem;
border-radius: 100px;
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
box-shadow: 0 2px 10px rgba(255, 91, 4, 0.3);
}
.service-card-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1rem;
}
.service-card-icon {
width: 36px;
height: 36px;
color: var(--orange-100);
transition: transform 0.3s;
}
.service-card:hover .service-card-icon {
transform: scale(1.15);
}
.service-card-icon svg {
width: 100%;
height: 100%;
}
.service-card-price {
background: rgba(255, 91, 4, 0.12);
color: var(--orange-100);
padding: 0.35rem 0.9rem;
border-radius: 100px;
font-size: 0.85rem;
font-weight: 600;
white-space: nowrap;
}
.service-card h3 {
font-size: 1.15rem;
font-weight: 700;
color: #fff;
margin-bottom: 0.6rem;
}
.service-card-purpose {
color: var(--light-grey-100);
font-size: 0.95rem;
line-height: 1.6;
opacity: 0.85;
margin-bottom: 0.75rem;
}
.service-card-includes {
list-style: none;
padding: 0;
margin: 0.75rem 0;
border-top: 1px solid rgba(255, 255, 255, 0.08);
padding-top: 0.75rem;
}
.service-card-includes li {
color: var(--light-grey-100);
font-size: 0.9rem;
line-height: 1.5;
padding: 0.35rem 0 0.35rem 1.4rem;
position: relative;
}
.service-card-includes li::before {
content: '→';
position: absolute;
left: 0;
color: var(--yellow-100);
font-weight: 700;
}
.service-card-toggle {
display: inline-flex;
align-items: center;
gap: 0.4rem;
color: var(--orange-100);
font-size: 0.85rem;
font-weight: 600;
margin-top: 0.5rem;
}
.service-card-toggle svg {
width: 16px;
height: 16px;
transition: transform 0.3s;
}
/* Assurance Pack — gradient banner */
.assurance-section {
position: relative;
width: 100vw;
margin-left: calc(-50vw + 50%);
background: linear-gradient(135deg, var(--orange-100), var(--yellow-100));
padding: 5rem 2rem;
overflow: hidden;
border-radius: 60px;
margin-top: 1rem;
margin-bottom: 1rem;
}
.assurance-pack {
max-width: 1200px;
margin: 0 auto;
}
.assurance-header {
text-align: center;
margin-bottom: 2.5rem;
}
.assurance-header h2 {
font-size: clamp(1.4rem, 3vw, 1.8rem);
font-weight: 800;
color: var(--dark-grey-100);
margin-bottom: 0.75rem;
}
.assurance-badge {
display: inline-block;
background: rgba(255, 255, 255, 0.25);
backdrop-filter: blur(8px);
color: var(--dark-grey-100);
padding: 0.4rem 1.2rem;
border-radius: 100px;
font-size: 0.9rem;
font-weight: 700;
border: 1px solid rgba(255, 255, 255, 0.3);
}
.assurance-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0.75rem;
}
.assurance-item {
display: flex;
align-items: center;
gap: 0.6rem;
padding: 0.6rem 0;
}
.assurance-item svg {
width: 22px;
height: 22px;
flex-shrink: 0;
color: var(--dark-grey-100);
stroke: var(--dark-grey-100);
}
.assurance-item span {
color: var(--dark-grey-100);
font-size: 0.95rem;
font-weight: 600;
}
/* CTA */
.services-cta-section {
padding-bottom: 6rem;
}
.services-cta {
text-align: center;
background: rgba(255, 91, 4, 0.08);
border: 1px solid rgba(255, 91, 4, 0.2);
border-radius: 24px;
padding: 4rem 2rem;
max-width: 900px;
margin: 0 auto;
position: relative;
overflow: hidden;
}
.services-cta::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle at center, rgba(255, 91, 4, 0.06), transparent 50%);
pointer-events: none;
}
.services-cta h2 {
font-size: clamp(1.4rem, 3vw, 1.8rem);
font-weight: 800;
color: #fff;
margin-bottom: 0.75rem;
position: relative;
}
.services-cta p {
color: var(--light-grey-100);
font-size: 1.05rem;
margin-bottom: 2rem;
opacity: 0.85;
position: relative;
}
.services-cta-btn {
background: var(--orange-100);
color: #fff;
border: none;
padding: 1rem 2.5rem;
border-radius: 100px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
font-family: var(--font-primary);
position: relative;
box-shadow: 0 4px 20px rgba(255, 91, 4, 0.3);
transition: box-shadow 0.3s;
}
.services-cta-btn:hover {
box-shadow: 0 8px 35px rgba(255, 91, 4, 0.45);
}
/* Responsive */
@media (max-width: 1024px) {
.services-grid {
grid-template-columns: 1fr;
}
}
@media (max-width: 900px) {
.assurance-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 600px) {
.services-page {
padding-top: 6rem;
}
.services-section {
padding: 3rem 1rem;
}
.assurance-section {
border-radius: 30px;
padding: 3rem 1rem;
}
.assurance-grid {
grid-template-columns: 1fr;
}
.services-cta {
padding: 2.5rem 1.5rem;
}
}