/* ========== ABOUT INTRO SPLIT ========== */
.about-intro {
    display: flex;
    flex-wrap: wrap;
}
.about-intro-text,
.about-intro-image {
    width: 50%;
    min-height: 500px;
}
.about-intro-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background: #fff;
}
.about-intro-text h2 { margin-bottom: 25px; }
.about-intro-text p { color: #777; line-height: 1.8; }
.about-intro-text p strong { color: #1b1b24; }
.about-intro-image {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
    position: relative;
}
@media (max-width: 991px) {
    .about-intro-text, .about-intro-image { width: 100%; }
    .about-intro-text { padding: 40px 20px; }
    .about-intro-image { min-height: 400px; }
}

/* ========== MISSION VISION VALUES ========== */
.mvv-section {
    background: #f5f5f5;
    padding: 80px 0;
}
.mvv-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}
.mvv-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background: #fff;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.mvv-card .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ff6b35;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 25px;
}
.mvv-card h4 { color: #1b1b24; margin-bottom: 15px; }
.mvv-card p { color: #777; font-size: 14px; line-height: 1.8; margin-bottom: 0; }

/* ========== HISTORY TIMELINE ========== */
.history-section {
    padding: 80px 0;
    background: #faf8f5;
}
.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #e0e0e0;
}
.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 50px;
}
.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}
.timeline-content {
    background: #fff;
    padding: 30px;
    max-width: 350px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
}
.timeline-item:nth-child(odd) .timeline-content { margin-right: 30px; }
.timeline-item:nth-child(even) .timeline-content { margin-left: 30px; }
.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ff6b35;
    border: 4px solid #faf8f5;
}
.timeline-content h4 { color: #ff6b35; margin-bottom: 10px; }
.timeline-content p { color: #777; font-size: 14px; margin-bottom: 0; }
@media (max-width: 768px) {
    .timeline::before { left: 20px; }
    .timeline-item, .timeline-item:nth-child(even) {
        padding-left: 50px;
        padding-right: 0;
        justify-content: flex-start;
    }
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
    }
    .timeline-dot { left: 20px; }
}

/* ========== VALUES SECTION ========== */
.values-section { display: flex; flex-wrap: wrap; }
.values-image {
    width: 50%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}
.values-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: #fff;
}
.values-content h3 { margin-bottom: 30px; }
.value-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}
.value-item .icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #ff6b35;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
}
.value-item h6 { margin-bottom: 5px; }
.value-item p { font-size: 14px; color: #777; margin-bottom: 0; }
@media (max-width: 991px) {
    .values-image, .values-content { width: 100%; }
    .values-content { padding: 40px 20px; }
    .values-image { min-height: 400px; }
}

/* ========== STATS SECTION ========== */
.stats-section {
    background: #ff6b35;
    padding: 60px 0;
}
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}
.stat-item { text-align: center; color: #fff; }
.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}
.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* ========== MANIFESTO SECTION ========== */
.manifesto-section {
    background: #1b1b24;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.manifesto-section::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 200px;
    color: rgba(255,107,53,0.1);
    line-height: 1;
}
.manifesto-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}
.manifesto-title {
    color: #ff6b35;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
}
.manifesto-intro {
    font-size: 2rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 40px;
}
.manifesto-text {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    line-height: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.manifesto-text p { margin-bottom: 15px; }
.manifesto-closing {
    font-size: 1.5rem;
    font-style: italic;
    color: #ff6b35;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 768px) {
    .manifesto-intro { font-size: 1.5rem; }
    .manifesto-text { font-size: 0.95rem; }
    .manifesto-closing { font-size: 1.2rem; }
}

/* ========== CLIENTS CAROUSEL ========== */
.clients-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.clients-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scroll-clients 25s linear infinite;
    width: max-content;
}
.clients-track img {
    height: 60px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
    filter: grayscale(100%);
}
.clients-track img:hover { opacity: 1; filter: grayscale(0%); }
@keyframes scroll-clients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.clients-carousel:hover .clients-track { animation-play-state: paused; }

/* ========== SERVICE DETAIL SECTION ========== */
.service-detail {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.service-detail.reverse { flex-direction: row-reverse; }
.service-detail-text, .service-detail-image {
    width: 50%;
    min-height: 500px;
}
.service-detail-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}
.service-detail-text h3 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}
.service-detail-text h3::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ff6b35;
}
.service-detail-text p { color: #777; line-height: 1.8; }
.service-detail-text ul { margin: 20px 0; }
.service-detail-text ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}
.service-detail-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 10px;
    height: 2px;
    background: #ff6b35;
}
.service-detail-image {
    background-size: cover;
    background-position: center top;
    min-height: 360px;
    position: relative;
}
.service-detail-image .service-tag {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #ff6b35;
    color: #fff;
    padding: 12px 24px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media (max-width: 991px) {
    .service-detail-text, .service-detail-image { width: 100%; }
    .service-detail-text { padding: 40px 20px; }
    .service-detail-image { min-height: 400px; }
    .service-detail.reverse { flex-direction: column-reverse; }
}

/* ========== PROCESS SECTION ========== */
.process-section {
    background: #1b1b24;
    padding: 80px 0;
}
.process-section h2, .process-section p { color: #fff; }
.process-section .section-desc { color: rgba(255,255,255,0.7); }
.process-steps {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}
.process-step {
    width: 25%;
    text-align: center;
    padding: 30px 20px;
    position: relative;
}
.process-step::after {
    content: '';
    position: absolute;
    top: 50px;
    right: 0;
    width: 50%;
    height: 2px;
    background: rgba(255,255,255,0.2);
}
.process-step:last-child::after { display: none; }
.process-step::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 50%;
    height: 2px;
    background: rgba(255,255,255,0.2);
}
.process-step:first-child::before { display: none; }
.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ff6b35;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}
.process-step h5 { color: #fff; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 0; }
@media (max-width: 991px) {
    .process-step { width: 50%; }
    .process-step::after, .process-step::before { display: none; }
}
@media (max-width: 576px) {
    .process-step { width: 100%; }
}

/* ========== FEATURES LIST ========== */
.features-split { display: flex; flex-wrap: wrap; }
.features-image, .features-content {
    width: 50%;
    min-height: 500px;
}
.features-image {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
}
.features-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: #faf8f5;
}
.features-content h3 { margin-bottom: 30px; }
.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}
.feature-item .icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #ff6b35;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
}
.feature-item h6 { margin-bottom: 5px; }
.feature-item p { font-size: 14px; color: #777; margin-bottom: 0; }
@media (max-width: 991px) {
    .features-image, .features-content { width: 100%; }
    .features-content { padding: 40px 20px; }
}

/* ========== FAQ SECTION ========== */
.faq-section { padding: 80px 0; }
.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}
.faq-item { border-bottom: 1px solid #eee; margin-bottom: 0; }
.faq-question {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: #1b1b24;
    transition: color 0.3s;
}
.faq-question:hover { color: #ff6b35; }
.faq-question .icon {
    font-size: 20px;
    color: #ff6b35;
    transition: transform 0.3s;
}
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding-bottom: 20px; color: #777; line-height: 1.8; }

/* ========== BLOG CHESS LAYOUT ========== */
.blog-section { padding: 0; }
.chess-wrap { display: flex; flex-wrap: wrap; }
.post-item {
    display: flex;
    width: 100%;
    min-height: 400px;
}
.post-item:nth-child(even) { flex-direction: row-reverse; }
.post-featured {
    width: 50%;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.post-featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.2);
    transition: all 0.3s;
}
.post-item:hover .post-featured::before { background: rgba(0,0,0,0.4); }
.post-featured .hover-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s;
}
.post-item:hover .hover-dots { opacity: 1; }
.hover-dots span {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}
.post-inner {
    width: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 60px;
}
.post-item:nth-child(even) .post-inner { background: #faf8f5; }
.post-category {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff6b35;
    margin-bottom: 15px;
}
.post-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.4;
}
.post-title a { color: #1b1b24; transition: color 0.3s; }
.post-title a:hover { color: #ff6b35; }
.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #999;
    margin-bottom: 20px;
}
.post-meta-item { display: flex; align-items: center; gap: 5px; }
.post-meta-item i { color: #ff6b35; font-size: 12px; }
.post-excerpt {
    color: #777;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}
.more-link {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1b1b24;
    position: relative;
    padding-bottom: 5px;
}
.more-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: #ff6b35;
    transition: width 0.3s;
}
.more-link:hover::after { width: 100%; }
.more-link:hover { color: #ff6b35; }
@media (max-width: 991px) {
    .post-item, .post-item:nth-child(even) { flex-direction: column; }
    .post-featured, .post-inner { width: 100%; }
    .post-featured { min-height: 300px; }
    .post-inner { padding: 40px 30px; }
}

/* ========== CONTACT INFO SECTION ========== */
.contact-info-section {
    background: #fff;
    padding: 80px 0 60px;
}
.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}
.contact-intro h2 { position: relative; display: inline-block; }
.contact-intro h2::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #ff6b35;
}
.contact-intro p { color: #777; margin-top: 15px; }
.contact-cards {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 30px;
}
.contact-card { text-align: center; padding: 40px 30px; }
.contact-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ff6b35;
}
.contact-card h5 { margin-bottom: 15px; color: #1b1b24; }
.contact-card p { color: #777; font-size: 15px; margin-bottom: 0; line-height: 1.8; }
.contact-card a { color: #777; transition: color 0.3s; }
.contact-card a:hover { color: #ff6b35; }
@media (max-width: 991px) {
    .contact-cards { grid-template-columns: 1fr; gap: 20px; }
}

/* ========== CONTACT FORM ========== */
.contact-form-section {
    background: #fff;
    padding: 40px 0 80px;
}
.contact-form-wrap {
    max-width: 900px;
    margin: 0 auto;
}
.contact-form-header { text-align: center; margin-bottom: 40px; }
.contact-form-header h2 { position: relative; display: inline-block; }
.contact-form-header h2::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #ff6b35;
}
.contact-form { display: flex; flex-wrap: wrap; gap: 0; }
.form-row { display: flex; width: 100%; gap: 0; }
.form-row .form-group { flex: 1; }
.form-group { position: relative; margin-bottom: 0; }
.form-group.full-width { width: 100%; }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 25px;
    border: 1px solid #e5e5e5;
    border-radius: 30px;
    background: #f9f9f9;
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    color: #333;
    transition: all 0.3s;
    margin-bottom: 15px;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #999; font-weight: 300; }
.form-group textarea {
    min-height: 180px;
    resize: vertical;
    border-radius: 20px;
}
.form-submit { width: 100%; text-align: left; margin-top: 10px; }
.form-submit button {
    padding: 16px 40px;
    font-size: 13px;
    border-radius: 30px;
    background: #1b1b24;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}
.form-submit button:hover { background: #ff6b35; }
.form-submit button::before,
.form-submit button::after { display: none; }
@media (max-width: 768px) {
    .form-row { flex-direction: column; }
}

/* ========== MAP SECTION ========== */
.map-section { height: 450px; width: 100%; }
.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%);
    transition: filter 0.3s;
}
.map-section:hover iframe { filter: grayscale(0%); }

/* ========== VALUES SECTION ========== */
.values-section {
    display: flex;
    flex-wrap: wrap;
}
.values-image {
    width: 50%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}
.values-content {
    width: 50%;
    padding: 60px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.values-content h3 { margin-bottom: 30px; }
.value-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}
.value-item .icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: #ff6b35;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.value-item h6 { margin-bottom: 5px; color: #1b1b24; }
.value-item p { font-size: 14px; color: #777; margin-bottom: 0; }
@media (max-width: 991px) {
    .values-image, .values-content { width: 100%; }
    .values-image { min-height: 350px; }
    .values-content { padding: 40px 20px; }
}

/* ========== FEATURES SPLIT ========== */
.features-split {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}
.features-image {
    flex: 1;
    min-width: 300px;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}
.features-content {
    flex: 1;
    min-width: 300px;
}
.features-content h3 { margin-bottom: 30px; }
.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}
.feature-item .icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.feature-item h6 { margin-bottom: 5px; color: #1b1b24; }
.feature-item p { font-size: 14px; color: #777; margin-bottom: 0; }

/* ========== PRICING SECTION ========== */
.pricing-section { background: #faf8f5; }
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 40px;
    justify-content: center;
}
.pricing-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #fff;
    text-align: center;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.pricing-card.featured {
    background: #1b1b24;
    color: #fff;
    transform: scale(1.05);
    z-index: 2;
}
.pricing-card.featured h4 { color: #fff; }
.pricing-card.featured .desc { color: rgba(255,255,255,0.7); }
.pricing-card .label {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 5px 15px;
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-radius: 20px;
}
.pricing-card h4 { margin-bottom: 10px; }
.pricing-card .desc { font-size: 13px; color: #777; margin-bottom: 25px; }
.pricing-card ul { margin-bottom: 30px; text-align: left; }
.pricing-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    position: relative;
    padding-left: 25px;
}
.pricing-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}
.pricing-card.featured ul li { border-color: rgba(255,255,255,0.1); }
@media (max-width: 991px) {
    .pricing-card { max-width: 100%; }
    .pricing-card.featured { transform: none; }
}

/* ========== FAQ SECTION ========== */
.faq-section { padding: 80px 0; background: #fff; }
.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: left;
}
.faq-item { border-bottom: 1px solid #eee; }
.faq-question {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: #1b1b24;
    transition: color 0.3s;
}
.faq-question:hover { color: #ff6b35; }
.faq-question .icon {
    font-size: 20px;
    color: #ff6b35;
    transition: transform 0.3s;
}
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p {
    padding-bottom: 20px;
    color: #777;
    line-height: 1.8;
}

/* ========== CLIENTS CAROUSEL ========== */
.clients-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.clients-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scroll-clients 25s linear infinite;
    width: max-content;
}
.clients-track img {
    height: 60px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
    filter: grayscale(100%);
}
.clients-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
}
@keyframes scroll-clients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.clients-carousel:hover .clients-track {
    animation-play-state: paused;
}

/* ========== COUNTER SECTION ========== */
.counter-section {
    background: #1b1b24;
    padding: 50px 0;
    text-align: center;
}
.counter-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.counter-number-wrap {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}
.counter-number {
    font-family: 'League Gothic', sans-serif;
    font-size: 4rem;
    color: #ff6b35;
    letter-spacing: 2px;
}
.counter-plus {
    font-family: 'League Gothic', sans-serif;
    font-size: 3rem;
    color: #ff6b35;
}
.counter-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
}
@media (max-width: 768px) {
    .counter-number { font-size: 3rem; }
    .counter-plus { font-size: 2rem; }
    .counter-text { font-size: 1rem; width: 100%; margin-top: 0; }
}

/* ========== STATS SECTION ========== */
.stats-section {
    background: #faf8f5;
    padding: 60px 0;
}
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.stat-item {
    text-align: center;
    min-width: 180px;
}
.stat-number {
    display: block;
    font-family: 'League Gothic', sans-serif;
    font-size: 3.5rem;
    color: #ff6b35;
    line-height: 1;
    margin-bottom: 10px;
}
.stat-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media (max-width: 768px) {
    .stats-grid { gap: 30px; }
    .stat-item { min-width: 140px; }
    .stat-number { font-size: 2.5rem; }
    .stat-label { font-size: 0.8rem; }
}
