/**
 * Europe5 Theme - Additional Styles
 * @package Europe5
 */

/* Loading Animation */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.loading {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Service Tabs Active State */
.services-tabs .tab-btn[data-active="true"] {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Card Hover Effects */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Industry Cards Glow Effect */
.industry-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.industry-card:hover::before {
    opacity: 1;
}

/* Form Focus Animations */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    transform: translateY(-2px);
}

.form-group label {
    transition: color var(--transition-fast);
}

.form-group:focus-within label {
    color: var(--primary);
}

/* Testimonial Slider Navigation */
.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.testimonials-nav button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonials-nav button.active,
.testimonials-nav button:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Partner Logo Animation */
.partners-grid {
    animation: scroll-partners 30s linear infinite;
}

@keyframes scroll-partners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partners-grid:hover {
    animation-play-state: paused;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pulse Effect for CTA */
.btn-primary {
    position: relative;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: inherit;
    opacity: 0;
    z-index: -1;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0; }
    50% { transform: scale(1.05); opacity: 0.3; }
}

/* Page Transitions */
.site-main {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Menu Animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Body Scroll Lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Overlay when mobile menu is open */
body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Service Card Image */
.service-card .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

/* Blog Post Styles */
.blog-hero {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
    padding: 140px 0 90px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    z-index: 1;
}
.blog-hero-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}
.blog-hero-content {
    position: relative;
    z-index: 2;
}
.blog-hero-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 16px;
    background: rgba(199,29,34,0.15);
    padding: 6px 18px;
    border-radius: 100px;
}
.blog-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}
.blog-hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    margin: 0 auto;
}
.blog-hero-wave {
    position: absolute;
    bottom: -1px; left: 0;
    width: 100%; height: 60px;
    z-index: 3;
}
/* AJAX loading overlay */
#blog-ajax-wrap { position: relative; min-height: 200px; transition: opacity 0.3s; }
#blog-ajax-wrap.is-loading { opacity: 0.45; pointer-events: none; }
#blog-ajax-wrap.is-loading::after {
    content: '';
    position: absolute;
    top: 80px; left: 50%;
    transform: translateX(-50%);
    width: 36px; height: 36px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: blogSpin 0.7s linear infinite;
    z-index: 10;
}
@keyframes blogSpin { to { transform: translateX(-50%) rotate(360deg); } }

/* Category Filter Pills */
.blog-filters {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 72px;
    z-index: 50;
}
.blog-filter-pills {
    display: flex;
    gap: 8px;
    padding: 16px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.blog-filter-pills::-webkit-scrollbar { display: none; }
.blog-pill {
    white-space: nowrap;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    background: var(--gray-100);
    border: 1px solid transparent;
    transition: all var(--transition-fast);
    text-decoration: none;
}
.blog-pill:hover {
    color: var(--primary);
    background: rgba(199,29,34,0.08);
}
.blog-pill.active {
    background: var(--primary);
    color: var(--white);
}

/* Blog Grid */
.blog-listing {
    padding: 48px 0 80px;
    background: var(--gray-50, #f8f9fc);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.blog-card-thumb {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/10;
}
.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}
.blog-card-body {
    padding: 24px 24px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card-cat {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 10px;
}
.blog-card-cat:hover { text-decoration: underline; }
.blog-card-title {
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 700;
}
.blog-card-title a {
    color: var(--dark);
    text-decoration: none;
}
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}
.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
    font-size: 0.82rem;
}
.blog-card-date {
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 6px;
}
.blog-card-date svg { width: 14px; height: 14px; }
.blog-card-read {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.blog-card-read:hover { text-decoration: underline; }

/* Featured first card — spans 2 cols on desktop */
.blog-card--featured {
    grid-column: span 2;
}
.blog-card--featured .blog-card-title {
    font-size: 1.5rem;
}
.blog-card--featured .blog-card-excerpt {
    font-size: 0.95rem;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 48px;
    text-align: center;
}

/* Blog Empty */
.blog-empty {
    text-align: center;
    padding: 80px 20px;
}

/* ========================================
   ARTICLE HERO - Canvas Animated Header
   ======================================== */
.article-hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
    overflow: hidden;
    z-index: 1;
}
.article-hero-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}
.article-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.article-hero-cat {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    background: var(--primary);
    padding: 6px 20px;
    border-radius: 100px;
    text-decoration: none;
    margin-bottom: 20px;
    transition: background 0.2s;
}
.article-hero-cat:hover { background: #a5161a; }
.article-hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.article-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}
.article-hero-meta svg {
    width: 16px; height: 16px;
    vertical-align: -2px;
    margin-right: 4px;
}
.article-hero-sep { opacity: 0.4; }
.article-hero-breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}
.article-hero-breadcrumbs a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.article-hero-breadcrumbs a:hover { color: #fff; }
.article-hero-breadcrumbs span { color: rgba(255,255,255,0.3); }
.article-hero-breadcrumbs .current {
    color: var(--primary);
    font-weight: 600;
}
.article-hero-wave {
    position: absolute;
    bottom: -2px; left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}
.article-hero-wave svg {
    width: 100%; height: 80px;
    display: block;
}
@media (max-width: 768px) {
    .article-hero { padding: 120px 0 70px; }
    .article-hero-wave svg { height: 50px; }
    .article-hero-meta { flex-wrap: wrap; gap: 6px 12px; }
}

/* ========================================
   SIDEBAR — Related Articles
   ======================================== */
.sidebar-card.sidebar-articles {
    background: var(--white) !important;
    border: 1px solid var(--gray-200);
}
.sidebar-card.sidebar-articles h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
}
.sidebar-card.sidebar-articles h3 svg {
    width: 20px; height: 20px;
    color: var(--primary);
}
ul.sidebar-articles-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
ul.sidebar-articles-list li {
    margin-bottom: 0 !important;
    padding-left: 0 !important;
    border-bottom: 1px solid var(--gray-100);
    position: static;
}
ul.sidebar-articles-list li::before {
    display: none !important;
}
ul.sidebar-articles-list li:last-child { border-bottom: none; }
.sidebar-articles-list li a {
    display: flex !important;
    align-items: center !important;
    gap: 12px;
    padding: 12px 0 !important;
    text-decoration: none !important;
    transition: all 0.2s;
    color: var(--gray-700) !important;
    background: none !important;
    border-radius: 0 !important;
}
.sidebar-articles-list li a:hover {
    color: var(--primary) !important;
    background: none !important;
}
.sidebar-articles-list img.sidebar-article-thumb {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px;
    min-height: 56px;
    border-radius: 8px !important;
    object-fit: cover;
    flex-shrink: 0;
    display: block !important;
}
span.sidebar-article-title {
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
a.sidebar-articles-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    padding: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    transition: all 0.2s;
}
a.sidebar-articles-all:hover {
    background: rgba(199,29,34,0.06);
    border-color: var(--primary);
}
a.sidebar-articles-all svg { width: 16px; height: 16px; }

/* Responsive */
@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .blog-card--featured {
        grid-column: span 2;
    }
}
@media (max-width: 600px) {
    .blog-hero { padding: 60px 0 40px; }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .blog-card--featured {
        grid-column: span 1;
    }
    .blog-card--featured .blog-card-title {
        font-size: 1.2rem;
    }
}

/* Page Content Styling */
.page-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.page-content h2 {
    margin-top: 48px;
    margin-bottom: 24px;
}

.page-content h3 {
    margin-top: 36px;
    margin-bottom: 18px;
}

.page-content p {
    margin-bottom: 24px;
}

.page-content ul,
.page-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.page-content li {
    margin-bottom: 12px;
}

.page-content img {
    border-radius: var(--radius-lg);
    margin: 32px 0;
}

.page-content blockquote {
    margin: 32px 0;
    padding: 24px 32px;
    background: var(--gray-100);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    color: var(--dark);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* 404 Page */
.error-404 {
    text-align: center;
    padding: 100px 20px;
}

.error-404 h1 {
    font-size: 8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.error-404 h2 {
    margin-bottom: 20px;
}

.error-404 p {
    max-width: 500px;
    margin: 0 auto 32px;
}

/* Archive Page Header */
.archive-header {
    margin-bottom: 48px;
}

.archive-header h1 {
    margin-bottom: 16px;
}

.archive-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
}

/* Search Form */
.search-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.search-form button {
    padding: 14px 24px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.search-form button:hover {
    background: var(--primary-dark);
}

/* Comment Styles */
.comments-area {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--gray-200);
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    padding: 24px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.comment-meta img {
    border-radius: 50%;
}

.comment-author {
    font-weight: 600;
}

.comment-date {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .scroll-top,
    .cta-section {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
        background: none !important;
        color: #000 !important;
    }

    .hero h1,
    .hero p {
        color: #000 !important;
    }

    .section-dark {
        background: none !important;
        color: #000 !important;
    }

    .section-dark h2,
    .section-dark h3,
    .section-dark p {
        color: #000 !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary: #0044CC;
        --gray-600: #333;
    }

    .btn-primary {
        background: var(--primary);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ════════════════════════════════════════════════
   CONTACT PAGE — Premium Tech Design
   ════════════════════════════════════════════════ */

/* ── Hero ── */
.ct-hero {
    position: relative;
    padding: 160px 0 120px;
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    overflow: hidden;
    text-align: center;
}

.ct-hero__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.ct-hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(199, 29, 34, 0.08) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.ct-hero__inner {
    position: relative;
    z-index: 2;
}

.ct-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(199, 29, 34, 0.12);
    border: 1px solid rgba(199, 29, 34, 0.2);
    border-radius: 100px;
    color: #ff6b6b;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.ct-hero__eyebrow svg {
    width: 16px;
    height: 16px;
    stroke: #ff6b6b;
}

.ct-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.ct-hero__title span {
    background: linear-gradient(135deg, #C71D22, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ct-hero__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.ct-hero__stats {
    display: inline-flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

.ct-hero__stat {
    padding: 20px 32px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.ct-hero__stat:last-child {
    border-right: none;
}

.ct-hero__stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.ct-hero__stat span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Wavy divider */
.ct-hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.ct-hero__wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ── Main Section ── */
.ct-main {
    padding: 80px 0 100px;
    background: #fff;
}

.ct-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

/* ── Info Column ── */
.ct-info__title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.ct-info__desc {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 36px;
    font-size: 1rem;
}

/* Contact Cards */
.ct-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.ct-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: #f8f9fc;
    border-radius: 14px;
    border: 1px solid #eef0f6;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
}

a.ct-card:hover {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(199, 29, 34, 0.08);
    transform: translateX(4px);
}

.ct-card__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.ct-card__icon svg {
    width: 20px;
    height: 20px;
}

.ct-card__icon--blue {
    background: rgba(59, 130, 246, 0.1);
}
.ct-card__icon--blue svg { stroke: #3b82f6; }

.ct-card__icon--red {
    background: rgba(199, 29, 34, 0.1);
}
.ct-card__icon--red svg { stroke: #C71D22; }

.ct-card__icon--green {
    background: rgba(16, 185, 129, 0.1);
}
.ct-card__icon--green svg { stroke: #10b981; }

.ct-card__icon--purple {
    background: rgba(139, 92, 246, 0.1);
}
.ct-card__icon--purple svg { stroke: #8b5cf6; }

.ct-card__body {
    flex: 1;
}

.ct-card__body h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 2px;
}

.ct-card__body span {
    font-size: 13.5px;
    color: var(--gray-600);
}

.ct-card__arrow {
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s ease;
}

.ct-card__arrow svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary);
}

a.ct-card:hover .ct-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Badge suport */
.ct-badge {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #fef3f2 0%, #fff1f0 100%);
    border-radius: 16px;
    border: 1px solid rgba(199, 29, 34, 0.1);
}

.ct-badge__pulse {
    width: 12px;
    height: 12px;
    min-width: 12px;
    background: #22c55e;
    border-radius: 50%;
    margin-top: 4px;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    animation: ct-pulse 2s infinite;
}

@keyframes ct-pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.ct-badge__content strong {
    display: block;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 4px;
}

.ct-badge__content span {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ── Form Column ── */
.ct-form-wrap {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eef0f6;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.ct-form-header {
    padding: 32px 36px 0;
}

.ct-form-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.ct-form-header p {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0;
}

.ct-form {
    padding: 28px 36px 36px;
}

.ct-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ct-form__group {
    margin-bottom: 20px;
}

.ct-form__group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.ct-form__group label span {
    color: #C71D22;
}

.ct-form__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.ct-form__input-icon {
    position: absolute;
    left: 14px;
    display: flex;
    align-items: center;
    pointer-events: none;
    z-index: 1;
}

.ct-form__input-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--gray-400);
    transition: stroke 0.2s ease;
}

.ct-form__input-wrap input,
.ct-form__input-wrap select {
    width: 100%;
    padding: 12px 14px 12px 42px;
    font-family: var(--font-primary);
    font-size: 14px;
    border: 1.5px solid #e5e7ee;
    border-radius: 10px;
    background: #f9fafb;
    transition: all 0.2s ease;
    color: var(--dark);
}

.ct-form__input-wrap input:focus,
.ct-form__input-wrap select:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(199, 29, 34, 0.08);
}

.ct-form__input-wrap input:focus + .ct-form__input-icon svg,
.ct-form__input-wrap:focus-within .ct-form__input-icon svg {
    stroke: var(--primary);
}

.ct-form textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-primary);
    font-size: 14px;
    border: 1.5px solid #e5e7ee;
    border-radius: 10px;
    background: #f9fafb;
    transition: all 0.2s ease;
    color: var(--dark);
    min-height: 120px;
    resize: vertical;
}

.ct-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(199, 29, 34, 0.08);
}

/* Checkbox */
.ct-form__checkbox {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 400 !important;
}

.ct-form__checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    accent-color: #C71D22;
}

.ct-form__checkmark {
    display: none;
}

.ct-form__checkbox-text {
    font-size: 12.5px;
    color: var(--gray-500);
    line-height: 1.5;
}

.ct-form__checkbox-text a {
    color: var(--primary);
    text-decoration: underline;
}

/* Submit */
.ct-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #C71D22 0%, #e8452e 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(199, 29, 34, 0.2);
}

.ct-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(199, 29, 34, 0.3);
}

.ct-form__submit svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    transition: transform 0.2s ease;
}

.ct-form__submit:hover svg {
    transform: translateX(4px);
}

.ct-form__response {
    padding: 0 36px 20px;
}

/* ── FAQ Section ── */
.ct-faq {
    position: relative;
    background: #fff;
}

.ct-faq__wave {
    line-height: 0;
    background: #fff;
}

.ct-faq__wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.ct-faq__body {
    background: #f8f9fc;
    padding: 60px 0 100px;
}

.ct-faq__header {
    text-align: center;
    margin-bottom: 48px;
}

.ct-faq__header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
    margin: 16px 0 12px;
    letter-spacing: -0.02em;
}

.ct-faq__header p {
    font-size: 1rem;
    color: var(--gray-500);
}

.ct-faq__list {
    max-width: 720px;
    margin: 0 auto;
}

.ct-faq__item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 12px;
    border: 1px solid #eef0f6;
    overflow: hidden;
    transition: all 0.2s ease;
}

.ct-faq__item:hover {
    border-color: #dde0ea;
}

.ct-faq__item[open] {
    border-color: rgba(199, 29, 34, 0.15);
    box-shadow: 0 4px 16px rgba(199, 29, 34, 0.06);
}

.ct-faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
}

.ct-faq__item summary::-webkit-details-marker {
    display: none;
}

.ct-faq__q {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    flex: 1;
    padding-right: 16px;
}

.ct-faq__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #f3f4f8;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.ct-faq__toggle svg {
    width: 16px;
    height: 16px;
    stroke: var(--gray-500);
    transition: transform 0.25s ease;
}

.ct-faq__item[open] .ct-faq__toggle {
    background: rgba(199, 29, 34, 0.08);
}

.ct-faq__item[open] .ct-faq__toggle svg {
    transform: rotate(180deg);
    stroke: var(--primary);
}

.ct-faq__answer {
    padding: 0 24px 20px;
}

.ct-faq__answer p {
    color: var(--gray-600);
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0;
}

/* ── Service FAQ Section ── */
.srv-faq {
    background: #f8f9fc;
    padding: 80px 0 90px;
}

/* ── Service Tech Logos (Static Grid + Brand Colors) ── */
.srv-tech {
    padding: 60px 0 70px;
    background:
        radial-gradient(circle at 1px 1px, rgba(15,52,96,0.18) 1px, transparent 0),
        linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
    background-size: 32px 32px, 100% 100%;
    border-top: 1px solid rgba(15,52,96,0.3);
    border-bottom: 1px solid rgba(15,52,96,0.3);
    position: relative;
    overflow: hidden;
}

.srv-tech::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 300px at 20% 50%, rgba(15,52,96,0.2) 0%, transparent 70%),
        radial-gradient(ellipse 600px 300px at 80% 50%, rgba(66,133,244,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.srv-tech .eyebrow {
    display: block;
    text-align: center;
    margin-bottom: 36px;
    color: rgba(255,255,255,0.5);
    position: relative;
}

.srv-tech__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 40px;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

.srv-tech__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 72px;
    cursor: default;
}

.srv-tech__icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.25);
    -webkit-mask-image: var(--icon);
    mask-image: var(--icon);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: background-color 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}

.srv-tech__item:hover .srv-tech__icon {
    background-color: var(--color);
    transform: translateY(-4px) scale(1.15);
    filter: drop-shadow(0 0 12px var(--color));
}

.srv-tech__name {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.srv-tech__item:hover .srv-tech__name {
    color: rgba(255,255,255,0.9);
}

@media (max-width: 768px) {
    .srv-tech {
        padding: 36px 0 40px;
    }
    .srv-tech__grid {
        gap: 20px 24px;
    }
    .srv-tech__item {
        width: 60px;
    }
    .srv-tech__icon {
        width: 28px;
        height: 28px;
    }
    .srv-tech__name {
        font-size: 9px;
    }
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .ct-hero {
        padding: 130px 0 100px;
    }

    .ct-hero__wave svg {
        height: 50px;
    }

    .ct-hero__stats {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .ct-hero__stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 16px 24px;
    }

    .ct-hero__stat:last-child {
        border-bottom: none;
    }

    .ct-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ct-form-header {
        padding: 28px 24px 0;
    }

    .ct-form {
        padding: 24px 24px 28px;
    }

    .ct-form__row {
        grid-template-columns: 1fr;
    }

    .ct-faq__body {
        padding: 40px 0 80px;
    }
}

/* ════════════════════════════════════════════════
   ABOUT PAGE — Despre Noi Premium Tech
   ════════════════════════════════════════════════ */

/* ── Shared Eyebrow ── */
.ab-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(199, 29, 34, 0.12);
    border: 1px solid rgba(199, 29, 34, 0.2);
    border-radius: 100px;
    color: #ff6b6b;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.ab-eyebrow svg {
    width: 16px;
    height: 16px;
    stroke: #ff6b6b;
}

.ab-eyebrow--dark {
    background: rgba(199, 29, 34, 0.06);
    border-color: rgba(199, 29, 34, 0.12);
    color: var(--primary);
}

.ab-eyebrow--dark svg {
    stroke: var(--primary);
}

/* ── Hero ── */
.ab-hero {
    position: relative;
    padding: 160px 0 120px;
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    overflow: hidden;
    text-align: center;
}

.ab-hero__canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

.ab-hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(199, 29, 34, 0.08) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.ab-hero__inner {
    position: relative;
    z-index: 2;
}

.ab-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.ab-hero__title span {
    background: linear-gradient(135deg, #C71D22, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ab-hero__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.ab-hero__stats {
    display: inline-flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

.ab-hero__stat {
    padding: 20px 28px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.ab-hero__stat:last-child { border-right: none; }

.ab-hero__stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.ab-hero__stat span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ab-hero__wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    z-index: 3;
    line-height: 0;
}

.ab-hero__wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ── Story Section ── */
.ab-story {
    padding: 100px 0;
    background: #fff;
}

.ab-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.ab-story__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.ab-story__title span {
    color: var(--primary);
}

.ab-story__content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1rem;
}

.ab-story__highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.ab-story__highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #f8f9fc;
    border-radius: 14px;
    border: 1px solid #eef0f6;
}

.ab-story__highlight-icon {
    width: 44px; height: 44px; min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.ab-story__highlight-icon svg {
    width: 20px; height: 20px;
}

.ab-story__highlight-icon--blue {
    background: rgba(59, 130, 246, 0.1);
}
.ab-story__highlight-icon--blue svg { stroke: #3b82f6; }

.ab-story__highlight-icon--green {
    background: rgba(16, 185, 129, 0.1);
}
.ab-story__highlight-icon--green svg { stroke: #10b981; }

.ab-story__highlight div:last-child strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.ab-story__highlight div:last-child span {
    font-size: 13px;
    color: var(--gray-500);
}

/* Story Image */
.ab-story__visual {
    position: relative;
}

.ab-story__image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.ab-story__image-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.ab-story__image-badge {
    position: absolute;
    bottom: 20px; right: 20px;
    background: linear-gradient(135deg, #C71D22 0%, #e8452e 100%);
    color: #fff;
    padding: 16px 24px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(199, 29, 34, 0.3);
}

.ab-story__image-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.ab-story__image-badge span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

/* ── Mission Section ── */
.ab-mission {
    padding: 100px 0;
    background: #f8f9fc;
}

.ab-mission__header {
    text-align: center;
    margin-bottom: 48px;
}

.ab-mission__header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
    margin: 16px 0 0;
    letter-spacing: -0.02em;
}

.ab-mission__header h2 span {
    color: var(--primary);
}

.ab-mission__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ab-mission__card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid #eef0f6;
    transition: all 0.25s ease;
}

.ab-mission__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: #dde0ea;
}

.ab-mission__card--accent {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-color: rgba(255, 255, 255, 0.08);
}

.ab-mission__card--accent h3, .ab-mission__card--accent p {
    color: #fff;
}

.ab-mission__card--accent p {
    color: rgba(255, 255, 255, 0.9);
}

.ab-mission__card--accent .ab-mission__card-icon svg {
    stroke: #fff;
}

.ab-mission__card-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(199, 29, 34, 0.08);
    border-radius: 12px;
    margin-bottom: 20px;
}

.ab-mission__card-icon svg {
    width: 22px; height: 22px;
    stroke: var(--primary);
}

.ab-mission__card--accent .ab-mission__card-icon {
    background: rgba(255, 255, 255, 0.1);
}

.ab-mission__card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.ab-mission__card p {
    font-size: 14.5px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.ab-mission__card--accent h3 {
    color: #fff;
}

.ab-mission__card--accent p {
    color: rgba(255, 255, 255, 0.9);
}

/* ── Services Section ── */
.ab-services {
    position: relative;
    background: #fff;
}

.ab-services__wave {
    line-height: 0;
    background: #fff;
}

.ab-services__wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.ab-services__body {
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 0 100px;
}

.ab-services__header {
    text-align: center;
    margin-bottom: 48px;
}

.ab-services__header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin: 16px 0 16px;
    letter-spacing: -0.02em;
}

.ab-services__header h2 span {
    background: linear-gradient(135deg, #C71D22, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ab-services__header p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
}

.ab-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ab-svc-card {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
    position: relative;
}

.ab-svc-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.ab-svc-card__icon {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 18px;
}

.ab-svc-card__icon svg {
    width: 20px; height: 20px;
}

.ab-svc-card__icon--blue { background: rgba(59, 130, 246, 0.15); }
.ab-svc-card__icon--blue svg { stroke: #60a5fa; }
.ab-svc-card__icon--red { background: rgba(239, 68, 68, 0.15); }
.ab-svc-card__icon--red svg { stroke: #f87171; }
.ab-svc-card__icon--green { background: rgba(16, 185, 129, 0.15); }
.ab-svc-card__icon--green svg { stroke: #34d399; }
.ab-svc-card__icon--purple { background: rgba(139, 92, 246, 0.15); }
.ab-svc-card__icon--purple svg { stroke: #a78bfa; }
.ab-svc-card__icon--amber { background: rgba(245, 158, 11, 0.15); }
.ab-svc-card__icon--amber svg { stroke: #fbbf24; }
.ab-svc-card__icon--pink { background: rgba(236, 72, 153, 0.15); }
.ab-svc-card__icon--pink svg { stroke: #f472b6; }
.ab-svc-card__icon--cyan { background: rgba(6, 182, 212, 0.15); }
.ab-svc-card__icon--cyan svg { stroke: #22d3ee; }
.ab-svc-card__icon--teal { background: rgba(20, 184, 166, 0.15); }
.ab-svc-card__icon--teal svg { stroke: #2dd4bf; }

.ab-svc-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.ab-svc-card p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.ab-svc-card__arrow {
    display: flex;
    margin-top: 16px;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s ease;
}

.ab-svc-card__arrow svg {
    width: 16px; height: 16px;
    stroke: #ff6b6b;
}

.ab-svc-card:hover .ab-svc-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

.ab-services__cta {
    text-align: center;
    margin-top: 48px;
}

.ab-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.ab-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

.ab-btn-outline svg {
    width: 16px; height: 16px;
    stroke: #ff6b6b;
}

/* ── Tech Stack ── */
.ab-tech {
    padding: 100px 0;
    background: #fff;
}

.ab-tech__header {
    text-align: center;
    margin-bottom: 48px;
}

.ab-tech__header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
    margin: 16px 0 12px;
    letter-spacing: -0.02em;
}

.ab-tech__header h2 span {
    color: var(--primary);
}

.ab-tech__header p {
    color: var(--gray-500);
    font-size: 1.05rem;
}

.ab-tech__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.ab-tech__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 16px;
    border-radius: 16px;
    background: #f8f9fc;
    border: 1px solid #eef0f6;
    transition: all 0.25s ease;
}

.ab-tech__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: #dde0ea;
}

.ab-tech__item img {
    width: 48px; height: 48px;
    object-fit: contain;
}

.ab-tech__item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
}

/* ── Why Us ── */
.ab-why {
    padding: 100px 0;
    background: #f8f9fc;
}

.ab-why__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.ab-why__image-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.ab-why__image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.ab-why__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.ab-why__title span {
    color: var(--primary);
}

.ab-why__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ab-why__item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.ab-why__item-num {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    min-width: 36px;
    padding-top: 2px;
}

.ab-why__item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.ab-why__item p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* ── CTA Banner ── */
.ab-cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #C71D22 0%, #e8452e 100%);
    overflow: hidden;
    text-align: center;
}

.ab-cta__canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

.ab-cta__inner {
    position: relative;
    z-index: 1;
}

.ab-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.ab-cta h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.85);
}

.ab-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.ab-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ab-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.ab-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.ab-btn-primary svg {
    width: 18px; height: 18px;
    stroke: var(--primary);
}

.ab-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.ab-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.ab-btn-ghost svg {
    width: 18px; height: 18px;
    stroke: #fff;
}

/* ── About Responsive ── */
@media (max-width: 768px) {
    .ab-hero {
        padding: 130px 0 100px;
    }

    .ab-hero__wave svg { height: 50px; }

    .ab-hero__stats {
        flex-direction: column;
        width: 100%;
        max-width: 260px;
    }

    .ab-hero__stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 14px 24px;
    }

    .ab-hero__stat:last-child { border-bottom: none; }

    .ab-story__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ab-story__visual { order: -1; }

    .ab-story__image-wrap img { height: 300px; }

    .ab-mission__grid {
        grid-template-columns: 1fr;
    }

    .ab-services__grid {
        grid-template-columns: 1fr;
    }

    .ab-tech__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ab-why__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ab-why__image-wrap img { height: 300px; }

    .ab-services__body {
        padding: 60px 0 80px;
    }
}

@media (max-width: 480px) {
    .ab-tech__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ═══════════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════════ */
.e5-breadcrumbs {
    padding: 12px 0;
    font-size: 0.85rem;
}

.e5-breadcrumbs__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

.e5-breadcrumbs__item {
    display: inline-flex;
    align-items: center;
}

.e5-breadcrumbs__item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.e5-breadcrumbs__item a:hover {
    color: #fff;
}

.e5-breadcrumbs__sep {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

.e5-breadcrumbs__item span[aria-current] {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Light breadcrumbs variant */
.e5-breadcrumbs--light .e5-breadcrumbs__item a { color: #666; }
.e5-breadcrumbs--light .e5-breadcrumbs__item a:hover { color: var(--primary, #C71D22); }
.e5-breadcrumbs--light .e5-breadcrumbs__sep { color: #ccc; }
.e5-breadcrumbs--light .e5-breadcrumbs__item span[aria-current] { color: #1a1a2e; }

/* ═══════════════════════════════════════════
   HOMEPAGE FAQ
   ═══════════════════════════════════════════ */
.hp-faq {
    padding: 100px 0;
    background: #f8f9fc;
}

.hp-faq__header {
    text-align: center;
    margin-bottom: 48px;
}

.hp-faq__badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(199, 29, 34, 0.08);
    color: var(--primary, #C71D22);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 20px;
    margin-bottom: 16px;
}

.hp-faq__header h2 {
    font-family: var(--font-display, 'Plus Jakarta Sans', sans-serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--secondary, #1A1A2E);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.hp-faq__header p {
    color: #666;
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

.hp-faq__grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hp-faq__item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8eaef;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.hp-faq__item:hover,
.hp-faq__item--active {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.hp-faq__question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary, #1A1A2E);
    line-height: 1.4;
}

.hp-faq__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
    color: #999;
}

.hp-faq__item--active .hp-faq__icon {
    transform: rotate(180deg);
    color: var(--primary, #C71D22);
}

.hp-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.hp-faq__answer p {
    padding: 0 24px 20px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ═══════════════════════════════════════════
   ABOUT PAGE FAQ
   ═══════════════════════════════════════════ */
.ab-faq {
    padding: 100px 0;
    background: #f8f9fc;
}

.ab-faq__header {
    text-align: center;
    margin-bottom: 48px;
}

.ab-faq__header h2 {
    font-family: var(--font-display, 'Plus Jakarta Sans', sans-serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--secondary, #1A1A2E);
    margin-top: 16px;
    letter-spacing: -0.02em;
}

.ab-faq__grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ab-faq__item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8eaef;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.ab-faq__item:hover,
.ab-faq__item--active {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.ab-faq__question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary, #1A1A2E);
    line-height: 1.4;
}

.ab-faq__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
    color: #999;
}

.ab-faq__item--active .ab-faq__icon {
    transform: rotate(180deg);
    color: var(--primary, #C71D22);
}

.ab-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

/* =============================================
   404 Page — Geeky Matrix Design
   ============================================= */
.e5-404 {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a1a 0%, #0d1117 40%, #161b22 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 20px 80px;
}
.e5-404-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}
/* Perspective grid */
.e5-404-grid {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        linear-gradient(rgba(199,29,34,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(199,29,34,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    animation: e5GridDrift 20s linear infinite;
}
@keyframes e5GridDrift {
    0% { transform: perspective(500px) rotateX(0deg); }
    50% { transform: perspective(500px) rotateX(2deg); }
    100% { transform: perspective(500px) rotateX(0deg); }
}
.e5-404-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
}
/* Glitch 404 number */
.e5-404-number {
    font-size: clamp(6rem, 18vw, 12rem);
    font-weight: 900;
    color: #fff;
    position: relative;
    display: inline-block;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 30px;
    text-shadow: 0 0 40px rgba(200,29,39,0.3);
}
.e5-404-glitch {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0.8;
}
.e5-404-glitch:first-child {
    color: #C81D27;
    text-shadow: 2px 0 rgba(200,29,39,0.7);
    animation: e5Glitch1 4s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
}
.e5-404-glitch:last-child {
    color: #818286;
    text-shadow: -2px 0 rgba(129,130,134,0.5);
    animation: e5Glitch2 3s infinite linear alternate-reverse;
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
}
@keyframes e5Glitch1 {
    0%, 85% { transform: translate(0); opacity: 0.8; }
    86% { transform: translate(-4px, 1px) skewX(-2deg); opacity: 1; }
    88% { transform: translate(3px, -1px) skewX(1deg); opacity: 0.6; }
    90% { transform: translate(-2px, 0); opacity: 0.9; }
    92%, 100% { transform: translate(0); opacity: 0.8; }
}
@keyframes e5Glitch2 {
    0%, 80% { transform: translate(0); opacity: 0.8; }
    81% { transform: translate(3px, -1px) skewX(2deg); opacity: 1; }
    83% { transform: translate(-5px, 2px) skewX(-1deg); opacity: 0.5; }
    85% { transform: translate(2px, 0); opacity: 0.9; }
    87%, 100% { transform: translate(0); opacity: 0.8; }
}
.e5-404-number::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(200,29,39,0.03) 2px, rgba(200,29,39,0.03) 4px);
    pointer-events: none;
}
/* Terminal window */
.e5-404-terminal {
    background: rgba(13,17,23,0.95);
    border: 1px solid rgba(199,29,34,0.3);
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto 30px;
    max-width: 520px;
    text-align: left;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 60px rgba(199,29,34,0.08);
}
.e5-404-terminal-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 14px;
    background: rgba(30,36,44,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.e5-404-dot {
    width: 11px; height: 11px;
    border-radius: 50%;
}
.e5-404-dot--red { background: #ff5f56; }
.e5-404-dot--yellow { background: #ffbd2e; }
.e5-404-dot--green { background: #27c93f; }
.e5-404-terminal-title {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    margin-left: 8px;
}
.e5-404-terminal-body {
    padding: 18px 20px;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.85rem;
    line-height: 1.8;
}
.e5-404-line {
    margin: 0;
    color: rgba(255,255,255,0.7);
}
.e5-404-prompt {
    color: #27c93f;
    font-weight: 700;
    margin-right: 8px;
}
.e5-404-cmd {
    color: #79c0ff;
}
.e5-404-cursor {
    color: #C71D22;
    animation: e5Blink 1s step-end infinite;
    font-size: 0.9em;
}
@keyframes e5Blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.e5-404-output {
    color: #C71D22 !important;
    margin-top: 4px !important;
    opacity: 0;
    transition: opacity 0.3s;
}
.e5-404-output.visible { opacity: 1; }
/* Description */
.e5-404-desc {
    color: rgba(255,255,255,0.5);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 36px;
}
/* Action buttons */
.e5-404-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.e5-404-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}
.e5-404-btn svg { width: 16px; height: 16px; }
.e5-404-btn--primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(199,29,34,0.35);
}
.e5-404-btn--primary:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(199,29,34,0.5);
}
.e5-404-btn--outline {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.15);
}
.e5-404-btn--outline:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}
.e5-404-btn-icon {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.85rem;
}
/* Easter egg text */
.e5-404-easter {
    color: rgba(255,255,255,0.15);
    font-size: 0.75rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
}
.e5-404-easter kbd {
    display: inline-block;
    padding: 2px 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    font-size: 0.7rem;
    margin: 0 1px;
}
/* Wave */
.e5-404-wave {
    position: absolute;
    bottom: -1px; left: 0;
    width: 100%; height: 60px;
    z-index: 3;
}
/* Konami easter egg — party mode */
.e5-404.party .e5-404-number {
    animation: e5Rainbow 0.5s linear infinite;
}
.e5-404.party .e5-404-grid {
    background-size: 30px 30px;
    animation: e5GridDrift 3s linear infinite;
}
@keyframes e5Rainbow {
    0% { color: #ff0000; text-shadow: 0 0 60px #ff0000; }
    16% { color: #ff8800; text-shadow: 0 0 60px #ff8800; }
    33% { color: #ffff00; text-shadow: 0 0 60px #ffff00; }
    50% { color: #00ff88; text-shadow: 0 0 60px #00ff88; }
    66% { color: #0088ff; text-shadow: 0 0 60px #0088ff; }
    83% { color: #8800ff; text-shadow: 0 0 60px #8800ff; }
    100% { color: #ff0000; text-shadow: 0 0 60px #ff0000; }
}
/* Mobile */
@media (max-width: 768px) {
    .e5-404 { padding: 100px 16px 60px; }
    .e5-404-terminal-body { font-size: 0.75rem; padding: 14px 16px; }
    .e5-404-actions { flex-direction: column; align-items: center; }
    .e5-404-btn { width: 100%; max-width: 260px; justify-content: center; }
}

.ab-faq__answer p {
    padding: 0 24px 20px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}
