/* ===== PAGE HEADER ===== */
.page-header {
padding: 6rem 0 3rem;
position: relative;
overflow: hidden;
}
.page-header-bg {
position: absolute;
inset: 0;
background:
radial-gradient(ellipse 60% 50% at 30% 40%, rgba(30,58,95,0.05) 0%, transparent 60%),
linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}
.page-header-inner {
position: relative;
z-index: 1;
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
text-align: center;
}
.page-eyebrow {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-size: 0.7rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.12em;
color: var(--accent);
margin-bottom: 1rem;
}
.page-title {
font-family: 'Cormorant Garamond', Georgia, serif;
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 600;
line-height: 1.1;
margin-bottom: 1rem;
}
.page-subtitle {
font-size: 1.05rem;
color: var(--text-secondary);
max-width: 560px;
margin: 0 auto;
line-height: 1.7;
}
/* ===== SECTIONS ===== */
.section {
padding: 3rem 0;
position: relative;
}
.section-inner {
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
}
/* ===== FILTERS ===== */
.filters {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0.5rem;
margin-bottom: 2.5rem;
}
.filter-btn {
padding: 0.5rem 1.25rem;
border-radius: 100px;
font-size: 0.8rem;
font-weight: 600;
border: 1px solid var(--border-light);
background: white;
color: var(--text-muted);
cursor: pointer;
transition: all 0.2s;
font-family: inherit;
}
.filter-btn:hover {
border-color: var(--border);
color: var(--text-secondary);
}
.filter-btn.active {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
color: white;
border-color: transparent;
box-shadow: 0 4px 12px rgba(30,58,95,0.25);
}
/* ===== FEATURED SERVICE ===== */
.featured-service {
background: white;
border-radius: 24px;
border: 1px solid var(--border-light);
overflow: hidden;
margin-bottom: 2.5rem;
box-shadow: var(--shadow-lg);
transition: all 0.4s ease;
}
.featured-service:hover {
box-shadow: var(--shadow-xl);
transform: translateY(-4px);
}
.featured-grid {
display: grid;
}
.featured-visual {
height: 280px;
position: relative;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
}
.featured-visual::before {
content: '';
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(30,58,95,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(30,58,95,0.03) 1px, transparent 1px);
background-size: 30px 30px;
}
.featured-icon {
position: relative;
width: 80px; height: 80px;
border-radius: 22px;
background: white;
display: flex; align-items: center; justify-content: center;
box-shadow: var(--shadow-xl);
}
.featured-icon svg {
width: 36px; height: 36px;
color: var(--primary);
}
.featured-body {
padding: 2rem;
}
.featured-tag {
display: inline-block;
font-size: 0.7rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--primary);
background: rgba(30,58,95,0.06);
padding: 0.3rem 0.75rem;
border-radius: 6px;
margin-bottom: 0.75rem;
}
.featured-title {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 0.75rem;
}
.featured-desc {
font-size: 0.95rem;
color: var(--text-secondary);
line-height: 1.7;
margin-bottom: 1.25rem;
}
.featured-list {
list-style: none;
margin-bottom: 1.5rem;
}
.featured-list li {
font-size: 0.875rem;
color: var(--text-secondary);
display: flex;
align-items: center;
gap: 0.625rem;
padding: 0.35rem 0;
}
.featured-list li svg {
width: 16px; height: 16px;
color: var(--primary);
flex-shrink: 0;
}
.featured-footer {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 1rem;
padding-top: 1.25rem;
border-top: 1px solid var(--border-light);
}
.featured-price {
font-size: 1.75rem;
font-weight: 800;
color: var(--text);
}
.featured-btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1.5rem;
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
color: white;
border-radius: 10px;
font-size: 0.875rem;
font-weight: 600;
text-decoration: none;
transition: all 0.2s;
border: none;
cursor: pointer;
box-shadow: 0 4px 14px rgba(30,58,95,0.3);
}
.featured-btn:hover {
transform: translateY(-1px);
box-shadow: 0 6px 20px rgba(30,58,95,0.4);
}
/* ===== SERVICES GRID ===== */
.services-grid {
display: grid;
gap: 1.5rem;
}
.service-card-page {
background: var(--bg-card);
border-radius: 20px;
border: 1px solid var(--border-light);
overflow: hidden;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
}
.service-card-page::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 3px;
background: linear-gradient(90deg, var(--primary), var(--primary-light));
opacity: 0;
transition: opacity 0.3s;
}
.service-card-page:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-xl);
border-color: var(--border);
}
.service-card-page:hover::before { opacity: 1; }
.service-visual {
height: 160px;
position: relative;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.service-visual-bg {
position: absolute;
inset: 0;
opacity: 0.5;
}
.service-visual-bg.web { background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%); }
.service-visual-bg.seo { background: linear-gradient(135deg, #d1fae5 0%, #ecfdf5 100%); }
.service-visual-bg.mobile { background: linear-gradient(135deg, #ede9fe 0%, #f5f3ff 100%); }
.service-visual-bg.maint { background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%); }
.service-visual-bg.perf { background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%); }
.service-visual-bg.ux { background: linear-gradient(135deg, #ccfbf1 0%, #f0fdfa 100%); }
.service-visual-bg.design { background: linear-gradient(135deg, #fce7f3 0%, #fdf2f8 100%); }
.service-visual-bg.premium { background: linear-gradient(135deg, rgba(30,58,95,0.1) 0%, #ede9fe 100%); }
.service-icon {
position: relative;
width: 56px; height: 56px;
border-radius: 16px;
background: white;
display: flex; align-items: center; justify-content: center;
box-shadow: var(--shadow-lg);
}
.service-icon svg {
width: 24px; height: 24px;
color: var(--primary);
}
.service-body { padding: 1.25rem; }
.service-tag {
display: inline-block;
font-size: 0.7rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--primary);
background: rgba(30,58,95,0.06);
padding: 0.25rem 0.625rem;
border-radius: 6px;
margin-bottom: 0.625rem;
}
.service-title {
font-size: 1rem;
font-weight: 700;
margin-bottom: 0.4rem;
color: var(--text);
}
.service-desc {
font-size: 0.8rem;
color: var(--text-secondary);
line-height: 1.6;
margin-bottom: 0.875rem;
}
.service-features {
list-style: none;
margin-bottom: 1rem;
}
.service-features li {
font-size: 0.75rem;
color: var(--text-muted);
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.15rem 0;
}
.service-features li::before {
content: '';
width: 4px; height: 4px;
border-radius: 50%;
background: var(--primary-light);
flex-shrink: 0;
}
.service-footer {
display: flex;
align-items: center;
justify-content: space-between;
padding-top: 0.875rem;
border-top: 1px solid var(--border-light);
}
.service-price {
font-size: 1.125rem;
font-weight: 800;
color: var(--text);
}
.service-btn {
display: inline-flex;
align-items: center;
gap: 0.375rem;
padding: 0.4rem 0.875rem;
background: var(--primary);
color: white;
border-radius: 8px;
font-size: 0.75rem;
font-weight: 600;
text-decoration: none;
transition: all 0.2s;
border: none;
cursor: pointer;
}
.service-btn:hover {
background: var(--primary-dark);
transform: scale(1.03);
}
.popular-badge {
position: absolute;
top: 0.875rem; right: 0.875rem;
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
color: var(--primary-dark);
font-size: 0.6rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.06em;
padding: 0.25rem 0.625rem;
border-radius: 100px;
z-index: 2;
box-shadow: 0 2px 8px rgba(201,169,110,0.3);
}
/* ===== COMPARISON TABLE ===== */
.comparison-section {
padding: 4rem 0;
background: var(--bg-warm);
}
.comparison-table-wrap {
overflow-x: auto;
border-radius: 16px;
border: 1px solid var(--border-light);
background: white;
}
.comparison-table {
width: 100%;
border-collapse: collapse;
min-width: 600px;
}
.comparison-table th {
text-align: left;
padding: 1rem 1.5rem;
font-size: 0.8rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--text-muted);
background: var(--bg-warm);
border-bottom: 1px solid var(--border-light);
}
.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3),
.comparison-table th:nth-child(4) {
text-align: center;
}
.comparison-table td {
padding: 1rem 1.5rem;
font-size: 0.875rem;
border-bottom: 1px solid var(--border-light);
transition: background 0.2s;
}
.comparison-table tr:hover td {
background: rgba(30,58,95,0.02);
}
.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3),
.comparison-table td:nth-child(4) {
text-align: center;
}
.comparison-table td strong {
font-weight: 700;
color: var(--text);
}
.comparison-table .price {
font-weight: 800;
color: var(--text);
}
.comparison-table .tag {
display: inline-block;
font-size: 0.7rem;
font-weight: 600;
color: var(--primary);
background: rgba(30,58,95,0.06);
padding: 0.2rem 0.5rem;
border-radius: 6px;
}
.comparison-table a {
color: var(--primary);
text-decoration: none;
font-weight: 600;
font-size: 0.8rem;
transition: color 0.2s;
}
.comparison-table a:hover {
color: var(--primary-light);
}
/* ===== CTA ===== */
.cta-section {
padding: 5rem 0;
position: relative;
overflow: hidden;
}
.cta-bg {
position: absolute;
inset: 0;
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.cta-bg::before {
content: '';
position: absolute;
inset: 0;
background-image:
radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
}
.cta-inner {
position: relative;
z-index: 1;
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
text-align: center;
}
.cta-title {
font-family: 'Cormorant Garamond', Georgia, serif;
font-size: clamp(1.75rem, 4vw, 2.75rem);
font-weight: 600;
color: white;
margin-bottom: 1rem;
line-height: 1.2;
}
.cta-desc {
font-size: 1.05rem;
color: rgba(255,255,255,0.8);
max-width: 560px;
margin: 0 auto 2rem;
line-height: 1.7;
}
.cta-actions {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0.75rem;
}
.btn-white {
background: white;
color: var(--primary);
box-shadow: var(--shadow);
}
.btn-white:hover {
transform: translateY(-1px);
box-shadow: var(--shadow-lg);
}
.btn-lg {
padding: 0.875rem 1.75rem;
font-size: 0.9375rem;
}
/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
.services-grid { grid-template-columns: repeat(2, 1fr); }
.featured-grid { grid-template-columns: 1fr 1fr; }
.featured-visual { height: auto; }
}
@media (min-width: 768px) {
.services-grid { grid-template-columns: repeat(3, 1fr); }
}
Entreprise française · Prestations numériques sur devis · Paiement sécurisé après validation