/* ============================================
   Frontend Custom Styles
   ============================================ */

/* Fixed navbar: prevent content from going under header */
body.index-page {
    padding-top: 85px;
}
@media (max-width: 1199px) {
    body.index-page {
        padding-top: 75px;
    }
}

/* Fixed header background so content doesn't show through when scrolling */
.header.fixed-top {
    background: var(--surface-color, #fff);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Contact Section Styles */
.contact-info-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.contact-item h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1b1b18;
}

.contact-item p {
    margin: 0;
    color: #6c757d;
}

.contact-item a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-map-wrapper {
    margin-top: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* Feature Block Styles */
.feature-block {
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.feature-block .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.feature-block h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1b1b18;
}

.feature-block p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Feature Card Styles (for Features page) */
.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

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

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.feature-description {
    font-size: 0.9375rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Articles Section Styles */
.articles {
    padding: 80px 0;
}

.article-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.article-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-img-placeholder {
    width: 100%;
    height: 200px;
    min-height: 200px;
    border-radius: 8px;
}

.article-item:hover .article-img img {
    transform: scale(1.05);
}

.article-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-meta {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.article-meta i {
    margin-right: 0.25rem;
}

.article-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.article-title a {
    color: #1b1b18;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: #2563eb;
}

.article-excerpt {
    color: #6c757d;
    margin-bottom: 1rem;
    flex-grow: 1;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.read-more a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more a:hover {
    color: #1d4ed8;
}

.read-more a i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.read-more a:hover i {
    transform: translateX(5px);
}

/* Preview Cards Styles */
.feature-preview-card,
.service-preview-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-preview-card:hover,
.service-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.feature-preview-card .feature-icon,
.service-preview-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.feature-preview-card .feature-icon i,
.service-preview-card .icon i {
    font-size: 1.75rem;
    color: white;
}

.feature-preview-card h4,
.service-preview-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1b1b18;
}

.feature-preview-card p,
.service-preview-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .feature-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {
    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .feature-icon-wrapper i {
        font-size: 1.75rem;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.875rem;
    }

    .article-img {
        height: 180px;
    }
}

/* Article Detail Page Styles */
.article-detail {
    padding: 80px 0;
}

.article-content-wrapper {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.article-header {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 1.5rem;
}

.article-detail .article-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 1rem;
}

.article-detail .article-meta {
    color: #6c757d;
    font-size: 0.875rem;
}

.article-detail .article-meta i {
    margin-right: 0.5rem;
}

.article-featured-image {
    border-radius: 12px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
}

.article-body {
    padding-top: 2rem;
    line-height: 1.8;
    color: #333;
    font-size: 1.0625rem;
}

.article-body p {
    margin-bottom: 1.5rem;
}

/* Rich Text Editor Content Styling */
.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
    font-weight: 700;
    color: #1b1b18;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-body h1 {
    font-size: 2rem;
}

.article-body h2 {
    font-size: 1.75rem;
}

.article-body h3 {
    font-size: 1.5rem;
}

.article-body h4 {
    font-size: 1.25rem;
}

.article-body h5 {
    font-size: 1.125rem;
}

.article-body h6 {
    font-size: 1rem;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-body ul li,
.article-body ol li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.article-body ul {
    list-style-type: disc;
}

.article-body ol {
    list-style-type: decimal;
}

.article-body a {
    color: #2563eb;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.article-body a:hover {
    color: #1d4ed8;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    overflow-x: auto;
    display: block;
}

.article-body table thead {
    background-color: #f8f9fa;
}

.article-body table th,
.article-body table td {
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    text-align: left;
}

.article-body table th {
    font-weight: 600;
    color: #1b1b18;
}

.article-body blockquote {
    border-left: 4px solid #2563eb;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #6c757d;
}

.article-body code {
    background-color: #f8f9fa;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: #e83e8c;
}

.article-body pre {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.article-body pre code {
    background-color: transparent;
    padding: 0;
    color: #333;
}

.article-body strong,
.article-body b {
    font-weight: 700;
    color: #1b1b18;
}

.article-body em,
.article-body i {
    font-style: italic;
}

.article-body hr {
    border: none;
    border-top: 2px solid #e9ecef;
    margin: 2rem 0;
}

/* Responsive adjustments for article body */
@media (max-width: 767px) {
    .article-body {
        font-size: 1rem;
    }

    .article-body h1 {
        font-size: 1.75rem;
    }

    .article-body h2 {
        font-size: 1.5rem;
    }

    .article-body h3 {
        font-size: 1.25rem;
    }

    .article-body table {
        font-size: 0.875rem;
    }
}

.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1b1b18;
}

.related-article-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.related-article-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-article-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.related-article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-article-content h5 {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.related-article-content h5 a {
    color: #1b1b18;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-article-content h5 a:hover {
    color: #2563eb;
}

.related-article-date {
    font-size: 0.75rem;
    color: #6c757d;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: #2563eb;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* SLA Page Styles */
.sla {
    padding: 80px 0;
    background: #f8f9fa;
}

.sla .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1b1b18;
    margin-bottom: 1rem;
}

.sla .service-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid #2563eb;
}

.service-number {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1b1b18;
    margin: 0;
}

.service-type-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.service-type-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.type-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #dee2e6;
}

.type-header i {
    font-size: 1.5rem;
    color: #2563eb;
}

.type-header h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1b1b18;
    margin: 0;
}

.sla-section,
.requirements-section {
    margin-bottom: 1.5rem;
}

.sla-section:last-child,
.requirements-section:last-child {
    margin-bottom: 0;
}

.sla-section h6,
.requirements-section h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sla-section h6 i,
.requirements-section h6 i {
    font-size: 1.125rem;
}

.sla-list,
.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sla-list li,
.requirements-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #495057;
    line-height: 1.6;
}

.sla-list li::before,
.requirements-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 1.25rem;
}

.disclaimer-card {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #ffc107;
    margin-top: 3rem;
}

.disclaimer-header {
    margin-bottom: 1.5rem;
}

.disclaimer-header i {
    font-size: 2rem;
    color: #856404;
    margin-bottom: 0.5rem;
}

.disclaimer-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #856404;
    margin-bottom: 0.5rem;
}

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

.disclaimer-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #856404;
    line-height: 1.7;
    font-weight: 500;
}

.disclaimer-list li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    font-size: 1.125rem;
}

/* Language Switcher Styles */
.language-switcher {
    position: relative;
    z-index: 1000;
}

.language-switcher .dropdown-toggle,
.language-switcher .language-btn {
    color: #333 !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease !important;
    background: #f8f9fa !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    min-width: 70px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.language-switcher .dropdown-toggle:hover,
.language-switcher .language-btn:hover {
    background: #e9ecef !important;
    border-color: #2563eb !important;
    color: #2563eb !important;
    transform: translateY(-1px);
}

.language-switcher .dropdown-toggle:focus,
.language-switcher .language-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25) !important;
    color: #2563eb !important;
    outline: none !important;
    border-color: #2563eb !important;
}

.language-switcher .language-code {
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #333 !important;
}

.language-switcher .bi-globe {
    color: #2563eb !important;
}

.language-switcher .dropdown-menu {
    border-radius: 8px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    min-width: 200px;
    margin-top: 0.5rem;
}

.language-switcher .dropdown-item {
    padding: 0.75rem 1.25rem;
    transition: all 0.2s ease;
    color: #333;
    font-size: 0.9375rem;
}

.language-switcher .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #2563eb;
}

.language-switcher .dropdown-item.active {
    background-color: #e7f1ff;
    color: #2563eb;
    font-weight: 500;
}

.language-switcher .dropdown-item i.bi-check {
    color: #2563eb;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .language-switcher {
        margin-right: 0.5rem;
    }
    
    .language-switcher .dropdown-toggle {
        padding: 0.4rem 0.75rem;
        font-size: 0.875rem;
    }
}

/* Additional Responsive Styles */
/* Enhanced About Video Wrapper */
.about-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(13, 131, 253, 0.15);
    transition: all 0.3s ease;
}

.about-video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(13, 131, 253, 0.25);
}

.about-video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 20px;
}

.video-thumbnail-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-thumbnail-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-thumbnail-wrapper:hover .video-thumbnail-enhanced img {
    transform: scale(1.1);
}

.play-button-overlay-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 131, 253, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%);
    transition: all 0.3s ease;
}

.video-thumbnail-wrapper:hover .play-button-overlay-enhanced {
    background: linear-gradient(135deg, rgba(13, 131, 253, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.play-video-btn-enhanced {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.play-video-btn-enhanced:hover {
    transform: scale(1.1);
    background: white;
    box-shadow: 0 6px 30px rgba(13, 131, 253, 0.4);
}

.play-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d83fd 0%, #0a6fd4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-video-btn-enhanced:hover .play-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(13, 131, 253, 0.5);
}

.play-icon-wrapper i {
    font-size: 1.5rem;
    color: white;
    margin-left: 3px;
}

.play-text {
    font-weight: 600;
    color: #212529;
    font-size: 1rem;
}

.video-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(13, 131, 253, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(13, 131, 253, 0.3);
}

/* Video Tutorial Section */
.video-tutorials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.video-tutorials-section .section-header {
    margin-bottom: 2rem;
    text-align: center !important;
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.video-tutorials-section .section-header.text-center {
    text-align: center !important;
}

.video-tutorials-section .section-meta-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 0.5rem !important;
    width: 100%;
    text-align: center !important;
}

.video-tutorials-section .section-meta-wrapper.text-center {
    text-align: center !important;
}

.video-tutorials-section .section-meta {
    color: var(--armadaku-primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block !important;
    padding: 0.5rem 1rem;
    background: rgba(13, 131, 253, 0.1);
    border-radius: 25px;
    text-align: center !important;
    margin: 0 auto !important;
}

.video-tutorials-section .section-title,
.video-tutorials-section h2.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--armadaku-text);
    margin-bottom: 0.5rem !important;
    margin-top: 0 !important;
    text-align: center !important;
    line-height: 1.2;
    width: 100%;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.video-tutorials-section .section-title.text-center {
    text-align: center !important;
}

.video-tutorials-section .section-description,
.video-tutorials-section p.section-description {
    font-size: 1.125rem;
    color: var(--armadaku-text-light);
    max-width: 600px;
    margin: 0 auto !important;
    margin-top: 0 !important;
    text-align: center !important;
    line-height: 1.6;
    display: block !important;
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.video-tutorials-section .section-description.text-center {
    text-align: center !important;
}

.tutorial-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tutorial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(13, 131, 253, 0.15);
}

.tutorial-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    background: #f8f9fa;
}

.tutorial-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tutorial-card:hover .tutorial-thumbnail img {
    transform: scale(1.1);
}

.tutorial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 131, 253, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.tutorial-card:hover .tutorial-overlay {
    opacity: 1;
}

.tutorial-play-btn {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.tutorial-play-btn:hover {
    transform: scale(1.15);
    background: white;
    box-shadow: 0 6px 30px rgba(13, 131, 253, 0.4);
}

.tutorial-play-btn i {
    font-size: 2rem;
    color: var(--armadaku-primary);
    margin-left: 3px;
}

.tutorial-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tutorial-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tutorial-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--armadaku-text);
    margin-bottom: 0.75rem;
}

.tutorial-description {
    color: var(--armadaku-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.tutorial-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.tutorial-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(13, 131, 253, 0.1);
    color: var(--armadaku-primary);
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.tutorial-category i {
    font-size: 0.75rem;
}

/* Enhanced About Section */
.about.section {
    position: relative;
    overflow: hidden;
}

.about.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 131, 253, 0.02) 0%, rgba(255, 255, 255, 0.5) 100%);
    pointer-events: none;
}

.about .about-meta {
    background: linear-gradient(135deg, rgba(13, 131, 253, 0.1) 0%, rgba(13, 131, 253, 0.05) 100%);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.about .about-title {
    background: linear-gradient(135deg, #212529 0%, #495057 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about .about-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.25rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    clear: both;
}

.about .about-description:last-of-type {
    margin-bottom: 0;
}

.about .about-description strong {
    color: var(--armadaku-primary);
    font-weight: 700;
}

.about .col-xl-6 {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    overflow: visible;
}

@media (max-width: 1199px) {
    .about .col-xl-6 {
        padding-right: 1rem;
        padding-left: 1rem;
    }
    
    .about .about-title {
        font-size: 2rem;
    }
    
    .about .about-description {
        font-size: 1rem;
    }
}

.about .mt-4 h4,
.about-subsection-title {
    color: var(--armadaku-text);
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(13, 131, 253, 0.2);
    line-height: 1.4;
}

.about .mt-4 {
    margin-top: 2rem !important;
}

.about .pt-3 {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(13, 131, 253, 0.1);
}

.about-description {
    margin-bottom: 1.25rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.8;
}

.about-description:last-child {
    margin-bottom: 0;
}

/* Simple Services Section */
.services-simple {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
}

.services-list-wrapper {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(13, 131, 253, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 131, 253, 0.1);
}

.service-item:hover {
    background: rgba(13, 131, 253, 0.1);
    border-color: var(--armadaku-primary);
    transform: translateX(5px);
}

.service-item i {
    color: var(--armadaku-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.service-item span {
    color: var(--armadaku-text);
    font-size: 0.95rem;
    font-weight: 500;
}

.services-summary {
    font-size: 1.125rem;
    color: var(--armadaku-text-light);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Enhanced Services Section (old) */
.services-enhanced {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(13,131,253,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.services-header {
    position: relative;
    z-index: 1;
}

.services-meta {
    color: var(--armadaku-primary);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, rgba(13, 131, 253, 0.1) 0%, rgba(13, 131, 253, 0.05) 100%);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    display: inline-block;
}

.services-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--armadaku-text);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #212529 0%, #495057 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-subtitle {
    font-size: 1.125rem;
    color: var(--armadaku-text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.service-card-enhanced {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(13, 131, 253, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--armadaku-primary) 0%, var(--armadaku-primary-dark) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(13, 131, 253, 0.15);
    border-color: var(--armadaku-primary);
}

.service-card-enhanced:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(13, 131, 253, 0.1) 0%, rgba(13, 131, 253, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card-enhanced:hover .service-icon-wrapper {
    background: linear-gradient(135deg, var(--armadaku-primary) 0%, var(--armadaku-primary-dark) 100%);
    transform: scale(1.1) rotate(5deg);
}

.service-icon-wrapper i {
    font-size: 2rem;
    color: var(--armadaku-primary);
    transition: all 0.3s ease;
}

.service-card-enhanced:hover .service-icon-wrapper i {
    color: white;
    transform: scale(1.1);
}

.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--armadaku-text);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    color: var(--armadaku-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(13, 131, 253, 0.1);
    color: var(--armadaku-primary);
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-badge i {
    font-size: 0.75rem;
}

/* Info Boxes */
.info-box-enhanced {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(13, 131, 253, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.info-box-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(13, 131, 253, 0.15);
    border-color: var(--armadaku-primary);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--armadaku-primary) 0%, var(--armadaku-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.3s ease;
}

.info-box-enhanced:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-icon i {
    font-size: 1.75rem;
    color: white;
}

.info-box-enhanced h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--armadaku-text);
    margin-bottom: 0.75rem;
}

.info-box-enhanced p {
    color: var(--armadaku-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .video-tutorials-section .section-title {
        font-size: 2rem;
    }
    
    .play-video-btn-enhanced {
        padding: 0.75rem 1.5rem;
    }
    
    .play-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .play-text {
        font-size: 0.9rem;
    }
    
    .about .about-title {
        font-size: 2rem;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
    }
    
    .service-card-enhanced {
        padding: 1.5rem;
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-wrapper i {
        font-size: 1.75rem;
    }
}

/* Button Enhancements */
.btn-outline-primary {
    border: 2px solid var(--armadaku-primary);
    color: var(--armadaku-primary);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: white;
}

.btn-outline-primary:hover {
    background: var(--armadaku-primary);
    border-color: var(--armadaku-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 131, 253, 0.3);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.05rem;
}

/* Workflow Section */
.workflow-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.workflow-list-wrapper {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.workflow-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(13, 131, 253, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 131, 253, 0.1);
    height: 100%;
}

.workflow-item:hover {
    background: rgba(13, 131, 253, 0.1);
    border-color: var(--armadaku-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(13, 131, 253, 0.15);
}

.workflow-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--armadaku-primary) 0%, var(--armadaku-primary-dark) 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 15px rgba(13, 131, 253, 0.3);
    transition: all 0.3s ease;
}

.workflow-item:hover .workflow-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(13, 131, 253, 0.4);
}

.workflow-item span {
    color: var(--armadaku-text);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    flex: 1;
}

.workflow-header {
    position: relative;
    z-index: 1;
}

.workflow-meta {
    color: var(--armadaku-primary);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, rgba(13, 131, 253, 0.1) 0%, rgba(13, 131, 253, 0.05) 100%);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    display: inline-block;
}

.workflow-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--armadaku-text);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #212529 0%, #495057 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.workflow-subtitle {
    font-size: 1.125rem;
    color: var(--armadaku-text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.workflow-step-enhanced {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(13, 131, 253, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.workflow-step-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--armadaku-primary) 0%, var(--armadaku-primary-dark) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 16px 16px 0 0;
}

.workflow-step-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(13, 131, 253, 0.15);
    border-color: var(--armadaku-primary);
}

.workflow-step-enhanced:hover::before {
    transform: scaleX(1);
}

.step-number-wrapper {
    margin-bottom: 1.25rem;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--armadaku-primary) 0%, var(--armadaku-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 131, 253, 0.3);
}

.workflow-step-enhanced:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(13, 131, 253, 0.4);
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--armadaku-text);
    margin-bottom: 0.75rem;
}

.step-description {
    font-size: 0.9rem;
    color: var(--armadaku-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Features Section */
.features-enhanced {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.features-header {
    position: relative;
    z-index: 1;
}

.features-meta {
    color: var(--armadaku-primary);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, rgba(13, 131, 253, 0.1) 0%, rgba(13, 131, 253, 0.05) 100%);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    display: inline-block;
}

.features-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--armadaku-text);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #212529 0%, #495057 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-subtitle {
    font-size: 1.125rem;
    color: var(--armadaku-text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.feature-card-enhanced {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(13, 131, 253, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--armadaku-primary) 0%, var(--armadaku-primary-dark) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(13, 131, 253, 0.15);
    border-color: var(--armadaku-primary);
}

.feature-card-enhanced:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(13, 131, 253, 0.1) 0%, rgba(13, 131, 253, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card-enhanced:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--armadaku-primary) 0%, var(--armadaku-primary-dark) 100%);
    transform: scale(1.1) rotate(5deg);
}

.feature-icon-wrapper i {
    font-size: 2rem;
    color: var(--armadaku-primary);
    transition: all 0.3s ease;
}

.feature-card-enhanced:hover .feature-icon-wrapper i {
    color: white;
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--armadaku-text);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    color: var(--armadaku-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.feature-list-enhanced {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list-enhanced li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--armadaku-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-list-enhanced li:last-child {
    margin-bottom: 0;
}

.feature-list-enhanced li i {
    color: var(--armadaku-primary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.feature-list-enhanced li span {
    flex: 1;
}

/* Responsive Workflow */
@media (max-width: 768px) {
    .workflow-title {
        font-size: 2rem;
    }
    
    .workflow-subtitle {
        font-size: 1rem;
    }
    
    .workflow-step-enhanced {
        padding: 1.5rem 1rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .features-title {
        font-size: 2rem;
    }
    
    .features-subtitle {
        font-size: 1rem;
    }
    
    .feature-card-enhanced {
        padding: 1.5rem;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-wrapper i {
        font-size: 1.75rem;
    }
}

/* Video Modal Styles */
#videoModal .modal-content {
    border-radius: 16px;
    overflow: hidden;
    border: none;
}

#videoModal .modal-body {
    background: #000;
}

#videoModal .modal-body iframe {
    border: none;
}

#videoModal .modal-header {
    background: white;
}

#videoModal .btn-close {
    padding: 0.5rem;
}

/* Detailed Services Page Styles */
.services-detailed {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.service-card-detailed {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 131, 253, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.service-card-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--armadaku-primary) 0%, var(--armadaku-primary-dark) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-detailed:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(13, 131, 253, 0.15);
    border-color: var(--armadaku-primary);
}

.service-card-detailed:hover::before {
    transform: scaleX(1);
}

.service-header-detailed {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.service-icon-detailed {
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 131, 253, 0.1) 0%, rgba(13, 131, 253, 0.05) 100%);
    border-radius: 16px;
    font-size: 2rem;
    color: var(--armadaku-primary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-card-detailed:hover .service-icon-detailed {
    background: linear-gradient(135deg, var(--armadaku-primary) 0%, var(--armadaku-primary-dark) 100%);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.service-header-detailed h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--armadaku-text);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.badge-time, .badge-official {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-time {
    background: rgba(13, 131, 253, 0.1);
    color: var(--armadaku-primary);
}

.badge-official {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.badge-time i, .badge-official i {
    font-size: 0.75rem;
}

.service-description-detailed {
    color: var(--armadaku-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-info {
    border-top: 1px solid rgba(13, 131, 253, 0.1);
    padding-top: 1rem;
    margin-top: 1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--armadaku-text-light);
    line-height: 1.6;
}

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

.info-item i {
    color: var(--armadaku-primary);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.info-item strong {
    color: var(--armadaku-text);
    font-weight: 600;
}

/* Info Box Detailed */
.info-box-detailed {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(13, 131, 253, 0.1);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon-detailed {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--armadaku-primary) 0%, var(--armadaku-primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.info-content h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--armadaku-text);
    margin-bottom: 1rem;
}

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

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--armadaku-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-list li:last-child {
    margin-bottom: 0;
}

.info-list li i {
    color: var(--armadaku-primary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Services Page Specific Styles (old) */
.services .service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.services .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.services .service-card .icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border-radius: 12px;
    font-size: 2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.services .service-card:hover .icon {
    background: #2563eb;
    color: white;
    transform: scale(1.05);
}

.services .service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1b1b18;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.services .service-card p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

.services.light-background {
    background-color: #f8f9fa;
}

/* Smooth Scrolling & Animations */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth transitions for all interactive elements */
a, button, .btn, .card, .pricing-card, .feature-card, .service-card,
.terms-section, .privacy-section, .pricing-note-box {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth section transitions */
section {
    transition: opacity 0.3s ease-in-out;
    will-change: transform, opacity;
}

/* Smooth fade in for page load */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.index-page {
    animation: fadeIn 0.5s ease-in-out;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Smooth fade in for page load */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.index-page {
    animation: fadeIn 0.5s ease-in-out;
}

/* Enhanced Navbar */
.header .navmenu ul li a.nav-link {
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.header .navmenu ul li a.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--armadaku-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header .navmenu ul li a.nav-link:hover::after,
.header .navmenu ul li a.nav-link.active::after {
    width: 100%;
}

.header .navmenu ul li a.nav-link:hover {
    color: var(--armadaku-primary);
    transform: translateY(-2px);
}

.header .btn-getstarted {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.header .btn-getstarted:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 131, 253, 0.3);
}

/* Enhanced Footer - White Theme - Eye Catching & Clear */
#footer.footer {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%) !important;
    color: var(--armadaku-text) !important;
    padding: 0;
    position: relative;
    overflow: hidden;
}

#footer.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--armadaku-primary) 0%, rgba(16, 185, 129, 0.8) 100%);
    z-index: 1;
}

.footer-top {
    padding: 70px 0 50px;
    background: transparent !important;
    color: var(--armadaku-text) !important;
    position: relative;
    z-index: 2;
}

.footer-about {
    padding-right: 2rem;
}

.footer-about .logo {
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-about .logo:hover {
    transform: scale(1.05);
}

.footer-about .logo img {
    max-height: 55px;
    margin-bottom: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.footer-about p {
    color: var(--armadaku-text);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 90%;
}

.footer-contact {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(13, 131, 253, 0.03);
    border-radius: 12px;
    border-left: 3px solid var(--armadaku-primary);
}

.footer-contact p {
    color: var(--armadaku-text);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-weight: 500;
}

.footer-contact p:last-child {
    margin-bottom: 0;
}

.footer-contact i {
    font-size: 1.2rem;
    color: var(--armadaku-primary);
    margin-right: 0.875rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
    margin-top: 0.125rem;
}

.footer-contact strong {
    color: var(--armadaku-text);
    font-weight: 600;
    margin-right: 0.5rem;
}

.footer-title {
    color: var(--armadaku-text);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.875rem;
    position: relative;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--armadaku-primary) 0%, rgba(16, 185, 129, 0.8) 100%);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links:hover .footer-title::after {
    width: 100%;
}

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

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

.footer-links ul li {
    margin-bottom: 0.875rem;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links ul li:hover {
    transform: translateX(3px);
}

.footer-links ul li a {
    color: var(--armadaku-text);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    font-weight: 500;
    padding: 0.25rem 0;
}

.footer-links ul li a::before {
    content: '';
    position: absolute;
    left: -12px;
    width: 0;
    height: 100%;
    background: var(--armadaku-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.15;
    border-radius: 0 3px 3px 0;
}

.footer-links ul li a:hover {
    color: var(--armadaku-primary);
    padding-left: 10px;
    font-weight: 600;
}

.footer-links ul li a:hover::before {
    width: 4px;
}

.footer-links ul li i {
    margin-right: 0.75rem;
    font-size: 0.75rem;
    color: var(--armadaku-primary);
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

.footer-links ul li:hover i {
    transform: translateX(3px);
    opacity: 1;
}

.social-links {
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(13, 131, 253, 0.08);
    color: var(--armadaku-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-size: 1.2rem;
    border: 1px solid rgba(13, 131, 253, 0.1);
}

.social-link:hover {
    background: var(--armadaku-primary);
    color: #ffffff;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 6px 20px rgba(13, 131, 253, 0.35);
    border-color: var(--armadaku-primary);
}

.footer-bottom {
    padding: 35px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 2px solid rgba(13, 131, 253, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(13, 131, 253, 0.2) 50%, transparent 100%);
}

.footer-bottom .container {
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}

.footer-bottom .row {
    align-items: center;
    min-height: auto;
}

.copyright {
    color: var(--armadaku-text);
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.7;
    letter-spacing: -0.01em;
}

.copyright strong {
    color: var(--armadaku-primary);
    font-weight: 700;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.05em;
}

.credits {
    color: var(--armadaku-text);
    font-size: 0.95rem;
    line-height: 1.7;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.credits a {
    color: var(--armadaku-text);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    position: relative;
    padding: 0.375rem 0.5rem;
    display: inline-block;
    border-radius: 6px;
}

.credits a::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 0.5rem;
    width: 0;
    height: 2px;
    background: var(--armadaku-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.credits a:hover {
    color: var(--armadaku-primary);
    background: rgba(13, 131, 253, 0.05);
    transform: translateY(-1px);
}

.credits a:hover::after {
    width: calc(100% - 1rem);
}

.credits a:not(:last-child)::before {
    content: '|';
    position: absolute;
    right: -0.5rem;
    color: rgba(0, 0, 0, 0.15);
    font-weight: 300;
    font-size: 1.2em;
}

@media (max-width: 767px) {
    .footer-bottom {
        padding: 25px 0;
    }
    
    .footer-bottom .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .credits {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .copyright {
        margin-bottom: 0.5rem;
    }
}

/* Terms & Privacy Hero Section */
.terms-privacy-hero {
    background: linear-gradient(135deg, rgba(13, 131, 253, 0.05) 0%, rgba(13, 131, 253, 0.15) 100%);
    position: relative;
    overflow: hidden;
}

.terms-privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(13,131,253,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-icon-wrapper {
    margin-bottom: 2rem;
}

.hero-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--armadaku-primary) 0%, var(--armadaku-accent) 100%);
    border-radius: 50%;
    color: #ffffff;
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(13, 131, 253, 0.3);
    animation: float 3s ease-in-out infinite;
}

.privacy-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--armadaku-text);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--armadaku-text) 0%, var(--armadaku-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--armadaku-text-light);
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(13, 131, 253, 0.1);
    border: 2px solid var(--armadaku-primary);
    border-radius: 50px;
    color: var(--armadaku-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.privacy-badge {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    color: #10b981;
}

/* Terms & Privacy Pages */
.terms-privacy.section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    min-height: 100vh;
}

.terms-privacy-box {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(13, 131, 253, 0.1);
    margin-bottom: 2rem;
}

.terms-privacy-content {
    color: var(--armadaku-text);
    line-height: 1.8;
    font-size: 1rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 131, 253, 0.1) 0%, rgba(13, 131, 253, 0.2) 100%);
    border-radius: 12px;
    color: var(--armadaku-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 2px solid rgba(13, 131, 253, 0.2);
}

.privacy-icon-bg {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.2) 100%);
    border-color: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.terms-privacy-content h3 {
    color: var(--armadaku-text);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(13, 131, 253, 0.2);
    flex: 1;
}

.terms-privacy-content p {
    margin-bottom: 1rem;
    color: var(--armadaku-text-light);
    line-height: 1.8;
}

.terms-privacy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.terms-privacy-content ul li {
    margin-bottom: 0.75rem;
    color: var(--armadaku-text-light);
    line-height: 1.7;
}

.terms-privacy-content ul li strong {
    color: var(--armadaku-text);
    font-weight: 600;
}

.terms-section,
.privacy-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border-left: 4px solid var(--armadaku-primary);
    transition: all 0.3s ease;
}

.privacy-section {
    border-left-color: #10b981;
}

.terms-section:hover,
.privacy-section:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(13, 131, 253, 0.1);
    transform: translateX(5px);
}

.terms-section:last-child,
.privacy-section:last-child {
    margin-bottom: 0;
}

.formatted-content {
    white-space: pre-line;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--armadaku-text);
}

.formatted-content p {
    margin-bottom: 1.5rem;
    color: var(--armadaku-text);
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 255, 0.9) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--armadaku-primary);
    box-shadow: 0 2px 10px rgba(13, 131, 253, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.formatted-content p:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(13, 131, 253, 0.15);
    border-left-width: 6px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 255, 1) 100%);
}

.formatted-content p::before {
    content: '📄';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    background: white;
    padding: 0.25rem;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(13, 131, 253, 0.2);
}

.formatted-content strong {
    font-weight: 700;
    color: var(--armadaku-primary);
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--armadaku-primary) 0%, var(--armadaku-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.formatted-content h1,
.formatted-content h2,
.formatted-content h3,
.formatted-content h4 {
    color: var(--armadaku-text);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(13, 131, 253, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.formatted-content h1::before,
.formatted-content h2::before,
.formatted-content h3::before,
.formatted-content h4::before {
    content: '▶';
    color: var(--armadaku-primary);
    font-size: 0.8em;
}

.formatted-content ul,
.formatted-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.formatted-content ul li,
.formatted-content ol li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
    position: relative;
    line-height: 1.8;
}

.formatted-content ul li::marker {
    color: var(--armadaku-primary);
    font-weight: bold;
}

.formatted-content ul li::before {
    content: '✓';
    position: absolute;
    left: -1.5rem;
    color: var(--armadaku-primary);
    font-weight: bold;
}

.enhanced-content .formatted-content {
    padding: 1rem 0;
}

.enhanced-content .formatted-content p {
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--armadaku-primary);
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.enhanced-content .formatted-content p:hover {
    border-left-color: var(--armadaku-primary);
    background: rgba(13, 131, 253, 0.02);
    padding-left: 2rem;
    transform: translateX(5px);
}

/* Enhanced formatted content for simple-content */
.simple-content .formatted-content {
    padding: 0;
}

.simple-content .formatted-content p {
    margin-bottom: 1.5rem;
    padding: 1.25rem 1.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 255, 0.95) 100%);
    border-radius: 12px;
    border-left: 5px solid var(--armadaku-primary);
    box-shadow: 0 3px 15px rgba(13, 131, 253, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.simple-content .formatted-content p::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(13, 131, 253, 0.05) 0%, transparent 70%);
    transform: translate(30%, -30%);
}

.simple-content .formatted-content p:hover {
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 6px 25px rgba(13, 131, 253, 0.15);
    border-left-width: 6px;
}

.simple-content .formatted-content h1,
.simple-content .formatted-content h2,
.simple-content .formatted-content h3,
.simple-content .formatted-content h4 {
    color: var(--armadaku-text);
    font-weight: 800;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(13, 131, 253, 0.1) 0%, rgba(13, 131, 253, 0.05) 100%);
    border-radius: 12px;
    border-left: 5px solid var(--armadaku-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.simple-content .formatted-content h1::before,
.simple-content .formatted-content h2::before,
.simple-content .formatted-content h3::before,
.simple-content .formatted-content h4::before {
    content: '📌';
    font-size: 1.2rem;
}

.simple-content .formatted-content ul,
.simple-content .formatted-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    background: rgba(13, 131, 253, 0.02);
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--armadaku-primary);
}

.simple-content .formatted-content ul li,
.simple-content .formatted-content ol li {
    margin-bottom: 1rem;
    padding-left: 0.75rem;
    position: relative;
    line-height: 1.9;
    color: var(--armadaku-text);
}

.simple-content .formatted-content ul li::before {
    content: '✓';
    position: absolute;
    left: -1.75rem;
    color: var(--armadaku-primary);
    font-weight: bold;
    font-size: 1.1rem;
    background: rgba(13, 131, 253, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.simple-content .formatted-content strong {
    font-weight: 700;
    color: var(--armadaku-primary);
    font-size: 1.15rem;
    background: linear-gradient(135deg, var(--armadaku-primary) 0%, var(--armadaku-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 0.25rem;
}

/* Simple Design for Terms & Privacy Pages */
.simple-hero {
    background: linear-gradient(135deg, rgba(13, 131, 253, 0.08) 0%, rgba(13, 131, 253, 0.03) 100%);
    position: relative;
}

.privacy-hero.simple-hero {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.03) 100%);
}

.simple-icon-wrapper {
    margin-bottom: 1.5rem;
}

.simple-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--armadaku-primary) 0%, var(--armadaku-accent) 100%);
    border-radius: 20px;
    color: #ffffff;
    font-size: 2.5rem;
    box-shadow: 0 8px 25px rgba(13, 131, 253, 0.25);
}

.privacy-simple-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
}

.simple-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--armadaku-text);
    margin-bottom: 1rem;
}

.simple-subtitle {
    font-size: 1.15rem;
    color: var(--armadaku-text-light);
    margin-bottom: 1.5rem;
}

.simple-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.simple-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(13, 131, 253, 0.1);
    border: 2px solid var(--armadaku-primary);
    border-radius: 50px;
    color: var(--armadaku-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.simple-badge.privacy-badge {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    color: #10b981;
}

.simple-section {
    padding: 40px 0;
    background: #ffffff;
}

.simple-box {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(13, 131, 253, 0.1);
}

.simple-content {
    color: var(--armadaku-text);
    line-height: 1.8;
    font-size: 1rem;
}

.simple-section-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 255, 0.95) 100%);
    border-radius: 16px;
    border-left: 5px solid var(--armadaku-primary);
    box-shadow: 0 4px 20px rgba(13, 131, 253, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.simple-section-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 131, 253, 0.05) 0%, transparent 70%);
    animation: sectionGlow 6s ease-in-out infinite;
}

@keyframes sectionGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-20%, -20%) scale(1.2);
        opacity: 0.6;
    }
}

.simple-section-item:last-child {
    margin-bottom: 0;
}

.simple-section-item:hover {
    transform: translateX(8px) translateY(-3px);
    box-shadow: 0 8px 30px rgba(13, 131, 253, 0.15);
    border-left-width: 6px;
}

.simple-section-item h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--armadaku-text);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(13, 131, 253, 0.1);
    background: linear-gradient(135deg, var(--armadaku-text) 0%, var(--armadaku-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.simple-section-item h3 i {
    color: var(--armadaku-primary);
    font-size: 1.75rem;
    background: rgba(13, 131, 253, 0.1);
    padding: 0.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}

.simple-section-item p {
    margin-bottom: 1rem;
    color: var(--armadaku-text);
    line-height: 1.9;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.simple-section-item ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
    background: rgba(13, 131, 253, 0.03);
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
    border-radius: 12px;
    border-left: 3px solid var(--armadaku-primary);
    position: relative;
    z-index: 1;
}

.simple-section-item ul li {
    margin-bottom: 0.75rem;
    color: var(--armadaku-text);
    line-height: 1.8;
    padding-left: 0.5rem;
    position: relative;
}

.simple-section-item ul li::before {
    content: '✓';
    position: absolute;
    left: -2rem;
    color: var(--armadaku-primary);
    font-weight: bold;
    font-size: 1.1rem;
    background: rgba(13, 131, 253, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.simple-section-item ul li strong {
    color: var(--armadaku-primary);
    font-weight: 700;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--armadaku-primary) 0%, var(--armadaku-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Privacy page specific styling */
.privacy-box .simple-section-item {
    border-left-color: #10b981;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
}

.privacy-box .simple-section-item::before {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
}

.privacy-box .simple-section-item:hover {
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15);
}

.privacy-box .simple-section-item h3 {
    background: linear-gradient(135deg, var(--armadaku-text) 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom-color: rgba(16, 185, 129, 0.2);
}

.privacy-box .simple-section-item h3 i {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.privacy-box .simple-section-item ul {
    background: rgba(16, 185, 129, 0.03);
    border-left-color: #10b981;
}

.privacy-box .simple-section-item ul li::before {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.privacy-box .simple-section-item ul li strong {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Privacy formatted content */
.privacy-box .formatted-content p {
    border-left-color: #10b981;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.08);
}

.privacy-box .formatted-content p:hover {
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
}

.privacy-box .formatted-content h1,
.privacy-box .formatted-content h2,
.privacy-box .formatted-content h3,
.privacy-box .formatted-content h4 {
    border-bottom-color: rgba(16, 185, 129, 0.2);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-left-color: #10b981;
}

.privacy-box .formatted-content h1::before,
.privacy-box .formatted-content h2::before,
.privacy-box .formatted-content h3::before,
.privacy-box .formatted-content h4::before {
    color: #10b981;
}

.privacy-box .formatted-content ul,
.privacy-box .formatted-content ol {
    background: rgba(16, 185, 129, 0.02);
    border-left-color: #10b981;
}

.privacy-box .formatted-content ul li::before {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.privacy-box .formatted-content strong {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .simple-title {
        font-size: 1.75rem;
    }
    
    .simple-subtitle {
        font-size: 1rem;
    }
    
    .simple-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .simple-box {
        padding: 1.5rem;
    }
    
    .simple-section-item h3 {
        font-size: 1.25rem;
    }
    
    .simple-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

/* Ultra Enhanced Terms & Privacy Styles - Super Eye-Catching */
.ultra-enhanced-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        #667eea 0%, 
        #764ba2 25%, 
        #f093fb 50%, 
        #4facfe 75%, 
        #00f2fe 100%);
    background-size: 400% 400%;
    animation: gradientFlow 15s ease infinite;
}

.privacy-hero.ultra-enhanced-hero {
    background: linear-gradient(135deg, 
        #11998e 0%, 
        #38ef7d 25%, 
        #10b981 50%, 
        #059669 75%, 
        #047857 100%);
    background-size: 400% 400%;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: floatShape 20s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    top: 30%;
    right: 30%;
    animation-delay: 6s;
}

.shape-5 {
    width: 120px;
    height: 120px;
    bottom: 40%;
    right: 10%;
    animation-delay: 8s;
}

.privacy-shape {
    background: rgba(255, 255, 255, 0.15);
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -50px) rotate(90deg) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, 30px) rotate(180deg) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(50px, 20px) rotate(270deg) scale(1.05);
        opacity: 0.6;
    }
}

.hero-gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: 2;
    animation: meshMove 25s ease-in-out infinite;
}

.privacy-mesh {
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

@keyframes meshMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, -20px) scale(1.1);
    }
}

.ultra-enhanced-hero .container {
    position: relative;
    z-index: 3;
}

/* Enhanced Icon Styles */
.ultra-icon-wrapper {
    position: relative;
    margin-bottom: 3rem;
}

.ultra-enhanced-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.85) 100%);
    border-radius: 30px;
    color: var(--armadaku-primary);
    font-size: 4rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 4px rgba(255, 255, 255, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.8);
    animation: iconFloat 3s ease-in-out infinite;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.ultra-enhanced-icon:hover {
    transform: translateY(-10px) rotateY(10deg) scale(1.1);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 0 6px rgba(255, 255, 255, 0.6),
        inset 0 0 40px rgba(255, 255, 255, 1);
}

.privacy-icon.ultra-enhanced-icon {
    color: #10b981;
    box-shadow: 
        0 20px 60px rgba(16, 185, 129, 0.4),
        0 0 0 4px rgba(255, 255, 255, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.8);
}

.privacy-icon.ultra-enhanced-icon:hover {
    box-shadow: 
        0 30px 80px rgba(16, 185, 129, 0.5),
        0 0 0 6px rgba(255, 255, 255, 0.6),
        inset 0 0 40px rgba(255, 255, 255, 1);
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.icon-inner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border-radius: 30px;
    background: radial-gradient(circle, 
        rgba(13, 131, 253, 0.3) 0%, 
        transparent 70%);
    animation: innerGlow 2s ease-in-out infinite;
    z-index: -1;
}

.privacy-inner-glow {
    background: radial-gradient(circle, 
        rgba(16, 185, 129, 0.3) 0%, 
        transparent 70%);
}

@keyframes innerGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.icon-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    font-size: 1.5rem;
    animation: sparkleFloat 3s ease-in-out infinite;
    opacity: 0;
}

.sparkle-1 {
    top: -20px;
    left: 20%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 50%;
    right: -20px;
    animation-delay: 1s;
}

.sparkle-3 {
    bottom: -20px;
    left: 50%;
    animation-delay: 2s;
}

@keyframes sparkleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-30px) scale(1);
    }
}

.ultra-rings .ring {
    border-width: 3px;
    border-color: rgba(255, 255, 255, 0.4);
    animation: ultraRingExpand 4s ease-out infinite;
}

.ultra-rings .ring-1 {
    width: 160px;
    height: 160px;
    animation-delay: 0s;
}

.ultra-rings .ring-2 {
    width: 200px;
    height: 200px;
    animation-delay: 1s;
}

.ultra-rings .ring-3 {
    width: 240px;
    height: 240px;
    animation-delay: 2s;
}

.ultra-rings .ring-4 {
    width: 280px;
    height: 280px;
    animation-delay: 3s;
}

.privacy-rings.ultra-rings .ring {
    border-color: rgba(255, 255, 255, 0.5);
}

@keyframes ultraRingExpand {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.7);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

/* Ultra Enhanced Typography */
.ultra-enhanced-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 60px rgba(255, 255, 255, 0.5),
        0 4px 10px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    align-items: baseline;
}

.title-word {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: wordShine 3s ease-in-out infinite;
    position: relative;
}

.title-word-1 {
    animation-delay: 0s;
}

.title-word-2 {
    animation-delay: 0.3s;
}

.title-word-3 {
    animation-delay: 0.6s;
}

.title-amp {
    color: rgba(255, 255, 255, 0.9);
    font-size: 3rem;
    margin: 0 0.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

@keyframes wordShine {
    0%, 100% {
        filter: brightness(1);
        transform: scale(1);
    }
    50% {
        filter: brightness(1.3);
        transform: scale(1.05);
    }
}

.ultra-enhanced-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.subtitle-highlight {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(255, 255, 255, 0.4);
    position: relative;
}

.subtitle-highlight::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: underlineGlow 2s ease-in-out infinite;
}

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

/* Ultra Enhanced Badges */
.ultra-badges {
    margin-bottom: 3rem;
}

.ultra-enhanced-badge {
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-primary-glow {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.85) 100%);
    color: var(--armadaku-primary);
    box-shadow: 
        0 10px 40px rgba(13, 131, 253, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.8);
}

.badge-secondary-glow {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 255, 255, 0.8) 100%);
    color: var(--armadaku-text);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(255, 255, 255, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.8);
}

.privacy-glow-badge.badge-primary-glow {
    color: #10b981;
    box-shadow: 
        0 10px 40px rgba(16, 185, 129, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.8);
}

.ultra-enhanced-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 50px rgba(13, 131, 253, 0.5),
        0 0 0 3px rgba(255, 255, 255, 0.7),
        inset 0 0 30px rgba(255, 255, 255, 1);
}

.privacy-glow-badge:hover {
    box-shadow: 
        0 15px 50px rgba(16, 185, 129, 0.5),
        0 0 0 3px rgba(255, 255, 255, 0.7),
        inset 0 0 30px rgba(255, 255, 255, 1);
}

.badge-icon-wrapper {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.6), 
        transparent);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

/* Ultra Enhanced Stats */
.ultra-stats {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 30px;
}

.ultra-stat {
    text-align: center;
    position: relative;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
    animation: iconBounce 2s ease-in-out infinite;
}

.ultra-stat:nth-child(1) .stat-icon {
    animation-delay: 0s;
}

.ultra-stat:nth-child(3) .stat-icon {
    animation-delay: 0.5s;
}

.ultra-stat:nth-child(5) .stat-icon {
    animation-delay: 1s;
}

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

.ultra-stat .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.8),
        0 4px 10px rgba(0, 0, 0, 0.3);
    display: block;
}

.ultra-stat .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.ultra-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, 
        transparent, 
        rgba(255, 255, 255, 0.5), 
        transparent);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Enhanced Section Styles */
.ultra-enhanced-section {
    position: relative;
    background: linear-gradient(180deg, 
        #f8f9fa 0%, 
        #ffffff 50%, 
        #f0f4ff 100%);
}

.ultra-pattern {
    height: 300px;
    background: linear-gradient(180deg, 
        rgba(13, 131, 253, 0.08) 0%, 
        rgba(13, 131, 253, 0.03) 50%,
        transparent 100%);
}

.privacy-pattern-top.ultra-pattern {
    background: linear-gradient(180deg, 
        rgba(16, 185, 129, 0.08) 0%, 
        rgba(16, 185, 129, 0.03) 50%,
        transparent 100%);
}

.ultra-enhanced-box {
    position: relative;
    border-radius: 30px;
    padding: 4.5rem 4rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 249, 255, 0.95) 100%);
    box-shadow: 
        0 20px 80px rgba(13, 131, 253, 0.15),
        0 0 0 1px rgba(13, 131, 253, 0.1),
        inset 0 0 50px rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    overflow: hidden;
}

.privacy-box.ultra-enhanced-box {
    box-shadow: 
        0 20px 80px rgba(16, 185, 129, 0.15),
        0 0 0 1px rgba(16, 185, 129, 0.1),
        inset 0 0 50px rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.8);
}

.box-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(13, 131, 253, 0.1) 0%, 
        transparent 70%);
    animation: boxGlow 8s ease-in-out infinite;
    pointer-events: none;
}

.privacy-glow-box {
    background: radial-gradient(circle, 
        rgba(16, 185, 129, 0.1) 0%, 
        transparent 70%);
}

@keyframes boxGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(20%, 20%) scale(1.2);
        opacity: 0.8;
    }
}

.ultra-enhanced-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, 
        var(--armadaku-primary) 0%, 
        var(--armadaku-accent) 25%,
        #f093fb 50%,
        var(--armadaku-accent) 75%,
        var(--armadaku-primary) 100%);
    background-size: 300% 100%;
    animation: gradientShift 4s ease infinite;
}

.privacy-box.ultra-enhanced-box::before {
    background: linear-gradient(90deg, 
        #10b981 0%, 
        #38ef7d 25%,
        #11998e 50%,
        #38ef7d 75%,
        #10b981 100%);
}

.ultra-enhanced-box:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 100px rgba(13, 131, 253, 0.2),
        0 0 0 2px rgba(13, 131, 253, 0.15),
        inset 0 0 60px rgba(255, 255, 255, 1);
}

.privacy-box.ultra-enhanced-box:hover {
    box-shadow: 
        0 30px 100px rgba(16, 185, 129, 0.2),
        0 0 0 2px rgba(16, 185, 129, 0.15),
        inset 0 0 60px rgba(255, 255, 255, 1);
}

.ultra-decoration {
    margin-bottom: 3.5rem;
    opacity: 0.4;
}

.decoration-line {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--armadaku-primary), 
        rgba(13, 131, 253, 0.5),
        var(--armadaku-primary),
        transparent);
    box-shadow: 0 0 10px rgba(13, 131, 253, 0.5);
    animation: lineGlow 2s ease-in-out infinite;
}

.privacy-decoration .decoration-line {
    background: linear-gradient(90deg, 
        transparent, 
        #10b981, 
        rgba(16, 185, 129, 0.5),
        #10b981,
        transparent);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

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

.decoration-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--armadaku-primary);
    box-shadow: 
        0 0 20px rgba(13, 131, 253, 0.8),
        0 0 40px rgba(13, 131, 253, 0.4);
    position: relative;
}

.privacy-decoration .decoration-dot {
    background: #10b981;
    box-shadow: 
        0 0 20px rgba(16, 185, 129, 0.8),
        0 0 40px rgba(16, 185, 129, 0.4);
}

.dot-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--armadaku-primary);
    animation: dotPulse 2s ease-in-out infinite;
}

.privacy-decoration .dot-pulse {
    background: #10b981;
}

@keyframes dotPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.ultra-enhanced-content .terms-section,
.ultra-enhanced-content .privacy-section {
    margin-bottom: 3.5rem;
    padding: 3rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 249, 255, 0.9) 100%);
    border-radius: 20px;
    border-left: 6px solid var(--armadaku-primary);
    box-shadow: 
        0 8px 30px rgba(13, 131, 253, 0.12),
        inset 0 0 30px rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.ultra-enhanced-content .privacy-section {
    border-left-color: #10b981;
    box-shadow: 
        0 8px 30px rgba(16, 185, 129, 0.12),
        inset 0 0 30px rgba(255, 255, 255, 0.5);
}

.ultra-enhanced-content .terms-section::before,
.ultra-enhanced-content .privacy-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(13, 131, 253, 0.08) 0%, 
        transparent 70%);
    animation: sectionGlow 6s ease-in-out infinite;
}

.ultra-enhanced-content .privacy-section::before {
    background: radial-gradient(circle, 
        rgba(16, 185, 129, 0.08) 0%, 
        transparent 70%);
}

@keyframes sectionGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-20%, -20%) scale(1.2);
        opacity: 0.6;
    }
}

.ultra-enhanced-content .terms-section:hover,
.ultra-enhanced-content .privacy-section:hover {
    transform: translateX(12px) translateY(-5px);
    box-shadow: 
        0 15px 50px rgba(13, 131, 253, 0.2),
        inset 0 0 40px rgba(255, 255, 255, 0.8);
    border-left-width: 8px;
}

.ultra-enhanced-content .privacy-section:hover {
    box-shadow: 
        0 15px 50px rgba(16, 185, 129, 0.2),
        inset 0 0 40px rgba(255, 255, 255, 0.8);
}

.ultra-enhanced-content .section-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    box-shadow: 
        0 8px 25px rgba(13, 131, 253, 0.25),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
}

.ultra-enhanced-content .section-icon:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 
        0 12px 35px rgba(13, 131, 253, 0.35),
        inset 0 0 30px rgba(255, 255, 255, 0.8);
}

.ultra-enhanced-content .privacy-icon-bg {
    box-shadow: 
        0 8px 25px rgba(16, 185, 129, 0.25),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
}

.ultra-enhanced-content .privacy-icon-bg:hover {
    box-shadow: 
        0 12px 35px rgba(16, 185, 129, 0.35),
        inset 0 0 30px rgba(255, 255, 255, 0.8);
}

.ultra-enhanced-content h3 {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, 
        var(--armadaku-text) 0%, 
        var(--armadaku-primary) 50%,
        var(--armadaku-text) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    text-shadow: none;
    padding-bottom: 0.75rem;
}

.ultra-enhanced-content .privacy-section h3 {
    background: linear-gradient(135deg, 
        var(--armadaku-text) 0%, 
        #10b981 50%,
        var(--armadaku-text) 100%);
}

/* Enhanced Terms & Privacy Styles */
.enhanced-hero {
    position: relative;
    overflow: hidden;
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(13, 131, 253, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(13, 131, 253, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(13, 131, 253, 0.04) 0%, transparent 50%);
    animation: patternMove 20s ease-in-out infinite;
    z-index: 0;
}

.privacy-pattern {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
}

@keyframes patternMove {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(13, 131, 253, 0.1) 0%, 
        rgba(13, 131, 253, 0.05) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
}

.privacy-overlay {
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.1) 0%, 
        rgba(16, 185, 129, 0.05) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
}

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

.enhanced-icon {
    position: relative;
    animation: iconPulse 2s ease-in-out infinite;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 131, 253, 0.4) 0%, transparent 70%);
    animation: glowPulse 2s ease-in-out infinite;
    z-index: -1;
}

.privacy-glow {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, transparent 70%);
}

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

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.icon-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    pointer-events: none;
}

.icon-rings .ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(13, 131, 253, 0.2);
    border-radius: 50%;
    animation: ringExpand 3s ease-out infinite;
}

.icon-rings .ring-1 {
    width: 120px;
    height: 120px;
    animation-delay: 0s;
}

.icon-rings .ring-2 {
    width: 150px;
    height: 150px;
    animation-delay: 1s;
}

.icon-rings .ring-3 {
    width: 180px;
    height: 180px;
    animation-delay: 2s;
}

.privacy-rings .ring {
    border-color: rgba(16, 185, 129, 0.2);
}

@keyframes ringExpand {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.enhanced-title {
    background: linear-gradient(135deg, var(--armadaku-text) 0%, var(--armadaku-primary) 50%, var(--armadaku-text) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.enhanced-subtitle {
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.hero-badges-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.enhanced-badge {
    padding: 1rem 1.75rem;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(13, 131, 253, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.enhanced-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.enhanced-badge:hover::before {
    left: 100%;
}

.enhanced-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(13, 131, 253, 0.3);
}

.badge-secondary {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(13, 131, 253, 0.2);
    color: var(--armadaku-text);
}

.privacy-badge.badge-secondary {
    border-color: rgba(16, 185, 129, 0.2);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(13, 131, 253, 0.1);
    border: 1px solid rgba(13, 131, 253, 0.1);
}

.privacy-stats {
    border-color: rgba(16, 185, 129, 0.1);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--armadaku-primary);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.privacy-stats .stat-number {
    color: #10b981;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--armadaku-text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(13, 131, 253, 0.2), transparent);
}

.privacy-stats .stat-divider {
    background: linear-gradient(180deg, transparent, rgba(16, 185, 129, 0.2), transparent);
}

.enhanced-section {
    position: relative;
    overflow: hidden;
}

.section-pattern-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(13, 131, 253, 0.03) 0%, transparent 100%);
    z-index: 0;
}

.privacy-pattern-top {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.03) 0%, transparent 100%);
}

.enhanced-section .container {
    position: relative;
    z-index: 1;
}

.enhanced-box {
    position: relative;
    border-radius: 24px;
    padding: 4rem 3.5rem;
    box-shadow: 
        0 10px 40px rgba(13, 131, 253, 0.1),
        0 0 0 1px rgba(13, 131, 253, 0.05);
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    overflow: hidden;
}

.enhanced-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--armadaku-primary) 0%, 
        var(--armadaku-accent) 50%, 
        var(--armadaku-primary) 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.privacy-box::before {
    background: linear-gradient(90deg, 
        #10b981 0%, 
        #059669 50%, 
        #10b981 100%);
}

.enhanced-box:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 60px rgba(13, 131, 253, 0.15),
        0 0 0 1px rgba(13, 131, 253, 0.1);
}

.box-header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0.3;
}

.decoration-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--armadaku-primary), transparent);
}

.privacy-decoration .decoration-line {
    background: linear-gradient(90deg, transparent, #10b981, transparent);
}

.decoration-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--armadaku-primary);
    box-shadow: 0 0 10px rgba(13, 131, 253, 0.5);
}

.privacy-decoration .decoration-dot {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.enhanced-content .section-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(13, 131, 253, 0.1);
}

.enhanced-content .section-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
    box-shadow: 0 4px 15px rgba(13, 131, 253, 0.15);
    transition: all 0.3s ease;
}

.enhanced-content .section-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(13, 131, 253, 0.25);
}

.enhanced-content .privacy-icon-bg {
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.15);
}

.enhanced-content .privacy-icon-bg:hover {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
}

.enhanced-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--armadaku-text) 0%, var(--armadaku-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 0.5rem;
}

.enhanced-content .privacy-section h3 {
    background: linear-gradient(135deg, var(--armadaku-text) 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.enhanced-content .terms-section,
.enhanced-content .privacy-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 255, 0.9) 100%);
    border-radius: 16px;
    border-left: 5px solid var(--armadaku-primary);
    box-shadow: 0 4px 20px rgba(13, 131, 253, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.enhanced-content .terms-section::before,
.enhanced-content .privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(13, 131, 253, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.enhanced-content .privacy-section::before {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
}

.enhanced-content .privacy-section {
    border-left-color: #10b981;
}

.enhanced-content .terms-section:hover,
.enhanced-content .privacy-section:hover {
    transform: translateX(8px) translateY(-3px);
    box-shadow: 0 8px 30px rgba(13, 131, 253, 0.15);
    border-left-width: 6px;
}

.enhanced-content .privacy-section:hover {
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15);
}

.enhanced-content .terms-section p,
.enhanced-content .privacy-section p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--armadaku-text);
    margin-bottom: 1.25rem;
}

.enhanced-content .terms-section ul,
.enhanced-content .privacy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.enhanced-content .terms-section ul li,
.enhanced-content .privacy-section ul li {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    position: relative;
}

.enhanced-content .terms-section ul li::marker,
.enhanced-content .privacy-section ul li::marker {
    color: var(--armadaku-primary);
    font-weight: bold;
}

.enhanced-content .privacy-section ul li::marker {
    color: #10b981;
}

.enhanced-content .terms-section ul li strong,
.enhanced-content .privacy-section ul li strong {
    color: var(--armadaku-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.enhanced-content .privacy-section ul li strong {
    color: #10b981;
}

@media (max-width: 768px) {
    .terms-privacy-box,
    .enhanced-box,
    .ultra-enhanced-box {
        padding: 2rem 1.5rem;
    }
    
    .terms-privacy-content h3,
    .enhanced-content h3,
    .ultra-enhanced-content h3 {
        font-size: 1.25rem;
    }
    
    .terms-privacy-content,
    .enhanced-content,
    .ultra-enhanced-content {
        font-size: 0.95rem;
    }
    
    .enhanced-title,
    .ultra-enhanced-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .title-amp {
        font-size: 1.5rem;
        margin: 0;
    }
    
    .enhanced-subtitle,
    .ultra-enhanced-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-badges-wrapper,
    .ultra-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-stats,
    .ultra-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .stat-divider,
    .ultra-divider {
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    }
    
    .ultra-stat .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .enhanced-content .terms-section,
    .enhanced-content .privacy-section,
    .ultra-enhanced-content .terms-section,
    .ultra-enhanced-content .privacy-section {
        padding: 1.5rem;
    }
    
    .icon-rings,
    .ultra-rings {
        display: none;
    }
    
    .ultra-enhanced-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
    
    .floating-shape {
        opacity: 0.1;
    }
}

@media (max-width: 991px) {
    .article-sidebar {
        position: static;
        margin-top: 3rem;
    }

    .article-content-wrapper {
        padding: 1.5rem;
    }

    .article-detail .article-title {
        font-size: 1.5rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .sla .section-header h2 {
        font-size: 2rem;
    }

    .play-video-btn i {
        font-size: 4rem;
    }

    .services .service-card {
        padding: 1.5rem;
    }

    .services .service-card .icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        font-size: 1.75rem;
        margin-right: 1rem;
    }

    .services .service-card h3 {
        font-size: 1.125rem;
    }
}

/* Workflow Steps Styles */
.workflow-step {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.workflow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    border-color: #2563eb;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.workflow-step p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.9375rem;
    margin: 0;
}

@media (max-width: 767px) {
    .workflow-step {
        margin-bottom: 1rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
}

/* Pricing Tabs Styles */
.pricing-tabs {
    margin-bottom: 2rem;
}

.pricing-tab-btn {
    padding: 0.75rem 2rem;
    border: 2px solid #e9ecef;
    background: white;
    color: #6c757d;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-tab-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: #f8f9ff;
}

.pricing-tab-btn.active {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

/* Period Selector Styles */
.period-selector-wrapper {
    margin: 2rem 0;
}

.period-selector-wrapper .form-label {
    font-weight: 600;
    color: #1b1b18;
    font-size: 1rem;
}

.period-selector {
    margin-bottom: 1rem;
}

.period-btn {
    padding: 0.625rem 1.5rem;
    border: 2px solid #e9ecef;
    background: white;
    color: #6c757d;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.period-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: #f8f9ff;
}

.period-btn.active {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

/* Pricing Card Updates */
.pricing-card {
    position: relative;
}

.price-wrapper {
    min-height: 80px;
    margin-bottom: 1rem;
}

.price-content {
    transition: opacity 0.3s ease;
}

.price-option {
    transition: opacity 0.3s ease;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.pricing-card .price {
    margin-bottom: 0.5rem;
}

.pricing-cta-btn {
    margin-top: 1.5rem;
}

/* Features Section in Pricing Cards */
.features-section {
    margin-top: 1.5rem;
}

.features-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1b1b18;
    margin-bottom: 1rem;
}

.pricing-card .features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-card .features-list li {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem 0;
    color: #1e293b;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: -0.01em;
    min-height: 2.5rem;
}

.pricing-card.popular .features-list li {
    align-items: center;
}

.pricing-card .features-list li i {
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
    font-size: 1.25rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card .features-list li i.feature-check {
    color: #10b981;
    font-size: 1.25rem;
}

.pricing-card .features-list li i.feature-cross {
    color: #ef4444;
    font-size: 1.25rem;
    opacity: 0.8;
}

.pricing-card .features-list li.feature-unavailable {
    opacity: 0.8;
}

.pricing-card .features-list li.feature-unavailable span {
    text-decoration: line-through;
    color: #94a3b8;
    font-weight: 500;
}

/* Popular card specific styling for unavailable features */
.pricing-card.popular .features-list li.feature-unavailable {
    opacity: 1;
}

.pricing-card.popular .features-list li.feature-unavailable span {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.pricing-card.popular .features-list li i.feature-check {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    margin-top: 0;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.pricing-card.popular .features-list li i.feature-cross {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    margin-top: 0;
    margin-right: 0.75rem;
    flex-shrink: 0;
    opacity: 1;
}

.pricing-card .features-list li .feature-detail {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    font-style: normal;
    font-weight: 500;
    margin-top: 0.25rem;
    margin-left: 1.75rem;
    letter-spacing: -0.01em;
}

.pricing-card.popular .features-list li .feature-detail {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.pricing-card.popular .features-list li.feature-unavailable .feature-detail {
    color: rgba(255, 255, 255, 0.5);
}

.price-note {
    margin-top: 0.75rem;
    text-align: center;
}

.price-note small {
    color: #64748b;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.pricing-card.popular .price-note small {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.pricing-card .features-list li span {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Pricing Note Box - Eye Catching */
.pricing-note-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-left: 3px solid var(--armadaku-primary);
    border-radius: 8px;
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    position: relative;
}

.pricing-note-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.pricing-note-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 131, 253, 0.1);
    border-radius: 10px;
    color: var(--armadaku-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.pricing-note-box:hover .pricing-note-icon {
    background: rgba(13, 131, 253, 0.15);
}

.pricing-note-content {
    flex: 1;
}

.pricing-note-title {
    color: #1f2937;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    letter-spacing: -0.01em;
}

.pricing-note-title i {
    color: var(--armadaku-primary);
    font-size: 1rem;
    margin-right: 0.5rem;
}

.pricing-note-text {
    color: #4b5563;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.pricing-note-text strong {
    color: #1f2937;
    font-weight: 600;
}

.pricing-note-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0 0;
}

.pricing-note-list li {
    color: #4b5563;
    font-size: 0.9375rem;
    line-height: 1.8;
    padding: 0.375rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 400;
}

.pricing-note-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--armadaku-primary);
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .pricing-note-box {
        padding: 1.25rem 1.25rem;
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .pricing-note-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .pricing-note-title {
        font-size: 1rem;
    }
    
    .pricing-note-text {
        font-size: 0.875rem;
    }
    
    .pricing-note-list li {
        font-size: 0.875rem;
    }
}

@media (max-width: 767px) {
    .pricing-tab-btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .period-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .pricing-card .features-list li {
        font-size: 0.875rem;
    }
}

/* Membership Pricing Detail Table */
.membership-pricing-detail {
    margin-top: 1rem;
}

.membership-pricing-detail .table {
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.membership-pricing-detail .table-bordered {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.membership-pricing-detail .table-bordered td {
    border: 1px solid #e5e7eb;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #374151;
}

.membership-pricing-detail .table-bordered td:first-child {
    font-weight: 500;
    color: #4b5563;
    width: 60%;
}

.membership-pricing-detail .table-bordered td:last-child {
    font-weight: 600;
    color: #1f2937;
    text-align: right;
}

.membership-pricing-detail .table-bordered tr:first-child td {
    border-top: none;
}

.membership-pricing-detail .table-bordered tr:last-child td {
    border-bottom: none;
}

.membership-pricing-detail .table-bordered tr td:first-child {
    border-left: none;
}

.membership-pricing-detail .table-bordered tr td:last-child {
    border-right: none;
}

@media (max-width: 768px) {
    .membership-pricing-detail .table-bordered td {
        padding: 0.625rem 0.75rem;
        font-size: 0.8125rem;
    }
}
