mirror of
https://github.com/marcogll/join_landing_vanity.git
synced 2026-01-13 13:25:15 +00:00
Initial commit: Landing page for partners
This commit is contained in:
375
css/animations.css
Normal file
375
css/animations.css
Normal file
@@ -0,0 +1,375 @@
|
||||
/* ========================================
|
||||
ANIMATIONS.CSS - Scroll Reveal Animations
|
||||
======================================== */
|
||||
|
||||
/* Base animation classes */
|
||||
.animate-on-scroll {
|
||||
opacity: 0;
|
||||
transform: translateY(30px);
|
||||
transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
||||
}
|
||||
|
||||
.animate-on-scroll.animate-in {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
/* Different animation variants */
|
||||
.animate-fade-up {
|
||||
opacity: 0;
|
||||
transform: translateY(50px);
|
||||
transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
||||
}
|
||||
|
||||
.animate-fade-up.animate-in {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.animate-fade-left {
|
||||
opacity: 0;
|
||||
transform: translateX(-50px);
|
||||
transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
||||
}
|
||||
|
||||
.animate-fade-left.animate-in {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
.animate-fade-right {
|
||||
opacity: 0;
|
||||
transform: translateX(50px);
|
||||
transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
||||
}
|
||||
|
||||
.animate-fade-right.animate-in {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
.animate-scale {
|
||||
opacity: 0;
|
||||
transform: scale(0.9);
|
||||
transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
||||
}
|
||||
|
||||
.animate-scale.animate-in {
|
||||
opacity: 1;
|
||||
transform: scale(1);
|
||||
}
|
||||
|
||||
/* Staggered animations for children */
|
||||
.animate-stagger {
|
||||
opacity: 0;
|
||||
transform: translateY(30px);
|
||||
transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
||||
}
|
||||
|
||||
.animate-stagger.animate-in {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
/* Delay variants for staggered animations */
|
||||
.animate-delay-1 {
|
||||
transition-delay: 0.1s;
|
||||
}
|
||||
|
||||
.animate-delay-2 {
|
||||
transition-delay: 0.2s;
|
||||
}
|
||||
|
||||
.animate-delay-3 {
|
||||
transition-delay: 0.3s;
|
||||
}
|
||||
|
||||
.animate-delay-4 {
|
||||
transition-delay: 0.4s;
|
||||
}
|
||||
|
||||
.animate-delay-5 {
|
||||
transition-delay: 0.5s;
|
||||
}
|
||||
|
||||
.animate-delay-6 {
|
||||
transition-delay: 0.6s;
|
||||
}
|
||||
|
||||
/* Section-specific animations */
|
||||
.benefits {
|
||||
opacity: 0;
|
||||
transform: translateY(50px);
|
||||
transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
||||
}
|
||||
|
||||
.benefits.animate-in {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.profile {
|
||||
opacity: 0;
|
||||
transform: translateY(50px);
|
||||
transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
|
||||
}
|
||||
|
||||
.profile.animate-in {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.process {
|
||||
opacity: 0;
|
||||
transform: translateY(50px);
|
||||
transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
|
||||
}
|
||||
|
||||
.process.animate-in {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.faq {
|
||||
opacity: 0;
|
||||
transform: translateY(50px);
|
||||
transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
|
||||
}
|
||||
|
||||
.faq.animate-in {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.testimonials {
|
||||
opacity: 0;
|
||||
transform: translateY(50px);
|
||||
transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
|
||||
}
|
||||
|
||||
.testimonials.animate-in {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.cta-carousel {
|
||||
opacity: 0;
|
||||
transform: translateY(50px);
|
||||
transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
|
||||
}
|
||||
|
||||
.cta-carousel.animate-in {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
/* Enhanced benefit cards animation */
|
||||
.benefit-card {
|
||||
opacity: 0;
|
||||
transform: translateY(30px) scale(0.95);
|
||||
transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
||||
}
|
||||
|
||||
.benefit-card.animate-in {
|
||||
opacity: 1;
|
||||
transform: translateY(0) scale(1);
|
||||
}
|
||||
|
||||
/* Process steps animation */
|
||||
.process__step {
|
||||
opacity: 0;
|
||||
transform: translateY(40px);
|
||||
transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
||||
}
|
||||
|
||||
.process__step.animate-in {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
/* FAQ items animation */
|
||||
.faq__item {
|
||||
opacity: 0;
|
||||
transform: translateX(-30px);
|
||||
transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
||||
}
|
||||
|
||||
.faq__item.animate-in {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
/* Section headers animation */
|
||||
.section-header {
|
||||
opacity: 0;
|
||||
transform: translateY(30px);
|
||||
transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
||||
}
|
||||
|
||||
.section-header.animate-in {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
/* Profile cards animation */
|
||||
.profile__requirements,
|
||||
.profile__desired {
|
||||
opacity: 0;
|
||||
transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
||||
}
|
||||
|
||||
.profile__requirements {
|
||||
transform: translateX(-40px);
|
||||
}
|
||||
|
||||
.profile__desired {
|
||||
transform: translateX(40px);
|
||||
}
|
||||
|
||||
.profile__requirements.animate-in,
|
||||
.profile__desired.animate-in {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
/* Testimonial cards animation */
|
||||
.testimonial-slide {
|
||||
transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
||||
}
|
||||
|
||||
/* CTA section specific animations */
|
||||
.cta-carousel__text {
|
||||
opacity: 0;
|
||||
transform: translateX(-40px);
|
||||
transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
||||
}
|
||||
|
||||
.cta-carousel__text.animate-in {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
.cta-carousel__images {
|
||||
opacity: 0;
|
||||
transform: translateX(40px);
|
||||
transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
|
||||
}
|
||||
|
||||
.cta-carousel__images.animate-in {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
/* Stats animation */
|
||||
.stat-item {
|
||||
opacity: 0;
|
||||
transform: translateY(20px);
|
||||
transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
||||
}
|
||||
|
||||
.stat-item.animate-in {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
/* Respect reduced motion preference */
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.animate-on-scroll,
|
||||
.animate-fade-up,
|
||||
.animate-fade-left,
|
||||
.animate-fade-right,
|
||||
.animate-scale,
|
||||
.animate-stagger,
|
||||
.benefits,
|
||||
.profile,
|
||||
.process,
|
||||
.faq,
|
||||
.testimonials,
|
||||
.cta-carousel,
|
||||
.benefit-card,
|
||||
.process__step,
|
||||
.faq__item,
|
||||
.section-header,
|
||||
.profile__requirements,
|
||||
.profile__desired,
|
||||
.cta-carousel__text,
|
||||
.cta-carousel__images,
|
||||
.stat-item {
|
||||
opacity: 1;
|
||||
transform: none;
|
||||
transition: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* Enhanced entrance animations */
|
||||
@keyframes slideInFromBottom {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(50px);
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeInScale {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: scale(0.9);
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes slideInFromLeft {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateX(-50px);
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes slideInFromRight {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateX(50px);
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
/* Pulse animation for important elements */
|
||||
@keyframes pulse {
|
||||
0%, 100% {
|
||||
transform: scale(1);
|
||||
}
|
||||
50% {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
}
|
||||
|
||||
.animate-pulse {
|
||||
animation: pulse 2s ease-in-out infinite;
|
||||
}
|
||||
|
||||
/* Floating animation for decorative elements */
|
||||
@keyframes float {
|
||||
0%, 100% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
50% {
|
||||
transform: translateY(-10px);
|
||||
}
|
||||
}
|
||||
|
||||
.animate-float {
|
||||
animation: float 3s ease-in-out infinite;
|
||||
}
|
||||
241
css/base.css
Normal file
241
css/base.css
Normal file
@@ -0,0 +1,241 @@
|
||||
/* ========================================
|
||||
BASE.CSS - Tokens, Reset, Typography
|
||||
======================================== */
|
||||
|
||||
/* CSS Tokens */
|
||||
:root {
|
||||
/* Colors - System Colors */
|
||||
--color-primary: #4D3F3C;
|
||||
--color-secondary: #A39660;
|
||||
--color-text: #262626;
|
||||
--color-emphasis: #46483B;
|
||||
|
||||
/* Custom Colors */
|
||||
--color-beige: #D8D3C7;
|
||||
--color-olive: #6E6F5F;
|
||||
--color-bg: #F5F5F5;
|
||||
|
||||
/* UI Colors */
|
||||
--color-surface: #ffffff;
|
||||
--color-surface-2: #f8f8f8;
|
||||
--color-muted: #6b7280;
|
||||
--color-accent: #A39660;
|
||||
--color-success: #065f46;
|
||||
--color-error: #b91c1c;
|
||||
--color-border: #e5e7eb;
|
||||
--color-border-focus: color-mix(in oklab, var(--color-primary) 60%, white 40%);
|
||||
|
||||
/* Spacing */
|
||||
--space-1: 0.5rem;
|
||||
--space-2: 1rem;
|
||||
--space-3: 1.5rem;
|
||||
--space-4: 2rem;
|
||||
--space-5: 3rem;
|
||||
--space-6: 4rem;
|
||||
|
||||
/* Typography */
|
||||
--font-family-sans: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
|
||||
--font-family-serif: "Playfair Display", Georgia, Cambria, "Times New Roman", Times, serif;
|
||||
--font-size-sm: 0.875rem;
|
||||
--font-size-base: 1rem;
|
||||
--font-size-lg: 1.125rem;
|
||||
--font-size-xl: 1.25rem;
|
||||
--font-size-2xl: 1.5rem;
|
||||
--font-size-3xl: 1.875rem;
|
||||
--font-size-4xl: 2.25rem;
|
||||
--line-height-tight: 1.25;
|
||||
--line-height-normal: 1.5;
|
||||
--line-height-relaxed: 1.75;
|
||||
|
||||
/* Design tokens */
|
||||
--radius: 14px;
|
||||
--radius-sm: 8px;
|
||||
--radius-lg: 20px;
|
||||
--radius-full: 9999px;
|
||||
--shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
|
||||
--shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
|
||||
--transition: 0.2s ease-in-out;
|
||||
|
||||
/* Layout */
|
||||
--container-max-width: 1200px;
|
||||
--header-height: 80px;
|
||||
}
|
||||
|
||||
/* CSS Reset */
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
html {
|
||||
font-size: 16px;
|
||||
-webkit-text-size-adjust: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: var(--font-family-sans);
|
||||
font-size: var(--font-size-base);
|
||||
line-height: var(--line-height-normal);
|
||||
color: var(--color-text);
|
||||
background-color: var(--color-bg);
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
/* Remove default margins */
|
||||
h1, h2, h3, h4, h5, h6,
|
||||
p, ul, ol, dl, dd,
|
||||
blockquote, figure, fieldset, legend {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* Images */
|
||||
img, picture, video, canvas, svg {
|
||||
display: block;
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/* Forms */
|
||||
input, button, textarea, select {
|
||||
font: inherit;
|
||||
letter-spacing: inherit;
|
||||
}
|
||||
|
||||
button {
|
||||
background: none;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* Lists */
|
||||
ul, ol {
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
/* Links */
|
||||
a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* Focus styles */
|
||||
:focus-visible {
|
||||
outline: 2px solid var(--color-border-focus);
|
||||
outline-offset: 2px;
|
||||
}
|
||||
|
||||
/* Typography */
|
||||
.h1, h1 {
|
||||
font-family: var(--font-family-serif);
|
||||
font-size: var(--font-size-4xl);
|
||||
font-weight: 700;
|
||||
line-height: var(--line-height-tight);
|
||||
margin-bottom: var(--space-4);
|
||||
}
|
||||
|
||||
.h2, h2 {
|
||||
font-family: var(--font-family-serif);
|
||||
font-size: var(--font-size-3xl);
|
||||
font-weight: 600;
|
||||
line-height: var(--line-height-tight);
|
||||
margin-bottom: var(--space-3);
|
||||
}
|
||||
|
||||
.h3, h3 {
|
||||
font-size: var(--font-size-xl);
|
||||
font-weight: 600;
|
||||
line-height: var(--line-height-tight);
|
||||
margin-bottom: var(--space-2);
|
||||
}
|
||||
|
||||
.h4, h4 {
|
||||
font-size: var(--font-size-lg);
|
||||
font-weight: 600;
|
||||
line-height: var(--line-height-normal);
|
||||
margin-bottom: var(--space-2);
|
||||
}
|
||||
|
||||
p {
|
||||
margin-bottom: var(--space-3);
|
||||
line-height: var(--line-height-relaxed);
|
||||
}
|
||||
|
||||
/* Utilities */
|
||||
.sr-only {
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
padding: 0;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
clip: rect(0, 0, 0, 0);
|
||||
white-space: nowrap;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: var(--container-max-width);
|
||||
margin: 0 auto;
|
||||
padding: 0 var(--space-4);
|
||||
}
|
||||
|
||||
/* Responsive breakpoints */
|
||||
@media (max-width: 768px) {
|
||||
:root {
|
||||
--font-size-4xl: 2rem;
|
||||
--font-size-3xl: 1.75rem;
|
||||
}
|
||||
|
||||
.container {
|
||||
padding: 0 var(--space-3);
|
||||
}
|
||||
|
||||
.h1, h1 {
|
||||
font-size: var(--font-size-4xl);
|
||||
}
|
||||
|
||||
.h2, h2 {
|
||||
font-size: var(--font-size-3xl);
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.container {
|
||||
padding: 0 var(--space-2);
|
||||
}
|
||||
}
|
||||
|
||||
/* Accessibility */
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
animation-duration: 0.01ms !important;
|
||||
animation-iteration-count: 1 !important;
|
||||
transition-duration: 0.01ms !important;
|
||||
scroll-behavior: auto !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* High contrast mode */
|
||||
@media (prefers-contrast: high) {
|
||||
:root {
|
||||
--color-border: #000000;
|
||||
--shadow: none;
|
||||
}
|
||||
}
|
||||
412
css/carousel.css
Normal file
412
css/carousel.css
Normal file
@@ -0,0 +1,412 @@
|
||||
/* ========================================
|
||||
CAROUSEL.CSS - CTA Section with Image Carousel
|
||||
======================================== */
|
||||
|
||||
/* CTA Carousel Section */
|
||||
.cta-carousel {
|
||||
padding: var(--space-6) 0;
|
||||
background: linear-gradient(135deg, var(--color-surface) 0%, white 100%);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.cta-carousel::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f5e6f5' fill-opacity='0.3'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.cta-carousel__content {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: var(--space-5);
|
||||
align-items: center;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
padding: 0 var(--space-4);
|
||||
}
|
||||
|
||||
@media (min-width: 1024px) {
|
||||
.cta-carousel__content {
|
||||
grid-template-columns: 1fr;
|
||||
gap: var(--space-6);
|
||||
align-items: center;
|
||||
justify-items: center;
|
||||
text-align: center;
|
||||
max-width: 1000px;
|
||||
}
|
||||
}
|
||||
|
||||
/* CTA Text Content */
|
||||
.cta-carousel__text {
|
||||
text-align: center;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
@media (min-width: 1024px) {
|
||||
.cta-carousel__text {
|
||||
text-align: center;
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
|
||||
.cta-carousel__text h2 {
|
||||
font-size: clamp(2rem, 4vw, 2.5rem);
|
||||
color: var(--color-primary);
|
||||
margin-bottom: var(--space-3);
|
||||
line-height: var(--line-height-tight);
|
||||
}
|
||||
|
||||
.cta-carousel__text p {
|
||||
font-size: var(--font-size-lg);
|
||||
color: var(--color-muted);
|
||||
margin-bottom: var(--space-4);
|
||||
line-height: var(--line-height-relaxed);
|
||||
}
|
||||
|
||||
/* Stats Section */
|
||||
.cta-carousel__stats {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: var(--space-3);
|
||||
margin-bottom: var(--space-4);
|
||||
padding: var(--space-4);
|
||||
background: rgba(255, 255, 255, 0.8);
|
||||
border-radius: var(--radius);
|
||||
box-shadow: var(--shadow);
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.cta-carousel__stats {
|
||||
grid-template-columns: 1fr;
|
||||
gap: var(--space-2);
|
||||
padding: var(--space-3);
|
||||
}
|
||||
}
|
||||
|
||||
.stat-item {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.stat-number {
|
||||
display: block;
|
||||
font-size: var(--font-size-3xl);
|
||||
font-weight: bold;
|
||||
color: var(--color-primary);
|
||||
line-height: 1;
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
font-size: var(--font-size-sm);
|
||||
color: var(--color-muted);
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
/* CTA Actions */
|
||||
.cta-carousel__actions {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--space-4);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
@media (min-width: 640px) {
|
||||
.cta-carousel__actions {
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
gap: var(--space-5);
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1024px) {
|
||||
.cta-carousel__actions {
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
|
||||
/* Image Carousel Container */
|
||||
.cta-carousel__images {
|
||||
position: relative;
|
||||
max-width: 500px;
|
||||
margin: 0 auto;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.image-carousel {
|
||||
position: relative;
|
||||
border-radius: var(--radius-lg);
|
||||
overflow: hidden;
|
||||
box-shadow: var(--shadow-lg);
|
||||
background: white;
|
||||
}
|
||||
|
||||
/* Carousel Track */
|
||||
.carousel-track {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 400px;
|
||||
}
|
||||
|
||||
.carousel-slide {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
opacity: 0;
|
||||
transition: opacity 0.5s ease-in-out;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.carousel-slide.active {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.carousel-slide img {
|
||||
width: 100%;
|
||||
height: 70%;
|
||||
object-fit: cover;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Slide Captions */
|
||||
.slide-caption {
|
||||
flex: 1;
|
||||
padding: var(--space-3);
|
||||
background: white;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.slide-caption h4 {
|
||||
margin: 0 0 0.5rem 0;
|
||||
color: var(--color-primary);
|
||||
font-size: var(--font-size-lg);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.slide-caption p {
|
||||
margin: 0;
|
||||
color: var(--color-muted);
|
||||
font-size: var(--font-size-sm);
|
||||
line-height: var(--line-height-normal);
|
||||
}
|
||||
|
||||
/* Carousel Controls */
|
||||
.carousel-btn {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
border: none;
|
||||
border-radius: 50%;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
cursor: pointer;
|
||||
transition: var(--transition);
|
||||
color: var(--color-primary);
|
||||
box-shadow: var(--shadow);
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.carousel-btn:hover {
|
||||
background: white;
|
||||
color: var(--color-primary-hover);
|
||||
transform: translateY(-50%) scale(1.1);
|
||||
}
|
||||
|
||||
.carousel-btn:active {
|
||||
transform: translateY(-50%) scale(0.95);
|
||||
}
|
||||
|
||||
.carousel-btn--prev {
|
||||
left: var(--space-2);
|
||||
}
|
||||
|
||||
.carousel-btn--next {
|
||||
right: var(--space-2);
|
||||
}
|
||||
|
||||
.carousel-btn svg {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
/* Carousel Indicators */
|
||||
.carousel-indicators {
|
||||
position: absolute;
|
||||
bottom: var(--space-2);
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
display: flex;
|
||||
gap: var(--space-1);
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.carousel-indicator {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border-radius: 50%;
|
||||
border: none;
|
||||
background: rgba(255, 255, 255, 0.5);
|
||||
cursor: pointer;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.carousel-indicator:hover {
|
||||
background: rgba(255, 255, 255, 0.8);
|
||||
}
|
||||
|
||||
.carousel-indicator.active {
|
||||
background: white;
|
||||
box-shadow: 0 0 0 2px var(--color-primary);
|
||||
}
|
||||
|
||||
/* Carousel Touch/Swipe Support */
|
||||
.carousel-track {
|
||||
touch-action: pan-y;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.carousel-slide {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.carousel-slide.active {
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
/* Loading State */
|
||||
.carousel-slide img {
|
||||
background: var(--color-surface);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.carousel-slide img:not([src]) {
|
||||
background: linear-gradient(90deg, var(--color-surface) 25%, rgba(255,255,255,0.5) 50%, var(--color-surface) 75%);
|
||||
background-size: 200% 100%;
|
||||
animation: loading 1.5s infinite;
|
||||
}
|
||||
|
||||
@keyframes loading {
|
||||
0% {
|
||||
background-position: 200% 0;
|
||||
}
|
||||
100% {
|
||||
background-position: -200% 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* Auto-play indicator */
|
||||
.carousel-progress {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
height: 3px;
|
||||
background: var(--color-primary);
|
||||
transition: width 0.1s ease-out;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
/* Responsive adjustments */
|
||||
@media (max-width: 768px) {
|
||||
.cta-carousel {
|
||||
padding: var(--space-5) 0;
|
||||
}
|
||||
|
||||
.cta-carousel__content {
|
||||
gap: var(--space-4);
|
||||
}
|
||||
|
||||
.carousel-track {
|
||||
height: 320px;
|
||||
}
|
||||
|
||||
.carousel-btn {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
}
|
||||
|
||||
.carousel-btn svg {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
.carousel-btn--prev {
|
||||
left: var(--space-1);
|
||||
}
|
||||
|
||||
.carousel-btn--next {
|
||||
right: var(--space-1);
|
||||
}
|
||||
|
||||
.slide-caption {
|
||||
padding: var(--space-2);
|
||||
}
|
||||
|
||||
.slide-caption h4 {
|
||||
font-size: var(--font-size-base);
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.carousel-track {
|
||||
height: 280px;
|
||||
}
|
||||
|
||||
.cta-carousel__actions {
|
||||
gap: var(--space-2);
|
||||
}
|
||||
|
||||
.cta-carousel__actions .btn {
|
||||
width: 100%;
|
||||
max-width: 280px;
|
||||
}
|
||||
}
|
||||
|
||||
/* High contrast mode */
|
||||
@media (prefers-contrast: high) {
|
||||
.carousel-btn {
|
||||
background: white;
|
||||
border: 2px solid var(--color-primary);
|
||||
}
|
||||
|
||||
.carousel-indicator {
|
||||
border: 1px solid var(--color-primary);
|
||||
}
|
||||
}
|
||||
|
||||
/* Reduced motion */
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.carousel-slide {
|
||||
transition: none;
|
||||
}
|
||||
|
||||
.carousel-btn {
|
||||
transition: none;
|
||||
}
|
||||
|
||||
.carousel-indicator {
|
||||
transition: none;
|
||||
}
|
||||
|
||||
/* Disable auto-play if reduced motion is preferred */
|
||||
.carousel-progress {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
821
css/components.css
Normal file
821
css/components.css
Normal file
@@ -0,0 +1,821 @@
|
||||
/* ========================================
|
||||
COMPONENTS.CSS - Buttons, Cards, Forms
|
||||
======================================== */
|
||||
|
||||
/* Buttons */
|
||||
.btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 0.875rem 1.25rem;
|
||||
border-radius: var(--radius-full);
|
||||
border: 1px solid transparent;
|
||||
gap: 0.5rem;
|
||||
font-weight: 600;
|
||||
font-size: var(--font-size-base);
|
||||
text-decoration: none;
|
||||
transition: var(--transition);
|
||||
cursor: pointer;
|
||||
min-height: 44px; /* iOS touch target */
|
||||
min-width: 44px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.btn:hover {
|
||||
text-decoration: none;
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.btn:active {
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.btn--primary {
|
||||
background: var(--color-primary);
|
||||
color: white;
|
||||
border-color: var(--color-primary);
|
||||
}
|
||||
|
||||
.btn--primary:hover {
|
||||
background: var(--color-primary-hover);
|
||||
border-color: var(--color-primary-hover);
|
||||
}
|
||||
|
||||
.btn--ghost {
|
||||
background: transparent;
|
||||
border-color: var(--color-border);
|
||||
color: var(--color-text);
|
||||
}
|
||||
|
||||
.btn--ghost:hover {
|
||||
background: var(--color-surface);
|
||||
border-color: var(--color-primary);
|
||||
color: var(--color-primary);
|
||||
}
|
||||
|
||||
.btn--lg {
|
||||
padding: 1rem 2rem;
|
||||
font-size: var(--font-size-lg);
|
||||
}
|
||||
|
||||
.btn--full {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Benefit Cards */
|
||||
.benefit-card {
|
||||
background: white;
|
||||
padding: var(--space-4);
|
||||
border-radius: var(--radius);
|
||||
box-shadow: var(--shadow);
|
||||
text-align: center;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.benefit-card:hover {
|
||||
transform: translateY(-4px);
|
||||
box-shadow: var(--shadow-lg);
|
||||
}
|
||||
|
||||
.benefit-card__icon {
|
||||
font-size: 3rem;
|
||||
margin-bottom: var(--space-3);
|
||||
display: block;
|
||||
}
|
||||
|
||||
.benefit-card h3 {
|
||||
color: var(--color-primary);
|
||||
margin-bottom: var(--space-2);
|
||||
font-size: var(--font-size-xl);
|
||||
}
|
||||
|
||||
.benefit-card p {
|
||||
color: var(--color-muted);
|
||||
margin: 0;
|
||||
line-height: var(--line-height-relaxed);
|
||||
}
|
||||
|
||||
/* Profile Cards */
|
||||
.profile__requirements,
|
||||
.profile__desired {
|
||||
background: white;
|
||||
padding: var(--space-4);
|
||||
border-radius: var(--radius);
|
||||
box-shadow: var(--shadow);
|
||||
}
|
||||
|
||||
.profile__requirements h3 {
|
||||
color: var(--color-primary);
|
||||
border-bottom: 2px solid var(--color-primary);
|
||||
padding-bottom: var(--space-2);
|
||||
}
|
||||
|
||||
.profile__desired h3 {
|
||||
color: var(--color-accent);
|
||||
border-bottom: 2px solid var(--color-accent);
|
||||
padding-bottom: var(--space-2);
|
||||
}
|
||||
|
||||
/* Checklists */
|
||||
.checklist {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.checklist li {
|
||||
position: relative;
|
||||
padding: var(--space-2) 0 var(--space-2) var(--space-4);
|
||||
border-bottom: 1px solid var(--color-border);
|
||||
}
|
||||
|
||||
.checklist li:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.checklist li::before {
|
||||
content: "✓";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: var(--space-2);
|
||||
color: var(--color-primary);
|
||||
font-weight: bold;
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
.checklist--secondary li::before {
|
||||
color: var(--color-accent);
|
||||
}
|
||||
|
||||
/* Process Steps */
|
||||
.process__step {
|
||||
text-align: center;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.process__number {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
border-radius: 50%;
|
||||
background: var(--color-primary);
|
||||
color: white;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: var(--font-size-xl);
|
||||
font-weight: bold;
|
||||
margin: 0 auto var(--space-3);
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.process__content h3 {
|
||||
color: var(--color-primary);
|
||||
margin-bottom: var(--space-2);
|
||||
}
|
||||
|
||||
.process__content p {
|
||||
color: var(--color-muted);
|
||||
margin: 0;
|
||||
font-size: var(--font-size-sm);
|
||||
}
|
||||
|
||||
/* Process timeline connection (desktop) */
|
||||
@media (min-width: 1024px) {
|
||||
.process__step:not(:last-child)::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 30px;
|
||||
left: calc(50% + 30px);
|
||||
right: calc(-50% + 30px);
|
||||
height: 2px;
|
||||
background: var(--color-border);
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
|
||||
/* FAQ Items - Elegant & Dynamic */
|
||||
.faq__item {
|
||||
background: white;
|
||||
border-radius: var(--radius-lg);
|
||||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
|
||||
overflow: hidden;
|
||||
border: 1px solid rgba(163, 150, 96, 0.1);
|
||||
transition: all 0.3s ease;
|
||||
position: relative;
|
||||
margin-bottom: var(--space-3);
|
||||
}
|
||||
|
||||
.faq__item::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 4px;
|
||||
background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
|
||||
transform: scaleX(0);
|
||||
transition: transform 0.3s ease;
|
||||
transform-origin: left;
|
||||
}
|
||||
|
||||
.faq__item:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
|
||||
border-color: var(--color-primary);
|
||||
}
|
||||
|
||||
.faq__item:hover::before {
|
||||
transform: scaleX(1);
|
||||
}
|
||||
|
||||
.faq__question {
|
||||
background: white;
|
||||
padding: var(--space-4) var(--space-5);
|
||||
cursor: pointer;
|
||||
font-weight: 600;
|
||||
font-size: var(--font-size-lg);
|
||||
color: var(--color-text);
|
||||
border: none;
|
||||
list-style: none;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
transition: all 0.3s ease;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.faq__question::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -100%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: linear-gradient(90deg, transparent, rgba(163, 150, 96, 0.1), transparent);
|
||||
transition: left 0.6s ease;
|
||||
}
|
||||
|
||||
.faq__question:hover::before {
|
||||
left: 100%;
|
||||
}
|
||||
|
||||
.faq__question:hover {
|
||||
background: linear-gradient(135deg, rgba(163, 150, 96, 0.05) 0%, white 100%);
|
||||
color: var(--color-primary);
|
||||
}
|
||||
|
||||
.faq__question::after {
|
||||
content: "+";
|
||||
font-size: 2em;
|
||||
font-weight: 300;
|
||||
color: var(--color-primary);
|
||||
transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 50%;
|
||||
background: rgba(163, 150, 96, 0.1);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.faq__question:hover::after {
|
||||
background: var(--color-primary);
|
||||
color: white;
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
.faq__item[open] .faq__question::after {
|
||||
transform: rotate(45deg) scale(1.1);
|
||||
background: var(--color-primary);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.faq__item[open] .faq__question {
|
||||
background: linear-gradient(135deg, rgba(163, 150, 96, 0.08) 0%, white 100%);
|
||||
color: var(--color-primary);
|
||||
border-bottom: 1px solid rgba(163, 150, 96, 0.2);
|
||||
}
|
||||
|
||||
.faq__answer {
|
||||
padding: 0 var(--space-5) var(--space-4);
|
||||
color: var(--color-text);
|
||||
line-height: var(--line-height-relaxed);
|
||||
background: linear-gradient(180deg, rgba(163, 150, 96, 0.02) 0%, white 100%);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.faq__answer::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: var(--space-5);
|
||||
right: var(--space-5);
|
||||
height: 1px;
|
||||
background: linear-gradient(90deg, transparent, rgba(163, 150, 96, 0.3), transparent);
|
||||
}
|
||||
|
||||
.faq__answer p {
|
||||
margin: 0;
|
||||
font-size: var(--font-size-base);
|
||||
animation: fadeInUp 0.5s ease forwards;
|
||||
opacity: 0;
|
||||
transform: translateY(10px);
|
||||
}
|
||||
|
||||
.faq__item[open] .faq__answer p {
|
||||
animation: fadeInUp 0.5s ease forwards;
|
||||
}
|
||||
|
||||
@keyframes fadeInUp {
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
/* Enhanced text styling within FAQ answers */
|
||||
.faq__answer strong {
|
||||
color: var(--color-primary);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.faq__answer em {
|
||||
color: var(--color-emphasis);
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.faq__answer u {
|
||||
color: var(--color-secondary);
|
||||
text-decoration: underline;
|
||||
text-decoration-color: var(--color-primary);
|
||||
text-decoration-thickness: 2px;
|
||||
text-underline-offset: 3px;
|
||||
}
|
||||
|
||||
/* Responsive FAQ adjustments */
|
||||
@media (max-width: 768px) {
|
||||
.faq__question {
|
||||
padding: var(--space-3) var(--space-4);
|
||||
font-size: var(--font-size-base);
|
||||
}
|
||||
|
||||
.faq__answer {
|
||||
padding: 0 var(--space-4) var(--space-3);
|
||||
}
|
||||
|
||||
.faq__question::after {
|
||||
font-size: 1.5em;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Testimonial Cards */
|
||||
.testimonial-card {
|
||||
background: white;
|
||||
padding: var(--space-6) var(--space-4);
|
||||
border-radius: var(--radius);
|
||||
box-shadow: var(--shadow);
|
||||
display: flex !important;
|
||||
flex-direction: column !important;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
text-align: center !important;
|
||||
align-items: center !important;
|
||||
justify-content: flex-start !important;
|
||||
gap: var(--space-4);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.testimonial-card__author {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: var(--space-3);
|
||||
order: 1;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.testimonial-card__author img {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
border-radius: 50%;
|
||||
object-fit: cover;
|
||||
border: 2px solid #f0f0f0;
|
||||
}
|
||||
|
||||
.testimonial-card__author div {
|
||||
text-align: center;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--space-1);
|
||||
}
|
||||
|
||||
.testimonial-card__author cite {
|
||||
font-weight: 700;
|
||||
color: var(--color-text);
|
||||
font-style: normal;
|
||||
display: block;
|
||||
font-size: 1.25rem;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.testimonial-card__author span {
|
||||
color: var(--color-muted);
|
||||
font-size: var(--font-size-sm);
|
||||
display: block;
|
||||
font-weight: 500;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.testimonial-card__content {
|
||||
order: 2;
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
text-align: center;
|
||||
padding: 0 var(--space-2);
|
||||
}
|
||||
|
||||
.testimonial-card__content p {
|
||||
color: var(--color-muted);
|
||||
font-style: italic;
|
||||
line-height: var(--line-height-relaxed);
|
||||
margin: 0;
|
||||
font-size: 1.1rem;
|
||||
max-width: none;
|
||||
}
|
||||
|
||||
/* Form Components */
|
||||
.field {
|
||||
margin-bottom: var(--space-4);
|
||||
}
|
||||
|
||||
.field label {
|
||||
display: block;
|
||||
font-weight: 600;
|
||||
color: var(--color-text);
|
||||
margin-bottom: var(--space-1);
|
||||
font-size: var(--font-size-sm);
|
||||
}
|
||||
|
||||
.field input,
|
||||
.field select,
|
||||
.field textarea {
|
||||
width: 100%;
|
||||
padding: 0.875rem;
|
||||
border: 1px solid var(--color-border);
|
||||
border-radius: var(--radius);
|
||||
background: white;
|
||||
font-size: 16px; /* Prevent zoom on iOS */
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.field input:focus,
|
||||
.field select:focus,
|
||||
.field textarea:focus {
|
||||
outline: 2px solid var(--color-border-focus);
|
||||
outline-offset: 2px;
|
||||
border-color: var(--color-primary);
|
||||
}
|
||||
|
||||
.field textarea {
|
||||
resize: vertical;
|
||||
min-height: 100px;
|
||||
}
|
||||
|
||||
.field select {
|
||||
cursor: pointer;
|
||||
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
|
||||
background-position: right 0.5rem center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 1.5em 1.5em;
|
||||
padding-right: 2.5rem;
|
||||
appearance: none;
|
||||
}
|
||||
|
||||
.error {
|
||||
color: var(--color-error);
|
||||
font-size: var(--font-size-sm);
|
||||
margin-top: 0.25rem;
|
||||
display: block;
|
||||
min-height: 1.2em;
|
||||
}
|
||||
|
||||
.hint {
|
||||
color: var(--color-muted);
|
||||
font-size: var(--font-size-sm);
|
||||
margin-top: 0.25rem;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Checkbox groups */
|
||||
.checkbox-group {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||||
gap: var(--space-2);
|
||||
margin-top: var(--space-2);
|
||||
}
|
||||
|
||||
.checkbox-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: var(--space-2);
|
||||
padding: var(--space-2);
|
||||
border: 1px solid var(--color-border);
|
||||
border-radius: var(--radius-sm);
|
||||
cursor: pointer;
|
||||
transition: var(--transition);
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.checkbox-item:hover {
|
||||
background: var(--color-surface);
|
||||
border-color: var(--color-primary);
|
||||
}
|
||||
|
||||
.checkbox-item input {
|
||||
width: auto;
|
||||
margin: 0;
|
||||
accent-color: var(--color-primary);
|
||||
}
|
||||
|
||||
.checkbox-item input:checked + span {
|
||||
color: var(--color-primary);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
/* Single checkbox (consent) */
|
||||
.field.checkbox {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: var(--space-2);
|
||||
margin-bottom: var(--space-4);
|
||||
}
|
||||
|
||||
.field.checkbox input {
|
||||
width: auto;
|
||||
margin: 0;
|
||||
margin-top: 0.25rem;
|
||||
accent-color: var(--color-primary);
|
||||
}
|
||||
|
||||
.field.checkbox label {
|
||||
margin: 0;
|
||||
font-weight: normal;
|
||||
line-height: var(--line-height-relaxed);
|
||||
font-size: var(--font-size-sm);
|
||||
}
|
||||
|
||||
.field.checkbox label a {
|
||||
color: var(--color-primary);
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* File input */
|
||||
input[type="file"] {
|
||||
padding: 0.5rem;
|
||||
border: 2px dashed var(--color-border);
|
||||
background: var(--color-surface);
|
||||
}
|
||||
|
||||
input[type="file"]:focus {
|
||||
border-color: var(--color-primary);
|
||||
background: white;
|
||||
}
|
||||
|
||||
/* Form validation states */
|
||||
.field--error input,
|
||||
.field--error select,
|
||||
.field--error textarea {
|
||||
border-color: var(--color-error);
|
||||
}
|
||||
|
||||
.field--success input,
|
||||
.field--success select,
|
||||
.field--success textarea {
|
||||
border-color: var(--color-success);
|
||||
}
|
||||
|
||||
/* Loading states */
|
||||
.btn--loading {
|
||||
position: relative;
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
.btn--loading::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
border: 2px solid transparent;
|
||||
border-top-color: currentColor;
|
||||
border-radius: 50%;
|
||||
animation: spin 1s linear infinite;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
to {
|
||||
transform: translate(-50%, -50%) rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
/* Mobile specific adjustments */
|
||||
@media (max-width: 768px) {
|
||||
.btn {
|
||||
padding: 0.75rem 1rem;
|
||||
}
|
||||
|
||||
.btn--lg {
|
||||
padding: 0.875rem 1.5rem;
|
||||
}
|
||||
|
||||
.checkbox-group {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.benefit-card,
|
||||
.testimonial-card,
|
||||
.profile__requirements,
|
||||
.profile__desired {
|
||||
padding: var(--space-3);
|
||||
}
|
||||
|
||||
.process__number {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
font-size: var(--font-size-lg);
|
||||
}
|
||||
}
|
||||
|
||||
/* High contrast mode adjustments */
|
||||
@media (prefers-contrast: high) {
|
||||
.btn {
|
||||
border-width: 2px;
|
||||
}
|
||||
|
||||
.benefit-card,
|
||||
.testimonial-card,
|
||||
.faq__item,
|
||||
.profile__requirements,
|
||||
.profile__desired {
|
||||
border: 1px solid var(--color-border);
|
||||
}
|
||||
}
|
||||
|
||||
/* ========================================
|
||||
PRIVACY POLICY STYLES
|
||||
======================================== */
|
||||
|
||||
/* Privacy Policy */
|
||||
.privacy-policy {
|
||||
padding: 4rem 0 6rem;
|
||||
background: var(--color-bg-secondary);
|
||||
}
|
||||
|
||||
.privacy-policy__content {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
background: white;
|
||||
border-radius: var(--radius-lg);
|
||||
padding: 3rem;
|
||||
box-shadow: var(--shadow-lg);
|
||||
}
|
||||
|
||||
.privacy-policy__header {
|
||||
text-align: center;
|
||||
margin-bottom: 3rem;
|
||||
padding-bottom: 2rem;
|
||||
border-bottom: 1px solid var(--color-border-light);
|
||||
}
|
||||
|
||||
.privacy-policy__title {
|
||||
font-family: var(--font-heading);
|
||||
font-size: 2.5rem;
|
||||
font-weight: 700;
|
||||
color: var(--color-primary);
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.privacy-policy__subtitle {
|
||||
font-size: 1.25rem;
|
||||
color: var(--color-text-muted);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.privacy-policy__body {
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
.privacy-policy__intro {
|
||||
font-size: 1.125rem;
|
||||
margin-bottom: 2.5rem;
|
||||
padding: 1.5rem;
|
||||
background: var(--color-bg-tertiary);
|
||||
border-radius: var(--radius-md);
|
||||
border-left: 4px solid var(--color-primary);
|
||||
}
|
||||
|
||||
.privacy-policy__section {
|
||||
margin-bottom: 2.5rem;
|
||||
}
|
||||
|
||||
.privacy-policy__section h2 {
|
||||
font-family: var(--font-heading);
|
||||
font-size: 1.5rem;
|
||||
font-weight: 600;
|
||||
color: var(--color-heading);
|
||||
margin-bottom: 1rem;
|
||||
padding-bottom: 0.5rem;
|
||||
border-bottom: 2px solid var(--color-primary);
|
||||
}
|
||||
|
||||
.privacy-policy__section p {
|
||||
margin-bottom: 1rem;
|
||||
color: var(--color-text);
|
||||
}
|
||||
|
||||
.privacy-policy__list {
|
||||
margin-left: 1.5rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.privacy-policy__list li {
|
||||
margin-bottom: 0.5rem;
|
||||
color: var(--color-text);
|
||||
}
|
||||
|
||||
.privacy-policy__link {
|
||||
color: var(--color-primary);
|
||||
text-decoration: underline;
|
||||
font-weight: 600;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.privacy-policy__link:hover {
|
||||
color: var(--color-primary-hover);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.privacy-policy__footer {
|
||||
margin-top: 3rem;
|
||||
padding-top: 2rem;
|
||||
border-top: 1px solid var(--color-border-light);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.privacy-policy__updated {
|
||||
color: var(--color-text-muted);
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.privacy-policy__actions {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
/* Mobile Responsiveness for Privacy Policy */
|
||||
@media (max-width: 768px) {
|
||||
.privacy-policy {
|
||||
padding: 2rem 0 4rem;
|
||||
}
|
||||
|
||||
.privacy-policy__content {
|
||||
margin: 0 1rem;
|
||||
padding: 2rem 1.5rem;
|
||||
}
|
||||
|
||||
.privacy-policy__title {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.privacy-policy__subtitle {
|
||||
font-size: 1.125rem;
|
||||
}
|
||||
|
||||
.privacy-policy__intro {
|
||||
font-size: 1rem;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.privacy-policy__section h2 {
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
.privacy-policy__actions {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.privacy-policy__actions .btn {
|
||||
width: 100%;
|
||||
max-width: 280px;
|
||||
}
|
||||
}
|
||||
718
css/layout.css
Normal file
718
css/layout.css
Normal file
@@ -0,0 +1,718 @@
|
||||
/* ========================================
|
||||
LAYOUT.CSS - Grid, Sections, Mobile-First
|
||||
======================================== */
|
||||
|
||||
/* Header & Navigation */
|
||||
.site-header {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 50;
|
||||
background: rgba(255, 255, 255, 0.8);
|
||||
backdrop-filter: saturate(1.2) blur(8px);
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
|
||||
height: var(--header-height);
|
||||
}
|
||||
|
||||
.nav {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
height: 100%;
|
||||
max-width: var(--container-max-width);
|
||||
margin: 0 auto;
|
||||
padding: 0 var(--space-4);
|
||||
}
|
||||
|
||||
.nav__logo img {
|
||||
height: 40px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.nav__toggle {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 4px;
|
||||
padding: var(--space-2);
|
||||
border-radius: var(--radius-sm);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.nav__toggle span {
|
||||
display: block;
|
||||
width: 24px;
|
||||
height: 2px;
|
||||
background: var(--color-text);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
|
||||
transform: rotate(45deg) translate(6px, 6px);
|
||||
}
|
||||
|
||||
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
|
||||
transform: rotate(-45deg) translate(6px, -6px);
|
||||
}
|
||||
|
||||
.nav__menu {
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: white;
|
||||
border-bottom: 1px solid var(--color-border);
|
||||
box-shadow: var(--shadow);
|
||||
padding: var(--space-3) var(--space-4);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--space-2);
|
||||
}
|
||||
|
||||
.nav__menu[hidden] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.nav__menu a {
|
||||
padding: var(--space-2) 0;
|
||||
color: var(--color-text);
|
||||
font-weight: 500;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.nav__menu a:hover {
|
||||
color: var(--color-primary);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.nav__actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: var(--space-2);
|
||||
}
|
||||
|
||||
.nav__whatsapp {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Desktop Navigation */
|
||||
@media (min-width: 768px) {
|
||||
.nav {
|
||||
padding: 0 var(--space-5);
|
||||
}
|
||||
|
||||
.nav__toggle {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.nav__menu {
|
||||
position: static;
|
||||
background: transparent;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
padding: 0;
|
||||
flex-direction: row;
|
||||
gap: var(--space-4);
|
||||
}
|
||||
|
||||
.nav__menu[hidden] {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.nav__whatsapp {
|
||||
display: inline-flex;
|
||||
}
|
||||
}
|
||||
|
||||
/* Hero Section */
|
||||
.hero {
|
||||
padding: var(--space-4) 0;
|
||||
background: linear-gradient(135deg, var(--color-surface) 0%, white 100%);
|
||||
min-height: calc(100vh - var(--header-height));
|
||||
margin-top: var(--header-height);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.hero .container {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: var(--space-4);
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.hero__content {
|
||||
text-align: center;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.hero__title {
|
||||
font-size: clamp(1.75rem, 5vw, 3.5rem);
|
||||
margin-bottom: var(--space-3);
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.hero__rotating {
|
||||
color: var(--color-primary);
|
||||
font-weight: 700;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
min-width: 200px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.hero__rotating::after {
|
||||
content: '|';
|
||||
color: var(--color-primary);
|
||||
animation: blink 1.2s infinite;
|
||||
font-weight: 400;
|
||||
margin-left: 2px;
|
||||
}
|
||||
|
||||
.hero__rotating.typing::after {
|
||||
animation: none;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
0%, 50% { opacity: 1; }
|
||||
51%, 100% { opacity: 0; }
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
from { opacity: 0; }
|
||||
to { opacity: 1; }
|
||||
}
|
||||
|
||||
.hero__rotating.fade-in {
|
||||
animation: fadeIn 0.3s ease-in;
|
||||
}
|
||||
|
||||
/* Respect reduced motion preference */
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.hero__rotating::after {
|
||||
animation: none;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.hero__rotating.fade-in {
|
||||
animation: none;
|
||||
}
|
||||
}
|
||||
|
||||
.hero__subtitle {
|
||||
font-size: var(--font-size-lg);
|
||||
color: var(--color-muted);
|
||||
max-width: 600px;
|
||||
margin: 0 auto var(--space-4);
|
||||
}
|
||||
|
||||
.hero__actions {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--space-3);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.hero__image {
|
||||
max-width: 280px;
|
||||
margin: 0 auto;
|
||||
width: 90%;
|
||||
}
|
||||
|
||||
/* Hero Carousel Styles */
|
||||
.hero__carousel {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
aspect-ratio: 1;
|
||||
overflow: hidden;
|
||||
border-radius: var(--radius-lg);
|
||||
box-shadow: var(--shadow-lg);
|
||||
}
|
||||
|
||||
.hero__slide {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
opacity: 0;
|
||||
transition: opacity 1s ease-in-out;
|
||||
}
|
||||
|
||||
.hero__slide.active {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.hero__slide img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
object-position: center;
|
||||
}
|
||||
|
||||
/* Desktop Hero */
|
||||
@media (min-width: 768px) {
|
||||
.hero {
|
||||
min-height: 70vh;
|
||||
padding: var(--space-6) 0;
|
||||
}
|
||||
|
||||
.hero .container {
|
||||
grid-template-columns: 1.1fr 0.9fr;
|
||||
gap: var(--space-6);
|
||||
}
|
||||
|
||||
.hero__content {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.hero__subtitle {
|
||||
margin: 0 0 var(--space-4) 0;
|
||||
}
|
||||
|
||||
.hero__actions {
|
||||
flex-direction: row;
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
|
||||
/* Section Layouts */
|
||||
.section-header {
|
||||
text-align: center;
|
||||
margin-bottom: var(--space-5);
|
||||
max-width: 700px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
padding: 0 var(--space-2);
|
||||
}
|
||||
|
||||
.section-header h2 {
|
||||
margin-bottom: var(--space-3);
|
||||
}
|
||||
|
||||
.section-header p {
|
||||
font-size: var(--font-size-lg);
|
||||
color: var(--color-muted);
|
||||
margin-bottom: 0;
|
||||
line-height: var(--line-height-relaxed);
|
||||
}
|
||||
|
||||
/* Benefits Section */
|
||||
.benefits {
|
||||
padding: var(--space-6) 0;
|
||||
background: white;
|
||||
}
|
||||
|
||||
.benefits__grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: var(--space-4);
|
||||
max-width: 1000px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
@media (min-width: 640px) {
|
||||
.benefits__grid {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: var(--space-5);
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1024px) {
|
||||
.benefits__grid {
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: var(--space-4);
|
||||
}
|
||||
}
|
||||
|
||||
/* Profile Section */
|
||||
.profile {
|
||||
padding: var(--space-6) 0;
|
||||
background: var(--color-surface);
|
||||
}
|
||||
|
||||
.profile__content {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: var(--space-5);
|
||||
margin-top: var(--space-4);
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.profile__content {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
/* Process Section */
|
||||
.process {
|
||||
padding: var(--space-6) 0;
|
||||
background: white;
|
||||
}
|
||||
|
||||
.process__timeline {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: var(--space-4);
|
||||
margin-top: var(--space-4);
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.process__timeline {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1024px) {
|
||||
.process__timeline {
|
||||
grid-template-columns: repeat(5, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
/* FAQ Section */
|
||||
.faq {
|
||||
padding: var(--space-6) 0;
|
||||
background: var(--color-surface);
|
||||
}
|
||||
|
||||
.faq__list {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: var(--space-3);
|
||||
margin-top: var(--space-4);
|
||||
max-width: 800px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
/* Testimonials Section */
|
||||
.testimonials {
|
||||
padding: var(--space-6) 0;
|
||||
background: white;
|
||||
}
|
||||
|
||||
/* Testimonials Carousel */
|
||||
.testimonials__carousel {
|
||||
position: relative;
|
||||
max-width: 800px;
|
||||
margin: var(--space-4) auto 0;
|
||||
}
|
||||
|
||||
.testimonials__track {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
border-radius: var(--radius-lg);
|
||||
}
|
||||
|
||||
.testimonial-slide {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
opacity: 0;
|
||||
transition: opacity 0.8s ease-in-out;
|
||||
transform: translateZ(0); /* Force GPU acceleration */
|
||||
}
|
||||
|
||||
.testimonial-slide.active {
|
||||
opacity: 1;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.testimonial-slide:not(.active) {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
/* Testimonials Controls */
|
||||
.testimonials__controls {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: var(--space-4);
|
||||
margin-top: var(--space-4);
|
||||
}
|
||||
|
||||
.testimonial-nav {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-radius: 50%;
|
||||
border: 2px solid var(--color-border);
|
||||
background: white;
|
||||
color: var(--color-muted);
|
||||
cursor: pointer;
|
||||
transition: var(--transition);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.testimonial-nav:hover {
|
||||
border-color: var(--color-primary);
|
||||
color: var(--color-primary);
|
||||
background: var(--color-light);
|
||||
}
|
||||
|
||||
.testimonial-nav:disabled {
|
||||
opacity: 0.4;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
/* Testimonials Indicators */
|
||||
.testimonials__indicators {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: var(--space-2);
|
||||
}
|
||||
|
||||
.testimonial-indicator {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border-radius: 50%;
|
||||
border: 2px solid var(--color-border);
|
||||
background: transparent;
|
||||
cursor: pointer;
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.testimonial-indicator:hover {
|
||||
border-color: var(--color-primary);
|
||||
background: rgba(197, 54, 148, 0.2);
|
||||
}
|
||||
|
||||
.testimonial-indicator.active {
|
||||
background: var(--color-primary);
|
||||
border-color: var(--color-primary);
|
||||
}
|
||||
|
||||
/* Application Section */
|
||||
.application {
|
||||
padding: var(--space-6) 0;
|
||||
background: var(--color-surface);
|
||||
}
|
||||
|
||||
.application-form {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
margin-top: var(--space-4);
|
||||
}
|
||||
|
||||
.form-section {
|
||||
margin-bottom: var(--space-5);
|
||||
}
|
||||
|
||||
.form-section h3 {
|
||||
margin-bottom: var(--space-3);
|
||||
padding-bottom: var(--space-2);
|
||||
border-bottom: 2px solid var(--color-primary);
|
||||
color: var(--color-primary);
|
||||
}
|
||||
|
||||
.form-hint {
|
||||
color: var(--color-muted);
|
||||
font-size: var(--font-size-sm);
|
||||
margin-bottom: var(--space-3);
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/* Footer */
|
||||
.site-footer {
|
||||
background: var(--color-text);
|
||||
color: white;
|
||||
padding: var(--space-5) 0 var(--space-4);
|
||||
}
|
||||
|
||||
.footer__content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--space-4);
|
||||
margin-bottom: var(--space-4);
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.footer__content {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.footer__brand {
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.footer__links {
|
||||
display: flex !important;
|
||||
flex-direction: column !important;
|
||||
align-items: flex-end !important;
|
||||
gap: var(--space-3) !important;
|
||||
}
|
||||
|
||||
.footer__links-top {
|
||||
display: flex !important;
|
||||
gap: var(--space-4) !important;
|
||||
}
|
||||
|
||||
.footer__links img {
|
||||
display: block !important;
|
||||
margin-top: var(--space-2) !important;
|
||||
}
|
||||
}
|
||||
|
||||
.footer__brand {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: var(--space-2);
|
||||
}
|
||||
|
||||
.footer__logos {
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
gap: var(--space-2);
|
||||
margin-bottom: var(--space-1);
|
||||
}
|
||||
|
||||
.footer__logos a {
|
||||
display: inline-block;
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
.footer__logos img:first-child,
|
||||
.footer__logos a:first-child img {
|
||||
height: 180px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.footer__logos img:last-child {
|
||||
height: 40px;
|
||||
width: auto;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.footer__brand p {
|
||||
color: rgba(255, 255, 255, 0.7);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.footer__links {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: var(--space-3);
|
||||
}
|
||||
|
||||
.footer__links a {
|
||||
color: rgba(255, 255, 255, 0.8);
|
||||
font-size: var(--font-size-sm);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.footer__links a:hover {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.footer__copyright {
|
||||
text-align: center;
|
||||
padding-top: var(--space-4);
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
|
||||
.footer__copyright p {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-size: var(--font-size-sm);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.footer__content {
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
}
|
||||
}
|
||||
|
||||
/* Responsive container adjustments */
|
||||
@media (max-width: 768px) {
|
||||
.nav {
|
||||
padding: 0 var(--space-3);
|
||||
}
|
||||
|
||||
.hero {
|
||||
padding: var(--space-5) 0;
|
||||
min-height: 60vh;
|
||||
}
|
||||
|
||||
.benefits,
|
||||
.profile,
|
||||
.process,
|
||||
.faq,
|
||||
.testimonials,
|
||||
.application {
|
||||
padding: var(--space-5) 0;
|
||||
}
|
||||
|
||||
.section-header {
|
||||
margin-bottom: var(--space-4);
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.nav {
|
||||
padding: 0 var(--space-2);
|
||||
}
|
||||
|
||||
.hero {
|
||||
padding: var(--space-3) 0;
|
||||
min-height: calc(100vh - var(--header-height));
|
||||
margin-top: var(--header-height);
|
||||
}
|
||||
|
||||
.hero .container {
|
||||
gap: var(--space-3);
|
||||
}
|
||||
|
||||
.hero__image {
|
||||
max-width: 250px;
|
||||
width: 85%;
|
||||
}
|
||||
|
||||
.hero__title {
|
||||
font-size: clamp(1.5rem, 4.5vw, 2.5rem);
|
||||
margin-bottom: var(--space-2);
|
||||
}
|
||||
|
||||
.hero__subtitle {
|
||||
font-size: var(--font-size-base);
|
||||
margin-bottom: var(--space-3);
|
||||
}
|
||||
|
||||
.hero__actions {
|
||||
gap: var(--space-2);
|
||||
}
|
||||
|
||||
.benefits,
|
||||
.profile,
|
||||
.process,
|
||||
.faq,
|
||||
.testimonials,
|
||||
.application {
|
||||
padding: var(--space-4) 0;
|
||||
}
|
||||
|
||||
.section-header {
|
||||
margin-bottom: var(--space-3);
|
||||
padding: 0 var(--space-1);
|
||||
}
|
||||
|
||||
.benefits__grid {
|
||||
gap: var(--space-3);
|
||||
}
|
||||
}
|
||||
380
css/privacy.css
Normal file
380
css/privacy.css
Normal file
@@ -0,0 +1,380 @@
|
||||
/* ========================================
|
||||
PRIVACY.CSS - Elegant & Dynamic Privacy Page
|
||||
======================================== */
|
||||
|
||||
/* Privacy Page Specific Styles */
|
||||
.privacy-policy {
|
||||
padding: var(--space-6) 0;
|
||||
background: linear-gradient(135deg, var(--color-bg) 0%, white 50%, var(--color-beige) 100%);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Animated background elements */
|
||||
.privacy-policy::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: -50%;
|
||||
left: -50%;
|
||||
width: 200%;
|
||||
height: 200%;
|
||||
background: radial-gradient(circle at 20% 30%, rgba(163, 150, 96, 0.05) 0%, transparent 50%),
|
||||
radial-gradient(circle at 80% 70%, rgba(77, 63, 60, 0.03) 0%, transparent 50%);
|
||||
animation: float 20s ease-in-out infinite;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
@keyframes float {
|
||||
0%, 100% { transform: translate(0, 0) rotate(0deg); }
|
||||
25% { transform: translate(-10px, -20px) rotate(1deg); }
|
||||
50% { transform: translate(20px, -10px) rotate(-1deg); }
|
||||
75% { transform: translate(-20px, 10px) rotate(0.5deg); }
|
||||
}
|
||||
|
||||
/* Container with glass effect */
|
||||
.privacy-policy__content {
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
backdrop-filter: blur(20px);
|
||||
border-radius: var(--radius-lg);
|
||||
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
|
||||
border: 1px solid rgba(255, 255, 255, 0.3);
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
/* Header with elegant styling */
|
||||
.privacy-policy__header {
|
||||
text-align: center;
|
||||
padding: var(--space-6) var(--space-5) var(--space-4);
|
||||
background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-emphasis) 100%);
|
||||
color: white;
|
||||
border-radius: var(--radius-lg) var(--radius-lg) 0 0;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.privacy-policy__header::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: -50%;
|
||||
left: -50%;
|
||||
width: 200%;
|
||||
height: 200%;
|
||||
background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
|
||||
animation: shimmer 4s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes shimmer {
|
||||
0%, 100% { transform: translateX(-100%); }
|
||||
50% { transform: translateX(100%); }
|
||||
}
|
||||
|
||||
.privacy-policy__title {
|
||||
font-family: var(--font-family-serif);
|
||||
font-size: clamp(2rem, 4vw, 3rem);
|
||||
margin-bottom: var(--space-2);
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
color: white;
|
||||
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.privacy-policy__subtitle {
|
||||
font-size: var(--font-size-xl);
|
||||
opacity: 0.9;
|
||||
margin: 0;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
color: white;
|
||||
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
/* Body content with dynamic spacing */
|
||||
.privacy-policy__body {
|
||||
padding: var(--space-5);
|
||||
}
|
||||
|
||||
.privacy-policy__intro {
|
||||
font-size: var(--font-size-lg);
|
||||
line-height: var(--line-height-relaxed);
|
||||
color: var(--color-text);
|
||||
text-align: center;
|
||||
margin-bottom: var(--space-5);
|
||||
padding: var(--space-4);
|
||||
background: linear-gradient(135deg, var(--color-beige) 0%, rgba(255, 255, 255, 0.8) 100%);
|
||||
border-radius: var(--radius);
|
||||
border-left: 4px solid var(--color-primary);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.privacy-policy__intro::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -100%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
|
||||
animation: sweep 4s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes sweep {
|
||||
0% { left: -100%; }
|
||||
50% { left: 100%; }
|
||||
100% { left: 100%; }
|
||||
}
|
||||
|
||||
/* Section styling with hover effects */
|
||||
.privacy-policy__section {
|
||||
margin-bottom: var(--space-5);
|
||||
padding: var(--space-4);
|
||||
border-radius: var(--radius);
|
||||
transition: all var(--transition);
|
||||
position: relative;
|
||||
background: rgba(255, 255, 255, 0.6);
|
||||
border: 1px solid rgba(163, 150, 96, 0.2);
|
||||
}
|
||||
|
||||
.privacy-policy__section:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
|
||||
background: rgba(255, 255, 255, 0.8);
|
||||
border-color: var(--color-primary);
|
||||
}
|
||||
|
||||
.privacy-policy__section h2 {
|
||||
color: var(--color-primary);
|
||||
font-family: var(--font-family-serif);
|
||||
font-size: var(--font-size-2xl);
|
||||
margin-bottom: var(--space-3);
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.privacy-policy__section h2::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -5px;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 3px;
|
||||
background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
|
||||
transition: width 0.3s ease;
|
||||
}
|
||||
|
||||
.privacy-policy__section:hover h2::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Dynamic list styling */
|
||||
.privacy-policy__list {
|
||||
margin: var(--space-3) 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.privacy-policy__list li {
|
||||
position: relative;
|
||||
padding: var(--space-2) 0 var(--space-2) var(--space-4);
|
||||
margin-bottom: var(--space-2);
|
||||
border-radius: var(--radius-sm);
|
||||
transition: all var(--transition);
|
||||
opacity: 0;
|
||||
transform: translateX(-20px);
|
||||
animation: slideInFromLeft 0.6s ease forwards;
|
||||
}
|
||||
|
||||
.privacy-policy__list li:nth-child(1) { animation-delay: 0.1s; }
|
||||
.privacy-policy__list li:nth-child(2) { animation-delay: 0.2s; }
|
||||
.privacy-policy__list li:nth-child(3) { animation-delay: 0.3s; }
|
||||
.privacy-policy__list li:nth-child(4) { animation-delay: 0.4s; }
|
||||
.privacy-policy__list li:nth-child(5) { animation-delay: 0.5s; }
|
||||
.privacy-policy__list li:nth-child(6) { animation-delay: 0.6s; }
|
||||
|
||||
@keyframes slideInFromLeft {
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
.privacy-policy__list li::before {
|
||||
content: '✓';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: var(--space-2);
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
background: var(--color-primary);
|
||||
color: white;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
transform: scale(0);
|
||||
animation: popIn 0.3s ease forwards;
|
||||
animation-delay: inherit;
|
||||
}
|
||||
|
||||
@keyframes popIn {
|
||||
0% { transform: scale(0) rotate(-180deg); }
|
||||
80% { transform: scale(1.2) rotate(10deg); }
|
||||
100% { transform: scale(1) rotate(0deg); }
|
||||
}
|
||||
|
||||
.privacy-policy__list li:hover {
|
||||
background: rgba(163, 150, 96, 0.1);
|
||||
transform: translateX(5px);
|
||||
}
|
||||
|
||||
/* Elegant link styling */
|
||||
.privacy-policy__link {
|
||||
color: var(--color-primary);
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
position: relative;
|
||||
transition: all var(--transition);
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.privacy-policy__link::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -2px;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
|
||||
transition: width var(--transition);
|
||||
}
|
||||
|
||||
.privacy-policy__link:hover {
|
||||
color: var(--color-emphasis);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.privacy-policy__link:hover::before {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Footer section with call-to-action */
|
||||
.privacy-policy__footer {
|
||||
margin-top: var(--space-6);
|
||||
padding: var(--space-5);
|
||||
background: linear-gradient(135deg, var(--color-beige) 0%, rgba(255, 255, 255, 0.9) 100%);
|
||||
border-radius: var(--radius);
|
||||
text-align: center;
|
||||
border: 2px solid rgba(163, 150, 96, 0.3);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.privacy-policy__footer::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: -2px;
|
||||
left: -2px;
|
||||
right: -2px;
|
||||
bottom: -2px;
|
||||
background: linear-gradient(45deg, var(--color-primary), var(--color-secondary), var(--color-primary));
|
||||
background-size: 300% 300%;
|
||||
animation: gradientMove 3s ease infinite;
|
||||
z-index: -1;
|
||||
border-radius: var(--radius);
|
||||
}
|
||||
|
||||
@keyframes gradientMove {
|
||||
0% { background-position: 0% 50%; }
|
||||
50% { background-position: 100% 50%; }
|
||||
100% { background-position: 0% 50%; }
|
||||
}
|
||||
|
||||
.privacy-policy__updated {
|
||||
margin-bottom: var(--space-4);
|
||||
color: var(--color-muted);
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.privacy-policy__actions {
|
||||
display: flex;
|
||||
gap: var(--space-3);
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
/* Responsive design */
|
||||
@media (max-width: 768px) {
|
||||
.privacy-policy {
|
||||
padding: var(--space-5) 0;
|
||||
}
|
||||
|
||||
.privacy-policy__content {
|
||||
margin: 0 var(--space-3);
|
||||
}
|
||||
|
||||
.privacy-policy__header {
|
||||
padding: var(--space-4) var(--space-3);
|
||||
}
|
||||
|
||||
.privacy-policy__body {
|
||||
padding: var(--space-3);
|
||||
}
|
||||
|
||||
.privacy-policy__section {
|
||||
padding: var(--space-3);
|
||||
}
|
||||
|
||||
.privacy-policy__actions {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
|
||||
/* Scroll animations */
|
||||
@media (prefers-reduced-motion: no-preference) {
|
||||
.privacy-policy__section {
|
||||
opacity: 0;
|
||||
transform: translateY(30px);
|
||||
animation: fadeInUp 0.8s ease forwards;
|
||||
}
|
||||
|
||||
.privacy-policy__section:nth-child(1) { animation-delay: 0.1s; }
|
||||
.privacy-policy__section:nth-child(2) { animation-delay: 0.2s; }
|
||||
.privacy-policy__section:nth-child(3) { animation-delay: 0.3s; }
|
||||
.privacy-policy__section:nth-child(4) { animation-delay: 0.4s; }
|
||||
.privacy-policy__section:nth-child(5) { animation-delay: 0.5s; }
|
||||
.privacy-policy__section:nth-child(6) { animation-delay: 0.6s; }
|
||||
.privacy-policy__section:nth-child(7) { animation-delay: 0.7s; }
|
||||
}
|
||||
|
||||
@keyframes fadeInUp {
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
/* Accessibility improvements */
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
animation-duration: 0.01ms !important;
|
||||
animation-iteration-count: 1 !important;
|
||||
transition-duration: 0.01ms !important;
|
||||
}
|
||||
|
||||
.privacy-policy__section {
|
||||
opacity: 1;
|
||||
transform: none;
|
||||
}
|
||||
|
||||
.privacy-policy__list li {
|
||||
opacity: 1;
|
||||
transform: none;
|
||||
}
|
||||
}
|
||||
439
css/thanks.css
Normal file
439
css/thanks.css
Normal file
@@ -0,0 +1,439 @@
|
||||
/* ========================================
|
||||
THANKS.CSS - Thank you page specific styles
|
||||
======================================== */
|
||||
|
||||
/* Thanks Hero Section */
|
||||
.thanks-hero {
|
||||
padding: var(--space-6) 0;
|
||||
background: linear-gradient(135deg, var(--color-surface) 0%, white 100%);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.thanks-hero__content {
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.thanks-hero__icon {
|
||||
margin-bottom: var(--space-4);
|
||||
}
|
||||
|
||||
.thanks-hero__icon svg {
|
||||
margin: 0 auto;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.thanks-hero__title {
|
||||
color: var(--color-primary);
|
||||
margin-bottom: var(--space-3);
|
||||
font-size: clamp(2rem, 5vw, 3rem);
|
||||
}
|
||||
|
||||
.thanks-hero__subtitle {
|
||||
font-size: var(--font-size-lg);
|
||||
color: var(--color-muted);
|
||||
margin-bottom: var(--space-4);
|
||||
line-height: var(--line-height-relaxed);
|
||||
}
|
||||
|
||||
.thanks-hero__folio {
|
||||
background: white;
|
||||
padding: var(--space-3);
|
||||
border-radius: var(--radius);
|
||||
box-shadow: var(--shadow);
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.folio-label {
|
||||
font-weight: 600;
|
||||
color: var(--color-text);
|
||||
margin-right: var(--space-2);
|
||||
}
|
||||
|
||||
.folio-number {
|
||||
background: var(--color-surface-2);
|
||||
padding: 0.5rem 1rem;
|
||||
border-radius: var(--radius-sm);
|
||||
font-family: 'Courier New', monospace;
|
||||
font-weight: bold;
|
||||
color: var(--color-primary);
|
||||
}
|
||||
|
||||
/* Next Steps Section */
|
||||
.next-steps {
|
||||
padding: var(--space-6) 0;
|
||||
background: white;
|
||||
}
|
||||
|
||||
.next-steps__timeline {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: var(--space-4);
|
||||
margin-top: var(--space-4);
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.next-steps__timeline {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1024px) {
|
||||
.next-steps__timeline {
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
.step-card {
|
||||
background: var(--color-surface);
|
||||
padding: var(--space-4);
|
||||
border-radius: var(--radius);
|
||||
text-align: center;
|
||||
border: 2px solid transparent;
|
||||
transition: var(--transition);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.step-card:hover {
|
||||
border-color: var(--color-primary);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.step-card__number {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
border-radius: 50%;
|
||||
background: var(--color-primary);
|
||||
color: white;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: var(--font-size-xl);
|
||||
font-weight: bold;
|
||||
margin: 0 auto var(--space-3);
|
||||
}
|
||||
|
||||
.step-card__content h3 {
|
||||
color: var(--color-primary);
|
||||
margin-bottom: var(--space-2);
|
||||
font-size: var(--font-size-lg);
|
||||
}
|
||||
|
||||
.step-card__content p {
|
||||
margin-bottom: var(--space-2);
|
||||
line-height: var(--line-height-normal);
|
||||
}
|
||||
|
||||
.step-card__content p:first-of-type {
|
||||
font-weight: 600;
|
||||
color: var(--color-text);
|
||||
font-size: var(--font-size-sm);
|
||||
}
|
||||
|
||||
.step-card__content p:last-child {
|
||||
color: var(--color-muted);
|
||||
font-size: var(--font-size-sm);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* Important Info Section */
|
||||
.important-info {
|
||||
padding: var(--space-6) 0;
|
||||
background: var(--color-surface);
|
||||
}
|
||||
|
||||
.info-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: var(--space-4);
|
||||
margin-top: var(--space-4);
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.info-grid {
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
.info-card {
|
||||
background: white;
|
||||
padding: var(--space-4);
|
||||
border-radius: var(--radius);
|
||||
box-shadow: var(--shadow);
|
||||
display: flex;
|
||||
gap: var(--space-3);
|
||||
border-left: 4px solid var(--color-primary);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.info-card:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: var(--shadow-lg);
|
||||
}
|
||||
|
||||
.info-card--primary {
|
||||
border-left-color: var(--color-primary);
|
||||
}
|
||||
|
||||
.info-card--secondary {
|
||||
border-left-color: var(--color-accent);
|
||||
}
|
||||
|
||||
.info-card--accent {
|
||||
border-left-color: var(--color-success);
|
||||
}
|
||||
|
||||
.info-card__icon {
|
||||
font-size: 2rem;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.info-card__content h3 {
|
||||
color: var(--color-text);
|
||||
margin-bottom: var(--space-2);
|
||||
font-size: var(--font-size-lg);
|
||||
}
|
||||
|
||||
.info-card__content p {
|
||||
color: var(--color-muted);
|
||||
margin: 0;
|
||||
line-height: var(--line-height-relaxed);
|
||||
font-size: var(--font-size-sm);
|
||||
}
|
||||
|
||||
/* Contact Info Section */
|
||||
.contact-info {
|
||||
padding: var(--space-6) 0;
|
||||
background: white;
|
||||
}
|
||||
|
||||
.contact-options {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: var(--space-4);
|
||||
margin-top: var(--space-4);
|
||||
max-width: 600px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.contact-options {
|
||||
grid-template-columns: 1fr;
|
||||
justify-items: center;
|
||||
}
|
||||
}
|
||||
|
||||
.contact-option {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: var(--space-3);
|
||||
padding: var(--space-4);
|
||||
border: 2px solid var(--color-border);
|
||||
border-radius: var(--radius);
|
||||
text-decoration: none;
|
||||
color: var(--color-text);
|
||||
transition: var(--transition);
|
||||
background: white;
|
||||
}
|
||||
|
||||
.contact-option:hover {
|
||||
border-color: var(--color-primary);
|
||||
background: var(--color-surface);
|
||||
text-decoration: none;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.contact-option--primary:hover {
|
||||
border-color: #25D366; /* WhatsApp green */
|
||||
background: color-mix(in oklch, #25D366 10%, white 90%);
|
||||
}
|
||||
|
||||
.contact-option--secondary:hover {
|
||||
border-color: var(--color-accent);
|
||||
background: color-mix(in oklch, var(--color-accent) 10%, white 90%);
|
||||
}
|
||||
|
||||
.contact-option__icon {
|
||||
flex-shrink: 0;
|
||||
color: var(--color-primary);
|
||||
}
|
||||
|
||||
.contact-option--primary .contact-option__icon {
|
||||
color: #25D366;
|
||||
}
|
||||
|
||||
.contact-option--secondary .contact-option__icon {
|
||||
color: var(--color-accent);
|
||||
}
|
||||
|
||||
.contact-option__content h4 {
|
||||
margin: 0 0 0.25rem 0;
|
||||
font-size: var(--font-size-lg);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.contact-option__content p {
|
||||
margin: 0;
|
||||
color: var(--color-muted);
|
||||
font-size: var(--font-size-sm);
|
||||
}
|
||||
|
||||
/* Social Proof Section */
|
||||
.social-proof {
|
||||
padding: var(--space-6) 0;
|
||||
background: var(--color-surface);
|
||||
}
|
||||
|
||||
.social-links {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: var(--space-4);
|
||||
margin-top: var(--space-4);
|
||||
max-width: 800px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.social-links {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
.social-link {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: var(--space-3);
|
||||
padding: var(--space-4);
|
||||
background: white;
|
||||
border-radius: var(--radius);
|
||||
box-shadow: var(--shadow);
|
||||
text-decoration: none;
|
||||
color: var(--color-text);
|
||||
transition: var(--transition);
|
||||
}
|
||||
|
||||
.social-link:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: var(--shadow-lg);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.social-link__icon {
|
||||
flex-shrink: 0;
|
||||
color: var(--color-primary);
|
||||
}
|
||||
|
||||
.social-link__content h4 {
|
||||
margin: 0 0 0.5rem 0;
|
||||
font-size: var(--font-size-lg);
|
||||
font-weight: 600;
|
||||
color: var(--color-primary);
|
||||
}
|
||||
|
||||
.social-link__content p {
|
||||
margin: 0;
|
||||
color: var(--color-muted);
|
||||
font-size: var(--font-size-sm);
|
||||
line-height: var(--line-height-relaxed);
|
||||
}
|
||||
|
||||
/* Consent Banner */
|
||||
.consent-banner {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: rgba(45, 45, 45, 0.95);
|
||||
color: white;
|
||||
padding: var(--space-3);
|
||||
z-index: 9999;
|
||||
backdrop-filter: blur(8px);
|
||||
}
|
||||
|
||||
.consent-banner__content {
|
||||
max-width: var(--container-max-width);
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: var(--space-3);
|
||||
}
|
||||
|
||||
.consent-banner__content p {
|
||||
margin: 0;
|
||||
font-size: var(--font-size-sm);
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.consent-banner__content a {
|
||||
color: var(--color-primary);
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.consent-banner__actions {
|
||||
display: flex;
|
||||
gap: var(--space-2);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.btn--sm {
|
||||
padding: 0.5rem 1rem;
|
||||
font-size: var(--font-size-sm);
|
||||
}
|
||||
|
||||
/* Mobile responsive adjustments */
|
||||
@media (max-width: 768px) {
|
||||
.thanks-hero {
|
||||
padding: var(--space-5) 0;
|
||||
}
|
||||
|
||||
.thanks-hero__folio {
|
||||
display: block;
|
||||
margin: 0 var(--space-2);
|
||||
}
|
||||
|
||||
.next-steps,
|
||||
.important-info,
|
||||
.contact-info,
|
||||
.social-proof {
|
||||
padding: var(--space-5) 0;
|
||||
}
|
||||
|
||||
.step-card,
|
||||
.info-card {
|
||||
padding: var(--space-3);
|
||||
}
|
||||
|
||||
.contact-option,
|
||||
.social-link {
|
||||
padding: var(--space-3);
|
||||
}
|
||||
|
||||
.consent-banner__content {
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.consent-banner__content p {
|
||||
margin-bottom: var(--space-2);
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.info-card {
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.contact-option {
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.social-link {
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user