/* ========================================
   Clarity Coverage - Main Stylesheet
   ======================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b00;
    --primary-dark: #e55a00;
    --secondary-color: #ff8c42;
    --accent-color: #ffb380;
    --text-dark: #1a202c;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #ff6b00 0%, #ff8c42 100%);
    --border-color: #e2e8f0;
    --success-color: #ff8c42;
    --error-color: #e53e3e;
    --shadow-sm: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
    --shadow-md: 0 6px 12px -2px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.18);
    --shadow-xl: 0 24px 40px -8px rgba(0, 0, 0, 0.22);
}

body {
    font-family: 'Poppins', 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

h1 { font-size: 3.5rem; font-weight: 800; }
h2 { font-size: 2.75rem; font-weight: 700; }
h3 { font-size: 2rem; font-weight: 700; }

p { 
    margin-bottom: 1rem;
    line-height: 1.7;
}

.lead {
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.8;
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 4px solid var(--primary-color);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
}

.logo-eye {
    width: 65px;
    height: 55px;
    background: var(--bg-gradient);
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.35);
    border: 3px solid white;
}

.eye-logo {
    width: 100%;
    height: 100%;
}

.logo i {
    font-size: 1.75rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.btn-quote {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    transition: background 0.3s;
}

.btn-quote:hover {
    background: var(--primary-dark);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    box-shadow: 0 8px 20px 0 rgba(255, 107, 0, 0.4);
    border: 3px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px 0 rgba(255, 107, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: #8b5cf6;
    color: white;
}

.btn-secondary:hover {
    background: #7c3aed;
}

.btn-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
    box-shadow: 0 8px 20px 0 rgba(139, 92, 246, 0.4);
    border: 3px solid transparent;
}

.btn-purple:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px 0 rgba(139, 92, 246, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-white {
    background: white;
    color: var(--primary-color);
}

.btn-white:hover {
    background: var(--bg-light);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    font-weight: 800;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Hero Section */
.hero {
    background: var(--bg-gradient);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 140, 66, 0.08) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.highlight {
    color: #8b5cf6;
    position: relative;
    display: inline-block;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat i {
    font-size: 2rem;
    color: var(--accent-color);
}

.stat strong {
    display: block;
    font-size: 1.5rem;
}

.stat span {
    display: block;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 3.25rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    width: 100%;
    font-family: 'Fredoka', sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: var(--bg-gradient);
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    margin-top: 2rem;
}

/* Features Section */
.features {
    background: var(--bg-white);
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    border: 3px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: var(--bg-gradient);
    border-radius: 1.5rem 0 0 1.5rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.25);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(-5deg);
    color: var(--secondary-color);
}

.feature-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-link:hover {
    gap: 0.75rem;
}

/* Living Benefits Highlight */
.living-benefits-highlight {
    padding: 5rem 0;
}

.lb-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.benefits-list i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.lb-image {
    display: grid;
    gap: 1.5rem;
}

.lb-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--primary-color);
}

.lb-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.lb-card h4 {
    margin-bottom: 0.5rem;
}

/* How It Works */
.how-it-works {
    background: var(--bg-light);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonials */
.testimonials {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-author strong {
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    background: var(--bg-gradient);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
    border-top: 4px solid var(--secondary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    transition: background 0.3s;
}

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

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.contact-info i {
    margin-top: 0.25rem;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Page Header */
.page-header {
    background: var(--bg-gradient);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    border-bottom: 4px solid var(--secondary-color);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-light);
}

/* Values Section */
.values-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 150px;
    height: 150px;
    background: var(--bg-light);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0.5rem 0;
}

.member-bio {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 4rem 0;
}

.features-list {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Living Benefits Page */
/* Did You Know Section */
.did-you-know-section {
    background: var(--bg-gradient);
    padding: 5rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.did-you-know-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.12) 0%, transparent 70%);
    z-index: 1;
}

.did-you-know-section .container {
    position: relative;
    z-index: 2;
}

.dyk-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dyk-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.dyk-icon {
    font-size: 3.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.dyk-subtitle {
    font-size: 1.5rem;
    background: rgba(139, 92, 246, 0.8);
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
}

.dyk-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.dyk-stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.dyk-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.dyk-stat-card.highlight-card {
    background: rgba(245, 158, 11, 0.2);
    border-color: var(--accent-color);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.stat-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* Living Benefits Infographic */
.living-benefits-infographic {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    color: var(--text-dark);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.infographic-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.infographic-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-step {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-icon.step-1 { background: linear-gradient(135deg, #2563eb, #1e40af); }
.step-icon.step-2 { background: linear-gradient(135deg, #ef4444, #dc2626); }
.step-icon.step-3 { background: linear-gradient(135deg, #10b981, #059669); }
.step-icon.step-4 { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }

.info-step h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.arrow-down {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 1rem;
    font-weight: bold;
}

.final-step .arrow-down {
    display: none;
}

/* Benefit Comparison */
.benefit-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.comparison-side {
    padding: 2rem;
    border-radius: 1rem;
    text-align: left;
}

.comparison-side.traditional {
    background: #fee;
    border: 2px solid #fcc;
}

.comparison-side.living-benefits {
    background: #efe;
    border: 2px solid #cfc;
}

.comparison-side h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.comparison-side.traditional h4 {
    color: var(--error-color);
}

.comparison-side.living-benefits h4 {
    color: var(--secondary-color);
}

.comparison-side ul {
    list-style: none;
}

.comparison-side ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.comparison-side.traditional ul li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--error-color);
    font-weight: bold;
}

.comparison-side.living-benefits ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.vs-divider {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.benefits-highlight-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--secondary-color);
    margin: 2rem 0;
}

.benefits-highlight-box h3 {
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.types-section {
    background: var(--bg-light);
}

.benefits-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-type-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.benefit-icon.critical { background: #ef4444; }
.benefit-icon.chronic { background: #f59e0b; }
.benefit-icon.terminal { background: #8b5cf6; }

.benefit-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.benefit-details ul {
    list-style: none;
    margin: 1rem 0;
}

.benefit-details li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.benefit-details i {
    color: var(--secondary-color);
}

.adl-list {
    margin-top: 1.5rem;
}

.adl-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin: 1rem 0;
}

.adl-items span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--bg-light);
    border-radius: 0.25rem;
    font-size: 0.9rem;
}

.benefit-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.benefit-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Process Steps */
.how-works-section {
    padding: 4rem 0;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
}

.step-num {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.process-arrow {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Comparison Table */
.comparison-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.comparison-table {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-header, .comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: var(--border-color);
}

.comparison-col {
    background: white;
    padding: 1.5rem;
    text-align: center;
}

.comparison-header .comparison-col {
    background: var(--text-dark);
    color: white;
    font-weight: 600;
}

.comparison-header .comparison-col.highlight {
    background: var(--text-dark);
    color: white;
}

.comparison-row .comparison-col.highlight {
    background: var(--bg-light);
    font-weight: 600;
}

.green { color: var(--secondary-color); }
.red { color: var(--error-color); }

/* Stories Section */
.stories-section {
    padding: 4rem 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.story-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
}

.story-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.story-author {
    margin-top: 1rem;
    font-style: italic;
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.faq-item h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.faq-item i {
    color: var(--primary-color);
}

/* Products Page */
.products-section {
    padding: 4rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border: 3px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 3rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.2);
    border-color: var(--primary-color);
}

.product-card.featured {
    border-color: var(--primary-color);
    border-width: 4px;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #fff5ee 100%);
}

.product-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--bg-gradient);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(255, 107, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.2) rotate(-5deg);
    color: var(--secondary-color);
}

.product-subtitle {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.product-price {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    margin: 1.5rem 0;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.coverage {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-features {
    margin: 2rem 0;
}

.product-features h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.product-features i {
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

.product-ideal {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

/* Coverage Guide */
.coverage-guide {
    background: var(--bg-light);
    padding: 4rem 0;
}

.coverage-calculators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.calculator-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.calculator-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.example {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Comparison Table Full */
.table-responsive {
    overflow-x: auto;
}

.comparison-table-full {
    width: 100%;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border-collapse: collapse;
}

.comparison-table-full th,
.comparison-table-full td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table-full th {
    background: var(--text-dark);
    color: white;
    font-weight: 600;
}

.comparison-table-full tr:last-child td {
    border-bottom: none;
}

/* Additional Benefits */
.additional-benefits {
    padding: 4rem 0;
}

.riders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .riders-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .riders-grid {
        grid-template-columns: 1fr;
    }
}

.rider-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.35);
    color: white;
}

.rider-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rider-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 28px rgba(255, 107, 0, 0.45);
}

.rider-card:hover::before {
    opacity: 1;
}

.rider-card i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.rider-card:hover i {
    transform: scale(1.15) rotate(5deg);
}

.rider-card h3 {
    color: white;
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
}

.rider-card p {
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

/* Quote Form */
.quote-form-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.quote-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.quote-form-container {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
}

.quote-form {
    max-width: 100%;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

.radio-label:hover,
.checkbox-label:hover {
    background: #e5e7eb;
}

.radio-label input,
.checkbox-label input {
    width: auto;
    cursor: pointer;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Quote Sidebar */
.quote-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.sidebar-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.benefit-list i {
    color: var(--secondary-color);
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.testimonial-card {
    background: var(--bg-light);
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 1rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.success-message h2,
.success-message h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.success-message ul {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 2rem auto;
}

.success-message li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.contact-form-container h2 {
    margin-bottom: 1rem;
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
}

.info-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-links-large {
    display: flex;
    gap: 1rem;
}

.social-links-large a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    transition: background 0.3s;
}

.social-links-large a:hover {
    background: var(--primary-dark);
}

/* Quick Actions */
.quick-actions {
    background: var(--bg-light);
    padding: 4rem 0;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.action-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.3s, box-shadow 0.3s;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.action-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* FAQ Page */
.faq-page-section {
    padding: 4rem 0;
}

.faq-search {
    max-width: 600px;
    margin: 0 auto 3rem;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
}

.faq-search i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.faq-cat-btn {
    padding: 0.5rem 1.5rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 2rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.faq-cat-btn:hover,
.faq-cat-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion .faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 1rem;
}

/* Blog Page */
.blog-section {
    padding: 4rem 0;
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-image {
    position: relative;
}

.placeholder-image {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
}

.article-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.featured-content {
    padding: 3rem;
}

.article-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    gap: 2rem;
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 1rem 0;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    height: 200px;
}

.blog-image .placeholder-image {
    height: 100%;
    font-size: 3rem;
}

.blog-content {
    padding: 2rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    gap: 0.75rem;
}

/* Resources Section */
.resources-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Chatbot Styles */
.chatbot-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.chatbot-container {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    height: 600px;
    display: flex;
    flex-direction: column;
}

.chatbot-header {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.chatbot-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.chatbot-header-text h3 {
    margin: 0;
    font-size: 1.25rem;
}

.status-online {
    font-size: 0.875rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-online i {
    font-size: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    background: #f9fafb;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    display: flex;
    gap: 0.75rem;
    animation: slideIn 0.3s ease-out;
}

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

.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.bot-message .message-avatar {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
}

.user-message .message-avatar {
    background: var(--primary-color);
    color: white;
}

.message-content {
    max-width: 70%;
    padding: 0.875rem 1.25rem;
    border-radius: 18px;
    line-height: 1.5;
}

.bot-message .message-content {
    background: white;
    color: var(--text-dark);
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.user-message .message-content {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
}

.message-content p {
    margin: 0;
}

.chat-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.chat-option-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #8b5cf6;
    background: white;
    color: #8b5cf6;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.chat-option-btn:hover {
    background: #8b5cf6;
    color: white;
    transform: translateY(-2px);
}

/* Checkbox Styles */
.chat-checkbox-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.75rem;
    max-height: 400px;
    overflow-y: auto;
    padding: 0.5rem;
}

.chat-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.chat-checkbox-label:hover {
    background: #f1f5f9;
    border-color: #8b5cf6;
}

.chat-checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.chat-checkbox-checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.chat-checkbox-input:checked ~ .chat-checkbox-checkmark {
    background: #8b5cf6;
    border-color: #8b5cf6;
}

.chat-checkbox-input:checked ~ .chat-checkbox-checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.chat-checkbox-label:has(.chat-checkbox-input:checked) {
    background: #f5f3ff;
    border-color: #8b5cf6;
}

.chat-checkbox-text {
    color: #334155;
    font-size: 0.9375rem;
    font-weight: 500;
}

.chat-checkbox-label:has(.chat-checkbox-input:checked) .chat-checkbox-text {
    color: #8b5cf6;
    font-weight: 600;
}

.checkbox-error {
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.chat-input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    margin-top: 0.75rem;
    transition: border-color 0.3s ease;
}

.chat-input-field:focus {
    outline: none;
    border-color: #8b5cf6;
}

.chat-submit-btn {
    margin-top: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: #8b5cf6;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-submit-btn:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

.chatbot-input-area {
    padding: 1.5rem;
    background: white;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.chatbot-input-area input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.chatbot-input-area input:focus {
    outline: none;
    border-color: #8b5cf6;
}

.chatbot-input-area input:disabled {
    background: #f9fafb;
    cursor: not-allowed;
}

.chat-send-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.chat-send-btn:hover:not(:disabled) {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.chat-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.typing-indicator {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 0;
}

.typing-indicator .message-content {
    padding: 1rem 1.25rem;
    display: flex;
    gap: 0.5rem;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #8b5cf6;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

.chat-success-message {
    text-align: center;
    padding: 2rem;
}

.chat-success-message i {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.chat-success-message h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.chat-success-message p {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .chatbot-container {
        height: 500px;
        border-radius: 12px;
    }
    
    .message-content {
        max-width: 85%;
    }
    
    .chatbot-messages {
        padding: 1rem;
    }
}

/* About Us Page Styles */
.about-hero {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c42 100%);
    padding: 6rem 0 4rem;
    color: white;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.highlight-purple {
    color: #8b5cf6;
    background: white;
    padding: 0 1rem;
    border-radius: 12px;
}

.about-hero-content .hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.95;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-badges .badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-badges .badge i {
    font-size: 1.5rem;
}

.hero-badges .badge span {
    font-weight: 600;
}

/* Story Section */
.story-section {
    padding: 6rem 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.story-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.story-content p {
    margin-bottom: 1rem;
    color: #64748b;
    line-height: 1.8;
}

.principles-list {
    margin-top: 2rem;
}

.principle-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    align-items: start;
}

.principle-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c42 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.principle-text h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.principle-text p {
    margin: 0;
    color: #64748b;
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card-large {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
}

.stat-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #8b5cf6;
}

.stat-card-large .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b00 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-card-large .stat-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.stat-card-large .stat-description {
    color: #64748b;
    line-height: 1.6;
}

/* Different Section */
.different-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.125rem;
    color: #64748b;
}

.text-purple {
    color: #8b5cf6;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
}

.comparison-card.featured {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2);
    border-color: #8b5cf6;
}

.comparison-header {
    padding: 2rem;
    text-align: center;
}

.comparison-header.old {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.comparison-header.new {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
}

.comparison-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.comparison-header.old i {
    color: #94a3b8;
}

.comparison-header.new i {
    color: white;
}

.comparison-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.comparison-header.new h3 {
    color: white;
}

.comparison-list {
    list-style: none;
    padding: 2rem;
}

.comparison-list li {
    padding: 1rem;
    display: flex;
    align-items: start;
    gap: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li i {
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.comparison-card:not(.featured) .comparison-list li i {
    color: #94a3b8;
}

.comparison-card.featured .comparison-list li i {
    color: #10b981;
}

/* Values Modern Section */
.values-modern-section {
    padding: 6rem 0;
    background: white;
}

.values-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-modern-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 3px solid #f1f5f9;
    transition: all 0.3s ease;
    text-align: center;
}

.value-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #8b5cf6;
}

.value-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.value-icon-wrapper.orange {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c42 100%);
}

.value-icon-wrapper.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.value-modern-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-modern-card p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Journey Timeline */
.help-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.journey-timeline {
    max-width: 900px;
    margin: 3rem auto 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 27px;
    top: 56px;
    width: 3px;
    height: calc(100% + 1rem);
    background: linear-gradient(to bottom, #8b5cf6, #e2e8f0);
}

.timeline-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    flex: 1;
    border: 3px solid #f1f5f9;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: #8b5cf6;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.timeline-content h3 i {
    color: #ff6b00;
}

.timeline-content p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
}

.trust-item i {
    font-size: 3rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.trust-item h4 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.trust-item p {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-card.featured {
        transform: none;
    }
    
    .values-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding: 4rem 0 3rem;
    }
    
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .story-content h2 {
        font-size: 1.75rem;
    }
    
    .values-modern-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-item:not(:last-child)::after {
        display: none;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.resource-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.resource-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Newsletter */
.newsletter-section {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.newsletter-content h2 {
    margin-bottom: 1rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 2rem auto;
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
    }

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

    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 { font-size: 2rem; }
    .section-title { font-size: 2rem; }
    .page-header h1 { font-size: 2rem; }

    .two-column,
    .lb-content,
    .quote-layout,
    .contact-layout,
    .featured-article {
        grid-template-columns: 1fr;
    }

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

    .process-steps {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

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

    .hero-buttons {
        flex-direction: column;
    }

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

    .dyk-title {
        font-size: 2rem;
    }

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

    .infographic-flow {
        grid-template-columns: 1fr;
    }

    .arrow-down {
        transform: rotate(90deg);
    }

    .benefit-comparison {
        grid-template-columns: 1fr;
    }

    .vs-divider {
        transform: rotate(90deg);
        margin: 1rem auto;
    }

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

@media (max-width: 640px) {
    .hero h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

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

    .newsletter-form {
        flex-direction: column;
    }
}
