885 lines
16 KiB
CSS
885 lines
16 KiB
CSS
|
|
/* ===================================
|
||
|
|
CSS Variables & Reset
|
||
|
|
=================================== */
|
||
|
|
:root {
|
||
|
|
--primary-color: #2563eb;
|
||
|
|
--primary-dark: #1e40af;
|
||
|
|
--primary-light: #3b82f6;
|
||
|
|
--secondary-color: #10b981;
|
||
|
|
--text-dark: #1f2937;
|
||
|
|
--text-light: #6b7280;
|
||
|
|
--bg-light: #f9fafb;
|
||
|
|
--bg-white: #ffffff;
|
||
|
|
--border-color: #e5e7eb;
|
||
|
|
--success-color: #10b981;
|
||
|
|
--error-color: #ef4444;
|
||
|
|
--warning-color: #f59e0b;
|
||
|
|
|
||
|
|
--font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
||
|
|
--font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
|
||
|
|
|
||
|
|
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
||
|
|
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
||
|
|
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
||
|
|
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
||
|
|
|
||
|
|
--radius-sm: 0.375rem;
|
||
|
|
--radius-md: 0.5rem;
|
||
|
|
--radius-lg: 0.75rem;
|
||
|
|
--radius-xl: 1rem;
|
||
|
|
|
||
|
|
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||
|
|
}
|
||
|
|
|
||
|
|
* {
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
html {
|
||
|
|
scroll-behavior: smooth;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
font-family: var(--font-sans);
|
||
|
|
color: var(--text-dark);
|
||
|
|
line-height: 1.6;
|
||
|
|
background-color: var(--bg-white);
|
||
|
|
}
|
||
|
|
|
||
|
|
img {
|
||
|
|
max-width: 100%;
|
||
|
|
height: auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
a {
|
||
|
|
text-decoration: none;
|
||
|
|
color: inherit;
|
||
|
|
transition: var(--transition);
|
||
|
|
}
|
||
|
|
|
||
|
|
ul {
|
||
|
|
list-style: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* ===================================
|
||
|
|
Container & Layout
|
||
|
|
=================================== */
|
||
|
|
.container {
|
||
|
|
max-width: 1200px;
|
||
|
|
margin: 0 auto;
|
||
|
|
padding: 0 1.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
section {
|
||
|
|
padding: 5rem 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.section-header {
|
||
|
|
text-align: center;
|
||
|
|
margin-bottom: 3rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.section-header h2 {
|
||
|
|
font-size: 2.5rem;
|
||
|
|
font-weight: 700;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
color: var(--text-dark);
|
||
|
|
}
|
||
|
|
|
||
|
|
.section-header p {
|
||
|
|
font-size: 1.25rem;
|
||
|
|
color: var(--text-light);
|
||
|
|
max-width: 600px;
|
||
|
|
margin: 0 auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* ===================================
|
||
|
|
Navigation
|
||
|
|
=================================== */
|
||
|
|
.navbar {
|
||
|
|
background: var(--bg-white);
|
||
|
|
box-shadow: var(--shadow-sm);
|
||
|
|
position: sticky;
|
||
|
|
top: 0;
|
||
|
|
z-index: 1000;
|
||
|
|
border-bottom: 1px solid var(--border-color);
|
||
|
|
}
|
||
|
|
|
||
|
|
.nav-wrapper {
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
align-items: center;
|
||
|
|
padding: 1rem 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.logo {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 0.75rem;
|
||
|
|
font-size: 1.5rem;
|
||
|
|
font-weight: 700;
|
||
|
|
color: var(--text-dark);
|
||
|
|
}
|
||
|
|
|
||
|
|
.logo img {
|
||
|
|
height: 40px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.nav-menu {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 2rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.nav-menu a {
|
||
|
|
color: var(--text-light);
|
||
|
|
font-weight: 500;
|
||
|
|
transition: var(--transition);
|
||
|
|
}
|
||
|
|
|
||
|
|
.nav-menu a:hover {
|
||
|
|
color: var(--primary-color);
|
||
|
|
}
|
||
|
|
|
||
|
|
.mobile-menu-toggle {
|
||
|
|
display: none;
|
||
|
|
flex-direction: column;
|
||
|
|
gap: 0.25rem;
|
||
|
|
background: none;
|
||
|
|
border: none;
|
||
|
|
cursor: pointer;
|
||
|
|
padding: 0.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mobile-menu-toggle span {
|
||
|
|
width: 24px;
|
||
|
|
height: 2px;
|
||
|
|
background: var(--text-dark);
|
||
|
|
transition: var(--transition);
|
||
|
|
}
|
||
|
|
|
||
|
|
/* ===================================
|
||
|
|
Buttons
|
||
|
|
=================================== */
|
||
|
|
.btn-primary,
|
||
|
|
.btn-secondary {
|
||
|
|
display: inline-block;
|
||
|
|
padding: 0.75rem 1.5rem;
|
||
|
|
border-radius: var(--radius-md);
|
||
|
|
font-weight: 600;
|
||
|
|
text-align: center;
|
||
|
|
transition: var(--transition);
|
||
|
|
cursor: pointer;
|
||
|
|
border: none;
|
||
|
|
font-size: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn-primary {
|
||
|
|
background: var(--primary-color);
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn-primary:hover {
|
||
|
|
background: var(--primary-dark);
|
||
|
|
transform: translateY(-2px);
|
||
|
|
box-shadow: var(--shadow-lg);
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn-secondary {
|
||
|
|
background: transparent;
|
||
|
|
color: var(--primary-color);
|
||
|
|
border: 2px solid var(--primary-color);
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn-secondary:hover {
|
||
|
|
background: var(--primary-color);
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn-large {
|
||
|
|
padding: 1rem 2rem;
|
||
|
|
font-size: 1.125rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn-block {
|
||
|
|
width: 100%;
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* ===================================
|
||
|
|
Hero Section
|
||
|
|
=================================== */
|
||
|
|
.hero {
|
||
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||
|
|
color: white;
|
||
|
|
padding: 6rem 0;
|
||
|
|
position: relative;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.hero::before {
|
||
|
|
content: '';
|
||
|
|
position: absolute;
|
||
|
|
top: 0;
|
||
|
|
left: 0;
|
||
|
|
right: 0;
|
||
|
|
bottom: 0;
|
||
|
|
background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
|
||
|
|
opacity: 0.3;
|
||
|
|
}
|
||
|
|
|
||
|
|
.hero-content {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: 1fr 1fr;
|
||
|
|
gap: 4rem;
|
||
|
|
align-items: center;
|
||
|
|
position: relative;
|
||
|
|
z-index: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.hero h1 {
|
||
|
|
font-size: 3.5rem;
|
||
|
|
font-weight: 800;
|
||
|
|
line-height: 1.2;
|
||
|
|
margin-bottom: 1.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.hero-subtitle {
|
||
|
|
font-size: 1.25rem;
|
||
|
|
margin-bottom: 2rem;
|
||
|
|
opacity: 0.95;
|
||
|
|
}
|
||
|
|
|
||
|
|
.hero-cta {
|
||
|
|
display: flex;
|
||
|
|
gap: 1rem;
|
||
|
|
margin-bottom: 2rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.hero-features {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
gap: 0.75rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.feature-badge {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 0.5rem;
|
||
|
|
font-size: 0.95rem;
|
||
|
|
opacity: 0.9;
|
||
|
|
}
|
||
|
|
|
||
|
|
.feature-badge svg {
|
||
|
|
flex-shrink: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Chatbot Demo */
|
||
|
|
.chatbot-demo {
|
||
|
|
background: white;
|
||
|
|
border-radius: var(--radius-xl);
|
||
|
|
box-shadow: var(--shadow-xl);
|
||
|
|
overflow: hidden;
|
||
|
|
max-width: 400px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.demo-header {
|
||
|
|
background: var(--primary-color);
|
||
|
|
color: white;
|
||
|
|
padding: 1rem;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.demo-dots {
|
||
|
|
display: flex;
|
||
|
|
gap: 0.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.demo-dots span {
|
||
|
|
width: 12px;
|
||
|
|
height: 12px;
|
||
|
|
border-radius: 50%;
|
||
|
|
background: rgba(255, 255, 255, 0.3);
|
||
|
|
}
|
||
|
|
|
||
|
|
.demo-title {
|
||
|
|
font-weight: 600;
|
||
|
|
}
|
||
|
|
|
||
|
|
.demo-messages {
|
||
|
|
padding: 1.5rem;
|
||
|
|
background: #f9fafb;
|
||
|
|
min-height: 300px;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
gap: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.message {
|
||
|
|
display: flex;
|
||
|
|
gap: 0.75rem;
|
||
|
|
align-items: flex-start;
|
||
|
|
}
|
||
|
|
|
||
|
|
.message.user {
|
||
|
|
flex-direction: row-reverse;
|
||
|
|
}
|
||
|
|
|
||
|
|
.message .avatar {
|
||
|
|
width: 36px;
|
||
|
|
height: 36px;
|
||
|
|
border-radius: 50%;
|
||
|
|
background: var(--primary-light);
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
flex-shrink: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.message .bubble {
|
||
|
|
background: white;
|
||
|
|
padding: 0.75rem 1rem;
|
||
|
|
border-radius: var(--radius-lg);
|
||
|
|
box-shadow: var(--shadow-sm);
|
||
|
|
max-width: 70%;
|
||
|
|
color: var(--text-dark);
|
||
|
|
}
|
||
|
|
|
||
|
|
.message.user .bubble {
|
||
|
|
background: var(--primary-color);
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.demo-input {
|
||
|
|
padding: 1rem;
|
||
|
|
background: white;
|
||
|
|
border-top: 1px solid var(--border-color);
|
||
|
|
display: flex;
|
||
|
|
gap: 0.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.demo-input input {
|
||
|
|
flex: 1;
|
||
|
|
padding: 0.75rem;
|
||
|
|
border: 1px solid var(--border-color);
|
||
|
|
border-radius: var(--radius-md);
|
||
|
|
font-size: 0.95rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.demo-input button {
|
||
|
|
padding: 0.75rem 1.5rem;
|
||
|
|
background: var(--primary-color);
|
||
|
|
color: white;
|
||
|
|
border: none;
|
||
|
|
border-radius: var(--radius-md);
|
||
|
|
cursor: pointer;
|
||
|
|
font-size: 1.25rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* ===================================
|
||
|
|
Features Section
|
||
|
|
=================================== */
|
||
|
|
.features {
|
||
|
|
background: var(--bg-light);
|
||
|
|
}
|
||
|
|
|
||
|
|
.features-grid {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||
|
|
gap: 2rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.feature-card {
|
||
|
|
background: white;
|
||
|
|
padding: 2rem;
|
||
|
|
border-radius: var(--radius-lg);
|
||
|
|
box-shadow: var(--shadow-md);
|
||
|
|
transition: var(--transition);
|
||
|
|
}
|
||
|
|
|
||
|
|
.feature-card:hover {
|
||
|
|
transform: translateY(-5px);
|
||
|
|
box-shadow: var(--shadow-xl);
|
||
|
|
}
|
||
|
|
|
||
|
|
.feature-icon {
|
||
|
|
font-size: 3rem;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.feature-card h3 {
|
||
|
|
font-size: 1.5rem;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
color: var(--text-dark);
|
||
|
|
}
|
||
|
|
|
||
|
|
.feature-card p {
|
||
|
|
color: var(--text-light);
|
||
|
|
line-height: 1.7;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* ===================================
|
||
|
|
How It Works Section
|
||
|
|
=================================== */
|
||
|
|
.steps {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||
|
|
gap: 2rem;
|
||
|
|
margin-top: 3rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.step {
|
||
|
|
text-align: center;
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
|
||
|
|
.step-number {
|
||
|
|
width: 60px;
|
||
|
|
height: 60px;
|
||
|
|
background: var(--primary-color);
|
||
|
|
color: white;
|
||
|
|
border-radius: 50%;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
font-size: 1.5rem;
|
||
|
|
font-weight: 700;
|
||
|
|
margin: 0 auto 1.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.step h3 {
|
||
|
|
font-size: 1.5rem;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.step p {
|
||
|
|
color: var(--text-light);
|
||
|
|
}
|
||
|
|
|
||
|
|
/* ===================================
|
||
|
|
Pricing Section
|
||
|
|
=================================== */
|
||
|
|
.pricing {
|
||
|
|
background: var(--bg-light);
|
||
|
|
}
|
||
|
|
|
||
|
|
.pricing-grid {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||
|
|
gap: 2rem;
|
||
|
|
margin-top: 3rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pricing-card {
|
||
|
|
background: white;
|
||
|
|
border-radius: var(--radius-xl);
|
||
|
|
padding: 2.5rem;
|
||
|
|
box-shadow: var(--shadow-md);
|
||
|
|
transition: var(--transition);
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pricing-card:hover {
|
||
|
|
transform: translateY(-5px);
|
||
|
|
box-shadow: var(--shadow-xl);
|
||
|
|
}
|
||
|
|
|
||
|
|
.pricing-card.featured {
|
||
|
|
border: 3px solid var(--primary-color);
|
||
|
|
transform: scale(1.05);
|
||
|
|
}
|
||
|
|
|
||
|
|
.pricing-card .badge {
|
||
|
|
position: absolute;
|
||
|
|
top: -15px;
|
||
|
|
right: 20px;
|
||
|
|
background: var(--primary-color);
|
||
|
|
color: white;
|
||
|
|
padding: 0.5rem 1rem;
|
||
|
|
border-radius: var(--radius-md);
|
||
|
|
font-weight: 600;
|
||
|
|
font-size: 0.875rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pricing-header h3 {
|
||
|
|
font-size: 1.5rem;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.price {
|
||
|
|
display: flex;
|
||
|
|
align-items: baseline;
|
||
|
|
gap: 0.25rem;
|
||
|
|
margin-bottom: 0.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.price .currency {
|
||
|
|
font-size: 1.5rem;
|
||
|
|
font-weight: 600;
|
||
|
|
}
|
||
|
|
|
||
|
|
.price .amount {
|
||
|
|
font-size: 3.5rem;
|
||
|
|
font-weight: 800;
|
||
|
|
color: var(--primary-color);
|
||
|
|
}
|
||
|
|
|
||
|
|
.price .period {
|
||
|
|
font-size: 1.125rem;
|
||
|
|
color: var(--text-light);
|
||
|
|
}
|
||
|
|
|
||
|
|
.price-note {
|
||
|
|
font-size: 0.875rem;
|
||
|
|
color: var(--success-color);
|
||
|
|
font-weight: 600;
|
||
|
|
margin-bottom: 1.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pricing-features {
|
||
|
|
margin: 2rem 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pricing-features li {
|
||
|
|
padding: 0.75rem 0;
|
||
|
|
border-bottom: 1px solid var(--border-color);
|
||
|
|
color: var(--text-light);
|
||
|
|
}
|
||
|
|
|
||
|
|
.pricing-features li:last-child {
|
||
|
|
border-bottom: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* ===================================
|
||
|
|
Trial Registration Section
|
||
|
|
=================================== */
|
||
|
|
.trial-registration {
|
||
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
|
||
|
|
.trial-content {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: 1fr 1fr;
|
||
|
|
gap: 4rem;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
.trial-info h2 {
|
||
|
|
font-size: 2.5rem;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.trial-info p {
|
||
|
|
font-size: 1.25rem;
|
||
|
|
margin-bottom: 2rem;
|
||
|
|
opacity: 0.95;
|
||
|
|
}
|
||
|
|
|
||
|
|
.trial-benefits {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
gap: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.trial-benefits li {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 1rem;
|
||
|
|
font-size: 1.125rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.trial-benefits svg {
|
||
|
|
flex-shrink: 0;
|
||
|
|
color: var(--success-color);
|
||
|
|
}
|
||
|
|
|
||
|
|
.trial-form-wrapper {
|
||
|
|
background: white;
|
||
|
|
border-radius: var(--radius-xl);
|
||
|
|
padding: 2.5rem;
|
||
|
|
box-shadow: var(--shadow-xl);
|
||
|
|
}
|
||
|
|
|
||
|
|
.trial-form h3 {
|
||
|
|
color: var(--text-dark);
|
||
|
|
font-size: 1.75rem;
|
||
|
|
margin-bottom: 1.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.form-group {
|
||
|
|
margin-bottom: 1.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.form-group label {
|
||
|
|
display: block;
|
||
|
|
margin-bottom: 0.5rem;
|
||
|
|
color: var(--text-dark);
|
||
|
|
font-weight: 500;
|
||
|
|
}
|
||
|
|
|
||
|
|
.form-group input {
|
||
|
|
width: 100%;
|
||
|
|
padding: 0.75rem;
|
||
|
|
border: 1px solid var(--border-color);
|
||
|
|
border-radius: var(--radius-md);
|
||
|
|
font-size: 1rem;
|
||
|
|
transition: var(--transition);
|
||
|
|
}
|
||
|
|
|
||
|
|
.form-group input:focus {
|
||
|
|
outline: none;
|
||
|
|
border-color: var(--primary-color);
|
||
|
|
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
|
||
|
|
}
|
||
|
|
|
||
|
|
.form-group.checkbox {
|
||
|
|
display: flex;
|
||
|
|
align-items: flex-start;
|
||
|
|
gap: 0.75rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.form-group.checkbox input {
|
||
|
|
width: auto;
|
||
|
|
margin-top: 0.25rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.form-group.checkbox label {
|
||
|
|
margin: 0;
|
||
|
|
font-weight: 400;
|
||
|
|
font-size: 0.95rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.form-group.checkbox a {
|
||
|
|
color: var(--primary-color);
|
||
|
|
text-decoration: underline;
|
||
|
|
}
|
||
|
|
|
||
|
|
.form-note {
|
||
|
|
font-size: 0.875rem;
|
||
|
|
color: var(--text-light);
|
||
|
|
text-align: center;
|
||
|
|
margin-top: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn-loading {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
gap: 0.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.spinner {
|
||
|
|
animation: spin 1s linear infinite;
|
||
|
|
}
|
||
|
|
|
||
|
|
.spinner circle {
|
||
|
|
stroke-dasharray: 90, 150;
|
||
|
|
stroke-dashoffset: 0;
|
||
|
|
stroke-linecap: round;
|
||
|
|
}
|
||
|
|
|
||
|
|
@keyframes spin {
|
||
|
|
100% {
|
||
|
|
transform: rotate(360deg);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Success Message */
|
||
|
|
.success-message {
|
||
|
|
text-align: center;
|
||
|
|
padding: 2rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.success-icon {
|
||
|
|
width: 80px;
|
||
|
|
height: 80px;
|
||
|
|
background: var(--success-color);
|
||
|
|
color: white;
|
||
|
|
border-radius: 50%;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
font-size: 3rem;
|
||
|
|
margin: 0 auto 1.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.success-message h3 {
|
||
|
|
color: var(--text-dark);
|
||
|
|
font-size: 1.75rem;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.success-message p {
|
||
|
|
color: var(--text-light);
|
||
|
|
margin-bottom: 1.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.success-details {
|
||
|
|
background: var(--bg-light);
|
||
|
|
padding: 1.5rem;
|
||
|
|
border-radius: var(--radius-md);
|
||
|
|
text-align: left;
|
||
|
|
}
|
||
|
|
|
||
|
|
.success-details p {
|
||
|
|
color: var(--text-dark);
|
||
|
|
font-weight: 600;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.success-details ol {
|
||
|
|
list-style: decimal;
|
||
|
|
padding-left: 1.5rem;
|
||
|
|
color: var(--text-light);
|
||
|
|
}
|
||
|
|
|
||
|
|
.success-details li {
|
||
|
|
margin-bottom: 0.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* ===================================
|
||
|
|
FAQ Section
|
||
|
|
=================================== */
|
||
|
|
.faq-grid {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
||
|
|
gap: 2rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.faq-item {
|
||
|
|
background: white;
|
||
|
|
padding: 2rem;
|
||
|
|
border-radius: var(--radius-lg);
|
||
|
|
box-shadow: var(--shadow-md);
|
||
|
|
}
|
||
|
|
|
||
|
|
.faq-item h3 {
|
||
|
|
font-size: 1.25rem;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
color: var(--text-dark);
|
||
|
|
}
|
||
|
|
|
||
|
|
.faq-item p {
|
||
|
|
color: var(--text-light);
|
||
|
|
line-height: 1.7;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* ===================================
|
||
|
|
Footer
|
||
|
|
=================================== */
|
||
|
|
.footer {
|
||
|
|
background: var(--text-dark);
|
||
|
|
color: white;
|
||
|
|
padding: 3rem 0 1.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.footer-content {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||
|
|
gap: 2rem;
|
||
|
|
margin-bottom: 2rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.footer-section h4 {
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
font-size: 1.125rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.footer-section p {
|
||
|
|
opacity: 0.8;
|
||
|
|
margin-top: 0.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.footer-section ul {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
gap: 0.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.footer-section a {
|
||
|
|
opacity: 0.8;
|
||
|
|
transition: var(--transition);
|
||
|
|
}
|
||
|
|
|
||
|
|
.footer-section a:hover {
|
||
|
|
opacity: 1;
|
||
|
|
color: var(--primary-light);
|
||
|
|
}
|
||
|
|
|
||
|
|
.footer-bottom {
|
||
|
|
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
||
|
|
padding-top: 1.5rem;
|
||
|
|
text-align: center;
|
||
|
|
opacity: 0.8;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* ===================================
|
||
|
|
Responsive Design
|
||
|
|
=================================== */
|
||
|
|
@media (max-width: 768px) {
|
||
|
|
.nav-menu {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mobile-menu-toggle {
|
||
|
|
display: flex;
|
||
|
|
}
|
||
|
|
|
||
|
|
.hero-content,
|
||
|
|
.trial-content {
|
||
|
|
grid-template-columns: 1fr;
|
||
|
|
gap: 2rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.hero h1 {
|
||
|
|
font-size: 2.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.hero-cta {
|
||
|
|
flex-direction: column;
|
||
|
|
}
|
||
|
|
|
||
|
|
.section-header h2 {
|
||
|
|
font-size: 2rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.steps {
|
||
|
|
grid-template-columns: 1fr;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pricing-grid {
|
||
|
|
grid-template-columns: 1fr;
|
||
|
|
}
|
||
|
|
|
||
|
|
.pricing-card.featured {
|
||
|
|
transform: scale(1);
|
||
|
|
}
|
||
|
|
|
||
|
|
.faq-grid {
|
||
|
|
grid-template-columns: 1fr;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
@media (max-width: 480px) {
|
||
|
|
.hero h1 {
|
||
|
|
font-size: 2rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.hero-subtitle {
|
||
|
|
font-size: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.section-header h2 {
|
||
|
|
font-size: 1.75rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.trial-form-wrapper {
|
||
|
|
padding: 1.5rem;
|
||
|
|
}
|
||
|
|
}
|