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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e2e8f0; /* Slate-200 */
    background: #111827; /* Slate-900 */
    overflow-x: hidden;
}

/* Removed unused navbar styles - navbar is commented out in HTML */


/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(135deg, #111827 0%, #1e293b 100%); /* Pro Dark Slate Gradient */
    padding: 20px 0 40px;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 20%, rgba(29, 78, 216, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 40% 80%, rgba(30, 64, 175, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

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

.hero-logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.15)) drop-shadow(0 5px 15px rgba(0,0,0,0.4));
    animation: logoFloat 3s ease-in-out infinite;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.hero-title .line-1,
.hero-title .line-2 {
    display: block;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title .line-1 {
    animation: slide-up 1s ease-out 1s both;
}

.hero-title .line-2 {
    animation: slide-up 1s ease-out 1.5s both;
}

.hero-title .brand-gradient {
    opacity: 0;
    animation: typewriter-2 2s steps(22) 2.5s both,
               fade-in 0.5s ease-in 2.5s both,
               gradient-pulse 3s ease-in-out 4s infinite;
    background: linear-gradient(45deg, #3b82f6 0%, #2563eb 100%); /* Pro Blue */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    opacity: 0;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(20px);
    animation: slide-up 1s ease-out 3.5s both;
    color: #cbd5e1; /* Slate-300 */
}

.ai-highlight {
    display: inline-block;
    font-weight: 900;
    background: linear-gradient(45deg, #60a5fa 25%, #a855f7 75%); /* Pro Blue to Purple */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 12px rgba(168, 85, 247, 0.3), 0 0 12px rgba(96, 165, 250, 0.2);
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 0 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slide-up 1s ease-out 4s both;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(29, 78, 216, 0.15) 100%);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #e2e8f0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.25) 0%, rgba(29, 78, 216, 0.25) 100%);
    border-color: rgba(37, 99, 235, 0.4);
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-top: 1px solid rgba(51, 65, 85, 0.3);
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
    min-height: auto;
}

.trust-text {
    color: #e2e8f0;
    font-size: 1.1rem;
    font-weight: 600;
}

.trust-text i {
    color: #3b82f6;
}

.trust-indicators {
    /* Bootstrap handles display: flex, align-items, justify-content, and gap */
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.trust-badge:hover {
    background: rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}

.trust-badge i {
    color: #3b82f6;
    font-size: 1rem;
}

/* Performance Badges */
.performance-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(29, 78, 216, 0.15) 100%); /* Pro Blue Tint */
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #e2e8f0; /* Slate-200 */
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.performance-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.25) 0%, rgba(29, 78, 216, 0.25) 100%);
    border-color: rgba(37, 99, 235, 0.4);
}

.performance-badge i {
    color: #3b82f6; /* Lighter Pro Blue */
    font-size: 1rem;
}

/* General Button Styles */
.btn {
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.1rem;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); /* Pro Blue */
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.6);
    color: white;
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%); /* Darker Pro Blue */
}

.btn-outline-primary {
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    color: white;
}

.btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: white;
    border-color: white;
}

/* --- How It Works Section --- */
.how-it-works {
    background: linear-gradient(135deg, #111827 0%, #1e293b 100%); /* Pro Dark Slate Gradient */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 80% 20%, rgba(29, 78, 216, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #f1f5f9; /* Slate-100 */
    margin-bottom: 1rem;
}

/* Ensure section titles on light backgrounds are dark */
.bg-light .section-title,
.features-section .section-title {
    color: #1e293b !important; /* Slate-800 */
}

.section-subtitle {
    font-size: 1.3rem;
    color: #475569; /* Slate-600 */
    font-weight: 400;
    margin-bottom: 3rem;
}

.step-card {
    background: rgba(30, 41, 59, 0.8); /* Slate-800 */
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(51, 65, 85, 0.5); /* Slate-700 */
    position: relative;
    transition: all 0.4s ease;
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    border-color: #2563eb; /* Pro Blue */
    background: rgba(30, 41, 59, 0.9);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); /* Pro Blue */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.step-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(29, 78, 216, 0.1) 100%);
    border: 2px solid rgba(37, 99, 235, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px auto 30px;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(29, 78, 216, 0.2) 100%);
    border-color: #3b82f6; /* Lighter Pro Blue */
    transform: scale(1.1);
}

.step-icon i {
    font-size: 2.2rem;
    color: #3b82f6; /* Lighter Pro Blue */
    transition: all 0.3s ease;
}

.step-card:hover .step-icon i {
    color: #2563eb;
}

.step-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.step-card p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* --- Features Section (Light Theme) --- */
.features-section {
    padding: 100px 0;
    background: #f8fafc; /* Pro Light Slate */
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    border: 1px solid #e2e8f0; /* Slate-200 */
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 41, 59, 0.08); /* Slate-800 shadow */
    border-color: #2563eb; /* Pro Blue */
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); /* Pro Blue */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b; /* Slate-800 */
    margin-bottom: 1rem;
}

.feature-card p {
    color: #475569; /* Slate-600 */
    font-size: 1rem;
    line-height: 1.7;
}

/* --- Actionable Analytics Section --- */
.actionable-analytics-section {
    background: #1e293b; /* Pro Mid-Dark Slate */
    padding-top: 1rem !important; /* Override Bootstrap py-5 */
    padding-bottom: 1rem !important; /* Override Bootstrap py-5 */
}

.config-example-dark {
    background: #111827; /* Pro Darkest Slate */
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #334155; /* Slate-700 */
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.config-header-dark {
    background: #1e293b; /* Slate-800 */
    padding: 12px 16px;
    color: #94a3b8; /* Slate-400 */
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 1px solid #334155;
}

.config-body-dark pre {
    margin: 0;
    color: #e2e8f0;
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: left;
    white-space: pre-wrap;
    word-break: break-all;
    padding: 16px;
}

/* --- Proven Results Section --- */
.proven-results-section {
    background: #111827; /* Pro Darkest Slate */
}

.proven-results-section .section-subtitle {
    color: #cbd5e1; /* Slate-300 */
}

.stat-card-p {
    background: #1e293b; /* Slate-800 */
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #334155;
    height: 100%;
    transition: all 0.3s ease;
}

.stat-card-p:hover {
    transform: translateY(-8px);
    border-color: #2563eb; /* Pro Blue */
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.stat-number-p {
    font-size: 3.5rem;
    font-weight: 800;
    color: #3b82f6; /* Lighter Pro Blue */
    margin-bottom: 0.5rem;
}

.stat-label-p {
    font-size: 1rem;
    color: #cbd5e1; /* Slate-300 */
    line-height: 1.4;
}

/* --- About Product Section --- */
.feature-list-enhanced li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
    color: #475569; /* Pro Dark Text on light background */
}

.feature-icon-enhanced {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(29, 78, 216, 0.1)); /* Pro Blue tint */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb; /* Pro Blue */
    font-size: 1.5rem;
}

.feature-list-enhanced li strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #1e293b; /* Pro Darkest Text */
    font-size: 1.1rem;
}

.feature-list-enhanced li > div {
    line-height: 1.6;
}

/* --- Implementation Section --- */
.implementation-card {
    background: #1e293b; /* Slate-800 */
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.implementation-card:hover {
    transform: translateY(-8px);
    border-color: #2563eb; /* Pro Blue */
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.implementation-icon {
    font-size: 2.5rem;
    color: #3b82f6; /* Lighter Pro Blue */
    margin-bottom: 1.5rem;
}

.implementation-card h4 {
    color: #f1f5f9;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.implementation-card p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* --- Modal & Form Styles --- */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    overflow: hidden;
    background: #ffffff;
    position: relative;
}

.modal-header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border-bottom: none;
    padding: 32px 32px 24px;
    position: relative;
    text-align: center;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.modal-title-wrapper {
    position: relative;
    z-index: 2;
    padding-left: 80px;
    padding-top: 10px;
}

.modal-header .modal-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: 1.3rem;
    color: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.modal-header .modal-title {
    color: white !important;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.modal-header .modal-subtitle {
    color: rgba(255,255,255,0.85) !important;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0;
}

.modal-header .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.modal-header .btn-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.modal-header .btn-close::before {
    content: '×';
    color: white;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
}

.modal-body {
    padding: 32px;
    background: #ffffff;
}

.modal-footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 20px 32px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Modern Form Styles with Border Cut */
.form-group-modern {
    position: relative;
    margin-bottom: 0;
}

.form-control-modern {
    width: 100%;
    height: calc(3.5rem + 2px);
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
    color: #1e293b;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    outline: none;
}

.form-control-modern:focus {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1), 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.form-label-modern {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
    z-index: 3;
    background: transparent;
    padding: 0 4px;
}

.form-control-modern:focus ~ .form-label-modern,
.form-control-modern:not(:placeholder-shown) ~ .form-label-modern {
    top: -0.75rem;
    left: 0.75rem;
    font-size: 0.875rem;
    color: #2563eb;
    font-weight: 600;
    background: #ffffff;
    padding: 0 8px;
    transform: scale(1);
}

.form-control-modern::placeholder {
    color: transparent;
}

.form-control-modern:focus::placeholder {
    color: #94a3b8;
    opacity: 1;
}

/* Textarea specific styles */
.form-control-modern[style*="height"] {
    min-height: calc(3.5rem + 2px);
    resize: vertical;
    padding: 1rem;
}

/* Validation states */
.form-control-modern:invalid:not(:placeholder-shown) {
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.form-control-modern:invalid:not(:placeholder-shown) ~ .form-label-modern {
    color: #dc2626;
}

.form-control-modern:valid:not(:placeholder-shown) {
    border-color: #059669;
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
}

.form-control-modern:valid:not(:placeholder-shown) ~ .form-label-modern {
    color: #059669;
}

/* Modal Button Styles */
.modal-footer .btn {
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    min-width: 120px;
}

.modal-footer .btn-secondary {
    background: #e2e8f0;
    color: #475569;
    border: 2px solid #e2e8f0;
}

.modal-footer .btn-secondary:hover {
    background: #cbd5e1;
    color: #334155;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.modal-footer .btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    font-weight: 700;
}

.modal-footer .btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    color: white;
}

/* Demo Benefits Section */
.demo-benefits {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #bae6fd;
    border-radius: 12px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.demo-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.demo-benefits h6 {
    color: #1e293b !important;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.demo-benefits ul {
    margin-bottom: 0;
}

.demo-benefits li {
    color: #475569 !important;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    padding: 4px 0;
}

.demo-benefits li i {
    color: #059669 !important;
    font-weight: 900;
    margin-right: 12px;
    font-size: 1rem;
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .modal-header {
        padding: 24px 20px 20px;
    }
    
    .modal-body {
        padding: 24px 20px;
    }
    
    .modal-footer {
        padding: 16px 20px;
        flex-direction: column;
    }
    
    .modal-footer .btn {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .modal-footer .btn:last-child {
        margin-bottom: 0;
    }
    
    .modal-header .modal-title {
        font-size: 1.2rem;
    }
    
    .modal-header .modal-subtitle {
        font-size: 0.9rem;
    }
}


/* --- Footer --- */
.footer {
    background: linear-gradient(135deg, #111827 0%, #1e293b 100%); /* Pro Dark Slate */
    border-top: 1px solid rgba(51, 65, 85, 0.3);
    color: #cbd5e1; /* Slate-300 */
}

.footer-brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%); /* Pro Blue */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-share .share-text {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center; /* Center on small screens */
}

@media (min-width: 992px) {
    .social-icons {
        justify-content: flex-end; /* Align right on large screens */
    }
}

/* Social Icons */
.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.social-icon:hover {
    transform: translateY(-3px);
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.social-icon.whatsapp {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%); /* Pro Accent Green */
}

.social-icon.whatsapp:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.social-icon.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%); /* Keep brand color */
}

.social-icon.linkedin:hover {
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4);
}

.social-icon.copy {
    background: linear-gradient(135deg, #475569 0%, #334155 100%); /* Slate */
}

.social-icon.copy:hover {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%); /* Pro Accent Green on hover */
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.footer .text-muted {
    color: #64748b !important; /* Slate-500 */
}

/* --- DEMO CHAT INTERFACE --- */
/* This section keeps its specific blue/green colors for the demo feel */
/* Minor tweaks to align with the new theme's depth */
/* Removed unused chat interface styles - no chat interface in HTML */

/* --- MISC & ANIMATIONS --- */
@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-demo-section {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: slide-up 1s ease-out 4.5s both;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding: 0 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slide-up 1s ease-out 5s both;
}

.hero-guarantee {
    font-size: 0.95rem;
    opacity: 0.8;
    font-weight: 500;
}

/* About Product Section */
.about-product-section {
    background: #f8fafc; /* Slate-50 */
}

.about-product-section .section-title {
    color: #1e293b !important; /* Slate-800 */
}

.about-product-section .section-subtitle {
    color: #475569; /* Slate-600 */
}

/* Language Tags */
.language-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.language-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.language-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #111827 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(37, 99, 235, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 70% 30%, rgba(29, 78, 216, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.cta-section .section-title {
    color: #f1f5f9 !important;
}

.cta-section .section-subtitle {
    color: #cbd5e1 !important;
}

.btn-light {
    background: #ffffff;
    color: #1e293b;
    border: none;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-light:hover {
    background: #f1f5f9;
    color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

/* Responsive Design Improvements */

/* Extra Small Devices (phones, 576px and down) */
@media (max-width: 575.98px) {
    .hero-section {
        padding: 40px 0 30px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .feature-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        width: 100%;
        text-align: center;
    }
    

    
    .trust-section .row {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .trust-indicators {
        margin-top: 1rem;
        gap: 0.5rem !important;
    }
    
    .trust-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .modal-header .modal-title {
        font-size: 1.1rem;
    }
    
    .modal-header .modal-subtitle {
        font-size: 0.85rem;
    }
    
    .modal-title-wrapper {
        padding-left: 60px;
        padding-top: 5px;
    }
    
    .modal-header .modal-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-section {
        padding: 50px 0 40px;
    }
    

    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .feature-badge {
        flex: 0 1 auto;
        min-width: 200px;
    }
}

/* Medium Devices (tablets, 768px and up) */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 45px;
    }
    

    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .feature-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin-bottom: 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .feature-card {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .stat-card-p {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    

    
    .trust-indicators {
        /* Bootstrap gap-4 = 1.5rem, reducing slightly for mobile */
        gap: 0.75rem !important;
    }
    

    
    .trust-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .config-example-dark {
        margin-top: 2rem;
    }
    
    .implementation-card {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-share .share-text {
        text-align: center;
    }
    
    .about-product-section .row {
        text-align: center;
    }
    
    .language-examples {
        justify-content: center;
        text-align: center;
    }
    
    .language-tag {
        margin: 0.25rem;
    }
    
    /* Modal Responsive Fixes */
    .modal-dialog {
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-footer {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .modal-footer .btn {
        width: 100%;
        margin: 0;
    }
    
    /* Form Responsive Fixes */
    .form-control-modern {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Tablet/Large Mobile Devices (769px to 991px) */
@media (min-width: 769px) and (max-width: 991.98px) {
    .hero-section {
        padding: 30px 0 50px;
    }
    

    
    .trust-indicators {
        /* Bootstrap handles justify-content, using gap-4 equivalent */
        gap: 1rem !important;
    }

}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .hero-section {
        padding: 40px 0 60px;
    }
    

    
    .hero-features {
        justify-content: center;
        gap: 1rem;
    }
    
    .trust-section .row {
        align-items: center;
        min-height: 60px;
    }
    
    .trust-text {
        display: flex;
        align-items: center;
        height: 100%;
    }
    

    

    
    .trust-indicators {
        /* Bootstrap handles justify-content-lg-end, just ensure no wrapping on desktop */
        flex-wrap: nowrap !important;
    }
    
    .modal-dialog {
        max-width: 600px;
    }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .hero-section {
        padding: 50px 0 70px;
    }
    

    

    
    .trust-indicators {
        /* Bootstrap gap-4 works well, ensure no wrapping */
        flex-wrap: nowrap !important;
    }

    
    .container {
        max-width: 1140px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
    }
}

/* Modal Animation Enhancements */
.modal.fade .modal-dialog {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: scale(0.9) translateY(-20px);
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

/* Form Validation States Enhancement */
.form-floating > .form-control:invalid:not(:placeholder-shown) {
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.form-floating > .form-control:invalid:not(:placeholder-shown) ~ label {
    color: #dc2626;
}

.form-floating > .form-control:valid:not(:placeholder-shown) {
    border-color: #059669;
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
}

.form-floating > .form-control:valid:not(:placeholder-shown) ~ label {
    color: #059669;
}

/* Enhanced Modal Backdrop */
.modal-backdrop.show {
    opacity: 0.6;
    backdrop-filter: blur(4px);
}

/* Loading States for Buttons */
.btn.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Form Focus Ring Enhancement */
.form-floating > .form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1), 0 4px 12px rgba(0,0,0,0.1);
}

/* Success Animation */
@keyframes success-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(5, 150, 105, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0);
    }
}

.form-success {
    animation: success-pulse 1.5s ease-out;
}