/* LEARN K12 Custom Styles */

/* Brand Colors */
:root {
    --primary-color: #D98324;    /* Orange */
    --secondary-color: #443627;   /* Dark Brown */
    --light-color: #EFDCAB;       /* Beige */
    --accent-color: #F2F6D0;      /* Light Green */
    --white: #ffffff;
    --dark: #2c2c2c;
    --gray-light: #f8f9fa;
    --gray: #6c757d;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 1rem;
    --line-height-base: 1.6;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

/* Bootstrap Overrides */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c2721e;
    border-color: #c2721e;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.section-padding {
    padding: var(--section-padding);
}

/* Global Styles */
body {
    font-family: var(--font-family);
    line-height: var(--line-height-base);
    color: var(--secondary-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--secondary-color) !important;
    display: flex;
    align-items: center;
}

.brand-text {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    color: var(--secondary-color) !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

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

.nav-link:hover::after {
    width: 80%;
}

/* Language Toggle */
.language-toggle .btn {
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Particles Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--light-color) 100%);
    overflow: hidden;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions .btn {
    margin-bottom: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.trust-indicators {
    padding: 1.5rem 0;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.rating {
    display: flex;
    align-items: center;
}

/* Hero Visual - Modern Marketing Approach */
.hero-visual {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.marketing-visual {
    position: relative;
    height: 450px;
    width: 100%;
    overflow: hidden;
}

/* Background Shapes */
.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--light-color), var(--accent-color));
    opacity: 0.2;
    animation: shapeFloat 12s ease-in-out infinite;
}

@keyframes shapeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.shape-1 {
    width: 30px;
    height: 30px;
    top: 25%;
    left: 2%;
    animation-delay: 0s;
}

.shape-2 {
    width: 25px;
    height: 25px;
    bottom: 25%;
    right: 2%;
    animation-delay: 3s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 1%;
    animation-delay: 6s;
}

.shape-4 {
    width: 20px;
    height: 20px;
    top: 40%;
    right: 1%;
    animation-delay: 9s;
}

.shape-5 {
    width: 35px;
    height: 35px;
    bottom: 60%;
    right: 3%;
    animation-delay: 11s;
}

/* Central Focus Circle */
.focus-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-color), #e69530);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(217, 131, 36, 0.3);
    z-index: 5;
    animation: pulse 4s ease-in-out infinite;
    border: 3px solid white;
}

@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 10px 30px rgba(217, 131, 36, 0.3);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 15px 40px rgba(217, 131, 36, 0.4);
    }
}

.focus-content {
    text-align: center;
    color: white;
}

.focus-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.focus-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
    color: white;
}

.focus-subtitle {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* Floating Benefit Cards */
.benefit-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--light-color);
    min-width: 140px;
    max-width: 180px;
    transition: all 0.3s ease;
    animation: floatGentle 6s ease-in-out infinite;
}

.benefit-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

@keyframes floatGentle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.benefit-1 {
    top: 8%;
    left: 8%;
    animation-delay: 0s;
}

.benefit-2 {
    top: 8%;
    right: 8%;
    animation-delay: 1.5s;
}

.benefit-3 {
    bottom: 8%;
    left: 8%;
    animation-delay: 3s;
}

.benefit-4 {
    bottom: 8%;
    right: 8%;
    animation-delay: 4.5s;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-stats {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.benefit-symbol {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 0.2rem;
}

.benefit-label {
    font-size: 0.875rem;
    color: var(--secondary-color);
    font-weight: 600;
    line-height: 1.2;
}

/* Connecting Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.line {
    position: absolute;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    opacity: 0.3;
    animation: lineGlow 8s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

.line-1 {
    top: 25%;
    left: 25%;
    width: 100px;
    height: 2px;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.line-2 {
    top: 25%;
    right: 25%;
    width: 100px;
    height: 2px;
    transform: rotate(-45deg);
    animation-delay: 2s;
}

.line-3 {
    bottom: 25%;
    left: 25%;
    width: 100px;
    height: 2px;
    transform: rotate(-45deg);
    animation-delay: 4s;
}

.line-4 {
    bottom: 25%;
    right: 25%;
    width: 100px;
    height: 2px;
    transform: rotate(45deg);
    animation-delay: 6s;
}

/* Problem Section */
.challenges-list {
    margin-top: 2rem;
}

.challenge-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.challenge-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.challenge-icon {
    font-size: 2.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.challenge-content h5 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.challenge-content p {
    color: var(--gray);
    margin: 0;
}

/* Solution Preview */
.solution-preview .card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-color) 100%);
    border: none;
    border-radius: var(--border-radius-lg);
}

.feature-check {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-check i {
    font-size: 1.2rem;
    margin-right: 0.75rem;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(68, 54, 39, 0.1);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    display: block;
}

.stat-label {
    color: var(--gray);
    font-weight: 500;
}

/* Process Section */
.process-comparison {
    margin-top: 3rem;
}

.process-table {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.process-row {
    display: flex;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.process-row:hover {
    background-color: var(--light-color);
}

.process-task {
    font-weight: 600;
    color: var(--secondary-color);
    padding: 1.5rem;
    flex-basis: 150px;
    flex-shrink: 0;
    background-color: var(--gray-light);
    border-right: 1px solid #e9ecef;
}

.process-description {
    padding: 1.5rem;
    color: var(--gray);
    line-height: 1.6;
}

.cost-breakdown {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.cost-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.cost-percentage {
    font-size: 2rem;
    font-weight: 700;
    margin-right: 1rem;
    min-width: 60px;
}

.cost-description {
    font-size: 1.1rem;
}

/* Benefits */
.learn-benefits {
    padding: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 2px solid var(--light-color);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.benefit-item h5 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--gray);
    margin: 0;
}

.productivity-highlight {
    background: linear-gradient(135deg, var(--primary-color), #e69530) !important;
    border-radius: var(--border-radius-lg);
}

/* Comparison Table */
.comparison-table-container {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    overflow-x: auto;
}

.comparison-table {
    margin: 0;
    min-width: 700px;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem 1rem;
    text-align: center;
    vertical-align: middle;
    border: none;
    border-bottom: 1px solid #e9ecef;
}

.comparison-table th {
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.learn-column {
    background: linear-gradient(135deg, var(--primary-color), #e69530) !important;
    color: var(--white) !important;
    position: relative;
}

.learn-column::before {
    content: '⭐ RECOMMENDED';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.learn-cell {
    background: linear-gradient(135deg, rgba(217, 131, 36, 0.1), rgba(217, 131, 36, 0.05));
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-name {
    text-align: left !important;
    font-weight: 600;
    color: var(--secondary-color);
}

.partial {
    color: var(--warning);
}

/* Target Section */
.target-list {
    margin-top: 2rem;
}

.target-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 2px solid var(--light-color);
    transition: all 0.3s ease;
}

.target-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.target-icon {
    font-size: 3rem;
    margin-right: 1.5rem;
}

.target-item h5 {
    margin: 0;
    color: var(--secondary-color);
    font-weight: 600;
}

.minimal-requirements {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin-top: 3rem;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.requirements-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gray);
    font-size: 1.1rem;
}

.requirements-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.2rem;
}

.highlight-text {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

/* Workflow */
.workflow-visualization {
    padding: 2rem 0;
}

.workflow-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.workflow-steps {
    margin-top: 2rem;
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.workflow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 45px;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #e69530);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.step-content h6 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: var(--gray);
    margin: 0;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    height: 100%;
    transition: all 0.3s ease;
}

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

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.testimonial-content blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.5;
}

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

.author-info h6 {
    margin: 0;
    color: var(--secondary-color);
    font-weight: 600;
}

.testimonial-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.testimonial-stats .stat {
    text-align: center;
}

.testimonial-stats .stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.testimonial-stats .stat-label {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 500;
}

/* CTA Section */
.cta-actions .btn {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.trust-badges {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge {
    text-align: center;
    padding: 1rem;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
}

.badge-text {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--secondary-color) !important;
    padding: 3rem 0 1rem;
}

.footer-brand img {
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.footer-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links-inline {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-links-inline a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.separator {
    color: rgba(255, 255, 255, 0.4);
}

/* Modals */
.modal-content {
    border-radius: var(--border-radius-lg);
    border: none;
}

.modal-header {
    background: linear-gradient(135deg, var(--light-color), var(--accent-color));
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    border-bottom: none;
    padding: 2rem;
}

.modal-title {
    color: var(--secondary-color);
    font-weight: 700;
}

.modal-body {
    padding: 2rem;
}

.consultant-photo {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.form-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.form-control, .form-select {
    border-radius: var(--border-radius);
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(217, 131, 36, 0.25);
}

/* Language Content */
.lang-content {
    transition: opacity 0.3s ease;
}

.lang-content[style*="display: none"] {
    display: none !important;
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Marketing Visual Mobile */
    .marketing-visual {
        height: 350px;
    }
    
    .background-shapes {
        display: none;
    }
    
    .focus-circle {
        width: 120px;
        height: 120px;
    }
    
    .focus-icon {
        font-size: 2rem;
    }
    
    .focus-title {
        font-size: 1.2rem;
    }
    
    .benefit-card {
        min-width: 110px;
        padding: 1rem;
        position: static;
        display: inline-block;
        margin: 0.5rem;
        animation: none;
    }
    
    .benefit-number {
        font-size: 2rem;
    }
    
    .connection-lines {
        display: none;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .comparison-table-container {
        padding: 1rem;
    }
    
    .workflow-step {
        flex-direction: column;
        text-align: center;
    }
    
    .workflow-step::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .step-number {
        margin: 0 0 1rem 0;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .challenge-item,
    .benefit-item,
    .target-item {
        flex-direction: column;
        text-align: center;
    }
    
    .challenge-icon,
    .benefit-icon,
    .target-icon {
        margin: 0 0 1rem 0;
    }
    
    .process-row {
        flex-direction: column;
    }
    
    .process-task {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }
    
    .trust-badges .row > div {
        margin-bottom: 1rem;
    }
    
    .cta-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .floating-card .card {
        min-width: auto;
    }
    
    .testimonial-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links-inline {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .separator {
        display: none;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .floating-card,
    #particles-js,
    .modal {
        display: none !important;
    }
    
    body {
        color: #000 !important;
        background: #fff !important;
    }
    
    .hero-section {
        background: #fff !important;
        color: #000 !important;
    }
    
    a {
        color: #000 !important;
        text-decoration: underline !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #cc6600;
        --secondary-color: #000000;
        --gray: #333333;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --white: #1a1a1a;
        --dark: #ffffff;
        --gray-light: #2d2d2d;
        --secondary-color: #ffffff;
    }
    
    .hero-section {
        background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    }
    
    .navbar {
        background: rgba(26, 26, 26, 0.95);
    }
    
    .card {
        background: #2d2d2d;
        color: #ffffff;
    }
}