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

:root {
    --primary-color: #e94560;
    --primary-dark: #c73550;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --bg-dark: #1a1a2e;
    --bg-light: #16213e;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --border-color: #333333;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.2);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
}

a {
    color: var(--text-primary);
    text-decoration: none;
}

a:hover {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-primary);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand h1 {
    font-size: 24px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.main {
    margin-top: 70px;
}

.page-header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--bg-dark) 100%);
}

.page-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 18px;
}

.hero {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 50%, var(--bg-dark) 100%);
    text-align: center;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-desc {
    font-size: 18px !important;
    max-width: 800px;
    margin: 0 auto 30px !important;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 60px auto 0;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
}

.features {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.features h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.testimonials-preview {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.testimonials-preview h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.testimonial-item {
    flex: 1;
    min-width: 400px;
    background-color: var(--bg-dark);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.testimonial-item p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-title {
    font-size: 14px;
    color: var(--text-muted);
}

.testimonials-preview .btn-outline {
    display: block;
    margin: 0 auto;
    width: 200px;
}

.cta {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
}

.cta h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer {
    padding: 60px 20px 30px;
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-brand h4 {
    font-size: 24px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-links h5,
.footer-contact h5 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 14px;
}

.trial-benefits {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.trial-benefits h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-primary);
}

.benefit-icon svg {
    width: 25px;
    height: 25px;
}

.benefit-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

.trial-form {
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.trial-form h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.trial-form form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-check input {
    width: auto;
    margin-top: 5px;
}

.form-check label {
    font-weight: 400;
    font-size: 14px;
    color: var(--text-secondary);
}

.form-check label a {
    color: var(--primary-color);
}

.trial-form .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 18px;
}

.trial-faq {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.trial-faq h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 15px;
}

.whitepaper-overview {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.whitepaper-overview h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.whitepaper-cover {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.cover-image {
    flex-shrink: 0;
}

.cover-image svg {
    width: 200px;
    height: 280px;
}

.cover-info h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.cover-info ul {
    list-style: none;
    margin-bottom: 30px;
}

.cover-info li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-secondary);
}

.cover-info li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.whitepaper-contents {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.whitepaper-contents h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.contents-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.content-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.content-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-primary);
    flex-shrink: 0;
}

.content-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.content-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

.whitepaper-form {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.whitepaper-form h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.whitepaper-form form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.whitepaper-form .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 18px;
}

.related-reports {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.related-reports h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.report-card {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.report-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.report-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.report-card p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 20px;
}

.testimonials-stats {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--text-primary);
}

.stat-icon svg {
    width: 30px;
    height: 30px;
}

.stat-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
}

.testimonials-list {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-list h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.star {
    color: var(--warning-color);
    font-size: 20px;
}

.testimonial-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-details .author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-details .author-title {
    font-size: 13px;
    color: var(--text-muted);
}

.case-studies {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.case-studies h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-card {
    background-color: var(--bg-light);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.case-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.case-image {
    padding: 20px;
    background-color: var(--bg-dark);
}

.case-image svg {
    width: 100%;
    height: 150px;
}

.case-card h4 {
    padding: 20px 25px 10px;
    font-size: 18px;
    color: var(--text-primary);
}

.case-card p {
    padding: 0 25px 25px;
    color: var(--text-secondary);
    font-size: 15px;
}

.mission-vision {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mv-card {
    background-color: var(--bg-light);
    padding: 45px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-card.mission {
    border-color: var(--primary-color);
}

.mv-card.vision {
    border-color: var(--accent-color);
}

.mv-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-card.mission .mv-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.mv-card.vision .mv-icon {
    background: linear-gradient(135deg, var(--accent-color), #1a4a7a);
}

.mv-icon svg {
    width: 35px;
    height: 35px;
    color: var(--text-primary);
}

.mv-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.mv-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
}

.values {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.values h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.value-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(233, 69, 96, 0.1);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.value-icon svg {
    width: 25px;
    height: 25px;
}

.value-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.commitment {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.commitment h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.commitment-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.commitment-item {
    display: flex;
    gap: 25px;
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    align-items: flex-start;
}

.commitment-icon {
    width: 50px;
    height: 50px;
    background-color: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-primary);
}

.commitment-icon svg {
    width: 25px;
    height: 25px;
}

.commitment-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.commitment-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.timeline {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.timeline h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.timeline-list {
    position: relative;
    padding-left: 40px;
}

.timeline-list::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 5px;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--bg-dark);
}

.timeline-date {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.terms-content {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.terms-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.terms-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.terms-section p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.terms-agreement {
    text-align: center;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 12px;
    margin-top: 40px;
}

.terms-agreement p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 5px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-dark);
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        gap: 10px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-slider {
        flex-direction: column;
    }

    .testimonial-item {
        min-width: auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .whitepaper-cover {
        flex-direction: column;
        text-align: center;
    }

    .reports-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .commitment-item {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 15px;
    }

    .nav-brand h1 {
        font-size: 20px;
    }

    .hero {
        padding: 60px 15px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .feature-card,
    .benefit-card,
    .testimonial-card,
    .case-card,
    .value-card,
    .mv-card {
        padding: 25px;
    }

    .trial-form form,
    .whitepaper-form form {
        padding: 25px;
    }
}