/* assets/css/pages/home.css */
/* ═══════════════════════════════════════════════════════════════ */
/* Ana Səhifə stilləri — Hero, Services, Process, Testimonials,   */
/* FAQ, CTA                                                        */
/* ═══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════
   HERO
   ══════════════════════════════════ */
.hero-section {
    padding: 120px 0 80px 0;
    background: var(--hero-bg);
    position: relative;
    overflow: hidden;
    margin-top: var(--navbar-height);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.1) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.4;
}

.hero-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    justify-self: start;
    text-align: left;
    width: 100%;
}

.hero-visual {
    justify-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--hero-badge-bg);
    color: var(--hero-badge-color);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: 32px;
    border: 1px solid var(--hero-badge-border);
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-form {
    margin-bottom: 24px;
}

.hero-form .btn-primary {
    flex-shrink: 0;
    flex-basis: 180px;
    max-width: 180px;
    padding: 12px 20px;
}

.form-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.hero-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

/* ══════════════════════════════════
   PROCESS STEPS (v2 dizayn)
   ══════════════════════════════════ */
.process-section {
    padding: 60px 0;
    background-color: var(--background);
    position: relative;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 64px;
    position: relative;
}

.process-step {
    position: relative;
    padding: 32px 24px;
    border: 1px solid var(--border-color);
    border-right: none;
    background-color: var(--surface);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:first-child {
    border-radius: 2px 0 0 2px;
}

.process-step:last-child {
    border-right: 1px solid var(--border-color);
    border-radius: 0 2px 2px 0;
}

.process-step:hover {
    background-color: #fafafa;
    z-index: 2;
}

.process-step:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #1d4ed8);
}

.step-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
    color: var(--text-primary);
    opacity: 0.15;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    opacity: 0.3;
    color: var(--primary-color);
}

.step-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

.step-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.step-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step-details li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.step-details li svg {
    flex-shrink: 0;
    color: var(--primary-color);
    opacity: 0.7;
}

.step-connector {
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s ease;
}

.step-connector svg {
    width: 14px;
    height: 14px;
    color: var(--text-secondary);
    opacity: 0.5;
}

.process-step:hover .step-connector {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.process-step:hover .step-connector svg {
    color: white;
    opacity: 1;
}

/* ══════════════════════════════════
   SERVICES GRID (v2 dizayn)
   ══════════════════════════════════ */
.services-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: #e0e0e0;
    margin-top: 48px;
}

.service-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--text-primary);
    transition: height 0.3s ease;
}

.service-card:hover {
    background-color: #fafafa;
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    margin-bottom: 28px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 28px;
    color: var(--text-primary);
}

.service-card:hover .service-icon {
    transform: scale(1.05);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.service-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.service-features li svg {
    flex-shrink: 0;
    color: var(--primary-color);
    opacity: 0.6;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 12px;
    opacity: 0.6;
}


/* ══════════════════════════════════
   TESTIMONIALS (v2 dizayn)
   ══════════════════════════════════ */
.testimonials-section {
    padding: 60px 0;
    background-color: var(--background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 48px;
}

.testimonial-card {
    padding: 36px 28px;
    background-color: var(--background);
    border: 1px solid var(--border-color);
    border-right: none;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:nth-child(3n) {
    border-right: 1px solid var(--border-color);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #1d4ed8);
    transition: width 0.3s ease;
}

.testimonial-card:hover {
    background-color: #fafafa;
    z-index: 2;
}

.testimonial-card:hover::before {
    width: 100%;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--primary-color);
    font-size: 13px;
    opacity: 0.6;
}

.testimonial-card:hover .testimonial-stars i {
    opacity: 1;
}

.testimonial-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 2px;
    background-color: var(--text-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    background-color: var(--primary-color);
}

.testimonial-name {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ══════════════════════════════════
   FAQ (v2 dizayn)
   ══════════════════════════════════ */
.faq-section {
    background-color: var(--surface);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 2px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    gap: 16px;
}

.faq-icon {
    transition: transform var(--transition-normal);
    flex-shrink: 0;
    color: var(--text-muted);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-answer p {
    padding: 0 24px 20px 24px;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ══════════════════════════════════
   TECHNOLOGIES BANNER (v2 dizayn)
   ══════════════════════════════════ */
.technologies-section {
    padding: 20px 0 30px;
    background-color: var(--background);
}

.tech-content {
    padding: 10px 0;
}

.tech-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 0 40px;
}

.tech-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.02em;
}

.view-tech-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.view-tech-link:hover {
    color: var(--text-primary);
}

/* Scroll Wrapper with Fade */
.tech-scroll-wrapper {
    overflow: hidden;
    position: relative;
    padding-top: 50px;
    padding-bottom: 5px;
}

.tech-scroll-wrapper::before,
.tech-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.tech-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--background), transparent);
}

.tech-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--background), transparent);
}

/* Scroll Track */
.tech-scroll-track {
    display: flex;
    gap: 56px;
    animation: techScroll 45s linear infinite;
    padding: 0 40px;
}

@keyframes techScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.tech-scroll-track:hover {
    animation-play-state: paused;
}

.tech-item {
    flex-shrink: 0;
    opacity: 0.25;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.tech-item:hover {
    opacity: 1;
}

.tech-item::after {
    content: attr(data-name);
    position: absolute;
    bottom: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background-color: var(--text-primary);
    color: white;
    padding: 6px 14px;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 100;
}

.tech-item:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.tech-item i {
    font-size: 2rem;
}

/* ══════════════════════════════════
   CTA
   ══════════════════════════════════ */
.cta-section {
    background: var(--gradient-primary);
    padding: var(--spacing-4xl) 0;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-md);
}

.cta-desc {
    font-size: var(--font-size-md);
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--spacing-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 14px 28px;
}

.cta-btn-primary:hover {
    background: var(--surface);
}

.cta-btn-primary::before {
    display: none;
}

.cta-btn-secondary {
    border-color: rgba(255,255,255,0.5);
    color: white;
}

.cta-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
}

/* ══════════════════════════════════
   RESPONSIVE — PROCESS STEPS
   ══════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 48px;
    }

    .process-step {
        border: 1px solid var(--border-color);
        border-radius: 2px;
        padding: 28px 20px;
    }

    .process-step:first-child,
    .process-step:last-child {
        border-radius: 2px;
    }

    .step-connector {
        display: none;
    }

    .step-number {
        font-size: 2rem;
    }

    /* Technologies tablet */
    .technologies-section {
        padding: 16px 0 24px;
    }

    .tech-content {
        padding: 8px 0;
    }

    .tech-header {
        padding: 0 32px;
    }

    .tech-header h2 {
        font-size: 1.375rem;
    }

    .tech-scroll-wrapper::before,
    .tech-scroll-wrapper::after {
        width: 80px;
    }

    .tech-scroll-track {
        gap: 48px;
        padding: 0 32px;
    }

    .tech-item i {
        font-size: 1.75rem;
    }

    /* Services tablet */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Testimonials tablet */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .testimonial-card {
        padding: 28px 22px;
        border: 1px solid var(--border-color);
    }

    .testimonial-card:nth-child(3n) {
        border-right: 1px solid var(--border-color);
    }

    .service-card {
        padding: 32px 24px;
    }

    .service-icon {
        width: 56px;
        height: 56px;
    }

    .service-features {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .process-section {
        padding: 50px 0;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .process-step {
        padding: 24px 20px;
    }

    .step-header {
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .step-number {
        font-size: 1.75rem;
    }

    .step-header h3 {
        font-size: 1rem;
    }

    .step-description {
        font-size: 0.8125rem;
    }

    .step-details li {
        font-size: 0.75rem;
    }

    /* Hero responsive */
    .hero-section {
        padding: 80px 0 50px 0;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-visual {
        order: -1;
    }
    .hero-img {
        max-width: 360px;
        margin: 0 auto;
    }
    .hero-content {
        text-align: center;
    }
    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-badge {
        margin-bottom: 20px;
    }
    .hero-title {
        font-size: 2rem;
    }
    /* Hero form — input və düymə alt-alta */
    .hero-form .input-group {
        flex-direction: column;
        border: none;
        gap: 12px;
    }
    .hero-form .input-group:focus-within {
        box-shadow: none;
    }
    .hero-form .input-group .form-input {
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        text-align: center;
    }
    .hero-form .input-group .form-input:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }
    .hero-form .input-group .btn-primary {
        border-radius: var(--radius-md);
        flex-basis: auto;
        max-width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    .form-meta {
        justify-content: center;
    }

    /* Services responsive */
    .services-section {
        padding: 50px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 28px 20px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
    }

    .service-title {
        font-size: 1.125rem;
    }

    .service-desc {
        font-size: 0.8125rem;
        margin-bottom: 20px;
    }

    .service-features {
        gap: 10px;
    }

    .service-features li {
        font-size: 0.75rem;
    }

    /* Technologies responsive */
    .technologies-section {
        padding: 14px 0 20px;
    }

    .tech-content {
        padding: 6px 0;
    }

    .tech-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 10px;
        padding: 0 20px;
    }

    .tech-header h2 {
        font-size: 1.25rem;
    }

    .view-tech-link {
        font-size: 0.8125rem;
    }

    .tech-scroll-wrapper::before,
    .tech-scroll-wrapper::after {
        width: 50px;
    }

    .tech-scroll-track {
        gap: 40px;
        padding: 0 20px;
    }

    .tech-item i {
        font-size: 1.5rem;
    }

    /* Testimonials responsive */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 24px 20px;
        border: 1px solid var(--border-color);
    }

    .testimonial-card:nth-child(3n) {
        border-right: 1px solid var(--border-color);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-section {
        padding: 70px 0 40px 0;
    }
    .hero-grid {
        gap: 24px;
    }
    .hero-img {
        max-width: 280px;
    }
    .hero-title {
        font-size: 1.75rem;
    }
    .hero-description {
        font-size: 0.9375rem;
        margin-bottom: 28px;
    }
    .hero-badge {
        margin-bottom: 16px;
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .process-section {
        padding: 40px 0;
    }

    .process-timeline {
        gap: 16px;
        margin-top: 32px;
    }

    .process-step {
        padding: 20px 16px;
    }

    .step-header {
        margin-bottom: 14px;
        padding-bottom: 14px;
    }

    .step-number {
        font-size: 1.5rem;
    }

    .step-header h3 {
        font-size: 0.9375rem;
    }

    .step-description {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    .step-details {
        gap: 8px;
    }

    .step-details li {
        font-size: 0.6875rem;
        gap: 6px;
    }

    .step-details li svg {
        width: 14px;
        height: 14px;
    }

    /* Services small mobile */
    .services-section {
        padding: 40px 0;
    }

    .service-card {
        padding: 24px 16px;
    }

    .service-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 18px;
    }

    .service-title {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .service-desc {
        font-size: 0.75rem;
        line-height: 1.5;
        margin-bottom: 18px;
    }

    .service-features {
        gap: 8px;
    }

    .service-features li {
        font-size: 0.6875rem;
        gap: 6px;
    }

    .service-features li svg {
        width: 14px;
        height: 14px;
    }

    /* Technologies small mobile */
    .technologies-section {
        padding: 12px 0 16px;
    }

    .tech-content {
        padding: 4px 0;
    }

    .tech-header {
        gap: 8px;
        margin-bottom: 8px;
        padding: 0 16px;
    }

    .tech-header h2 {
        font-size: 1.125rem;
    }

    .view-tech-link {
        font-size: 0.75rem;
    }

    .tech-scroll-wrapper::before,
    .tech-scroll-wrapper::after {
        width: 30px;
    }

    .tech-scroll-track {
        gap: 32px;
        padding: 0 16px;
    }

    .tech-item i {
        font-size: 1.375rem;
    }
}

/* ══════════════════════════════════
   CONSULTATION TOOLTIP
   ══════════════════════════════════ */
.consultation-tooltip-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.consultation-tooltip-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    padding: 0;
    border: none;
    background: none;
    color: var(--primary-color);
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.consultation-tooltip-btn:hover,
.consultation-tooltip-wrap.active .consultation-tooltip-btn {
    opacity: 1;
    color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.1);
}

.consultation-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 280px;
    background-color: var(--text-primary, #1e293b);
    color: white;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 0.8125rem;
    line-height: 1.6;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.consultation-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--text-primary, #1e293b);
}

.consultation-tooltip-wrap.active .consultation-tooltip {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.consultation-tooltip-content {
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Tooltip responsive */
@media (max-width: 768px) {
    .consultation-tooltip {
        width: 240px;
        left: auto;
        right: -10px;
        transform: translateX(0) translateY(8px);
    }

    .consultation-tooltip::after {
        left: auto;
        right: 16px;
        transform: none;
    }

    .consultation-tooltip-wrap.active .consultation-tooltip {
        transform: translateX(0) translateY(0);
    }
}

@media (max-width: 480px) {
    .consultation-tooltip {
        width: 220px;
        padding: 12px 14px;
        font-size: 0.75rem;
    }
}
