/* Trial Page Styles */

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --warning-gradient: linear-gradient(135deg, #fce38a 0%, #f38181 100%);
    
    --brand-primary: #2c5aa0;
    --brand-secondary: #1e3d6f;
    --brand-accent: #28a745;
    --brand-warning: #ff6b35;
    
    --primary-font: 'Nunito', sans-serif;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.15);
    --shadow-xl: 0 25px 80px rgba(0,0,0,0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--primary-font);
    line-height: 1.7;
    color: #6c757d;
    background: #ffffff;
    overflow-x: hidden;
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--primary-font);
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
}

/* Page Header */
.page-header {
    background: var(--primary-gradient);
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="150" fill="rgba(255,255,255,0.1)" /><circle cx="800" cy="400" r="120" fill="rgba(255,255,255,0.08)" /></svg>');
    animation: float 20s ease-in-out infinite;
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.95);
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

/* Trial Section */
.trial-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.trial-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trial-card {
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.trial-content {
    padding: 60px;
}

.trial-form-section {
    padding: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 1.2rem;
    color: #6c757d;
}

/* Trial Features */
.trial-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.trial-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.trial-features li:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: var(--success-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.trial-guarantee {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
}

.trial-guarantee h3 {
    color: var(--brand-accent);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.trial-guarantee p {
    color: #2c3e50;
    margin: 0;
    font-weight: 500;
}

/* Form Styles */
.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: #2c3e50;
    font-size: 16px;
}

.form-control {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 16px;
    font-family: var(--primary-font);
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 20px rgba(44, 90, 160, 0.1);
    background: white;
}

.form-select {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 16px;
    font-family: var(--primary-font);
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-select:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 20px rgba(44, 90, 160, 0.1);
    background: white;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.form-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--brand-primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.form-check label {
    margin: 0;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.6;
}

.form-check a {
    color: var(--brand-primary);
    text-decoration: none;
}

.form-check a:hover {
    text-decoration: underline;
}

.btn-trial {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
}

.form-note {
    text-align: center;
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--brand-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--primary-gradient);
    z-index: 1001;
    transition: width 0.3s ease;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 { 
        font-size: 2.5rem; 
    }
    
    .page-header {
        padding: 150px 0 60px;
    }
    
    .section-title h2 { 
        font-size: 2.5rem; 
    }
    
    .trial-content,
    .trial-form-section { 
        padding: 40px 30px; 
    }
    
    .form-header h2 { 
        font-size: 2rem; 
    }
    
    .trial-features li { 
        font-size: 16px; 
    }
}
