@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');

:root {
    --header-purple-main: #6a1b9a;
    --header-purple-dark: #4a0072;
    --header-purple-light-bg: #f3e5f5;
    --header-red-logo: #f04362;
    --header-text-primary: #111827;
    --header-text-secondary: #4b5563;
    --header-white: #ffffff;
    --header-grey-light: #f9fafb;
    --header-grey-border: #e5e7eb;
    --header-dotted-border-color: #d1d5db;
    --header-glass-bg: rgba(255, 255, 255, 0.4);
    --header-transition-speed: 0.35s;
    --header-transition-easing: cubic-bezier(0.23, 1, 0.32, 1);
}

body {
    font-family: 'Urbanist', sans-serif;
    margin: 0;
    background-color: #FFFFFF;
    color: #4A4A4A;
    overflow-x: hidden;
    padding-top: 80px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.header {
    opacity: 1 !important;
    visibility: visible !important;
    font-family: 'Inter', sans-serif;
    color: var(--header-text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--header-glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: fixed;
    border-bottom: 1px solid var(--header-grey-border);
    top: 0;
    z-index: 1002;
    width: 100%;
    min-height: 60px;
}

.header .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.header a, .header button {
    text-decoration: none;
    color: inherit;
    font-family: inherit;
    cursor: pointer;
}

.header ul { list-style: none; }
.header button { background: none; border: none; }

.header .navbar {
    display: flex;
    align-items: center;
    height: 80px;
    position: relative;
    padding: 0;
}

.header .logo {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-right: auto;
}

.header .logo img { width: 34px; height: 34px; }
.header .logo-text { color: var(--header-red-logo); }

.header .nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 16px;
}

.header .nav-item, .header .dropdown-item { position: relative; }

.header .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--header-text-secondary);
    padding: 10px 16px;
    border-radius: 8px;
    transition: all var(--header-transition-speed) ease;
    white-space: nowrap;
}

.header .nav-link:hover,
.header .dropdown-item.is-open .dropdown-toggle {
    color: var(--header-purple-main);
    background-color: var(--header-purple-light-bg);
}

.header .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header .dropdown-chevron {
    transition: transform var(--header-transition-speed) var(--header-transition-easing);
}

.header .dropdown-item.is-open .dropdown-chevron {
    transform: rotate(180deg);
}

.header .nav-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header .cta-button {
    background-color: var(--header-white);
    color: #5D2A7B;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid var(--header-purple-main);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--header-transition-speed) var(--header-transition-easing);
}

.header .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(106, 27, 154, 0.5);
}

.header .desktop-only { display: inline-flex; }

.header .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.header .hamburger-line {
    width: 24px;
    height: 2.5px;
    background-color: #374151;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center;
    border-radius: 1px;
}

.header .hamburger-line:nth-child(2) { margin: 5px 0; }

ma-header:empty {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--header-glass-bg);
    border-bottom: 1px solid var(--header-grey-border);
    z-index: 1001;
}

.apti-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.apti-section {
    padding: 6rem 0;
}

.apti-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.apti-heading-primary {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

.apti-heading-secondary {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

.apti-paragraph {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #555;
    max-width: 550px;
}

.apti-highlight-gradient {
    background: linear-gradient(87deg, #8253C2 18.3%, #F45346 80.97%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.apti-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.apti-btn-primary {
    background: #611F69;
    color: #fff;
}
.apti-btn-primary:hover {
    background: #4d1954;
    transform: translateY(-2px);
}

.apti-btn-secondary {
    background-color: #fff;
    color: #611F69;
    border-color: #ddd;
}
.apti-btn-secondary:hover {
    border-color: #611F69;
    transform: translateY(-2px);
}

.apti-btn-dark {
    background: #611F69;
    color: #fff;
}
.apti-btn-dark:hover {
    background-color: #4d1954;
    transform: translateY(-2px);
}

.apti-text-center {
    text-align: center;
}

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

.apti-animate-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.apti-animate-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.apti-hero-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.apti-hero-box {
    max-width: 1350px;
    margin: 0 auto;
    background: #F5F0FD;
    border-radius: 24px;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.apti-hero-flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.apti-hero-content {
    flex-basis: 50%;
    z-index: 10;
}

.apti-hero-assessed {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.apti-assessed-faces {
    display: flex;
}

.apti-assessed-faces img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: -15px;
    border: 2px solid #fff;
}

.apti-assessed-faces img:first-child {
    margin-left: 0;
}

.apti-hero-assessed p {
    margin: 0;
    font-weight: 500;
}

.apti-hero-image-area {
    flex-basis: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.apti-hero-bg-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.apti-hero-bg-circles .circle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(206, 186, 209, 0.2);
    top: 70%;
    left: 85%;
    transform: translate(-50%, -50%);
}

.apti-hero-bg-circles .circle-1 {
    width: 900px;
    height: 900px;
    opacity: 0.34;
    background: #CEBAD1;
}

.apti-hero-bg-circles .circle-2 {
    width: 700px;
    height: 700px;
    opacity: 0.34;
    background: #CEBAD1;
}

.apti-hero-bg-circles .circle-3 {
    width: 500px;
    height: 500px;
    opacity: 0.34;
    background: #CEBAD1;
}

.apti-hero-main-img {
    max-width: 400px;
    position: relative;
    top:50px;
    z-index: 5;
}

.apti-hero-icon {
    position: absolute;
    z-index: 6;
    animation: floatAnimation 4s ease-in-out infinite;
}
.apti-hero-icon-1 { top: -2%; left: 10%; width: 100px; animation-delay: 0.5s; }
.apti-hero-icon-2 { top: 2%; right: 3%; width: 180px; animation-delay: 1s; }

.apti-skill-tag {
    position: absolute;
    background: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    font-weight: 600;
    z-index: 10;
    animation: floatAnimation 4s ease-in-out infinite;
}
.apti-skill-tag-1 { top: 20%; left: 0; animation-delay: 0s; }
.apti-skill-tag-2 { top: 25%; right: 0; animation-delay: 1.5s; }
.apti-skill-tag-3 { bottom: 35%; left: -5%; animation-delay: 0.5s; }
.apti-skill-tag-4 { bottom: 20%; right: -10%; animation-delay: 1s; }
.apti-skill-tag-5 { bottom: 5%; left: 5%; animation-delay: 2s; }


.apti-analytical-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
    align-items: start;
}

.apti-analytical-column .apti-list {
    margin-top: 1.5rem;
}

.apti-analytical-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #EFE9F0;
}


.apti-best-bg-section{
    background: #f2effc;
}

.apti-benefits-image-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.apti-benefits-main-img {
    max-width: 350px;
    position: relative;
    z-index: 5;
}
.apti-benefit-tag-1 { top: 5%; left: 0; animation-delay: 0s; }
.apti-benefit-tag-2 { top: 10%; right: 0; animation-delay: 1.5s; }
.apti-benefit-tag-3 { top: 45%; right: -5%; animation-delay: 0.5s; }
.apti-benefit-tag-4 { bottom: 10%; right: 0; animation-delay: 1s; }
.apti-benefit-tag-5 { bottom: 15%; left: -10%; animation-delay: 2s; }


.apti-best-bg-circles {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.apti-best-bg-circles .circles {
    position: absolute;
    border-radius: 50%;
    background:#611F69;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.apti-best-bg-circles .circles-1 {
    width: 380px;
    height: 380px;
    opacity: 0.1;
    background: #611F69;
}
.apti-best-bg-circles .circles-2 {
    width: 300px;
    height: 300px;
    opacity: 0.1;
    background:#611F69;
}

.apti-best-bg-circles .circles-3 {
    width: 200px;
    height: 200px;
    opacity: 0.1;
    background: #611F69;
}

.best-apti-grid {
    align-items: start;
}
.best-apti-grid .apti-benefits-image-area {
    grid-column: 1;
    grid-row: 1 / 3;
}
.best-apti-grid .apti-heading-secondary {
    grid-column: 2;
    grid-row: 1;
}
.best-apti-grid .apti-paragraph {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
}


.apti-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.apti-list-item {
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}


.apti-measure-image-wrapper {
    position: relative;
    height: 450px;
}
.apti-measure-card {
    position: absolute;
    border-radius: 16px;
    width: 80%;
    transition: transform 0.4s ease-in-out;
}
.apti-measure-card-1 { top: 0; left: 0; transform: rotate(-8deg); z-index: 1; }
.apti-measure-card-2 { top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(2deg); z-index: 2; }
.apti-measure-card-3 { bottom: 0; right: 0; transform: rotate(10deg); z-index: 3; }
.apti-measure-image-wrapper:hover .apti-measure-card-1 { transform: rotate(-12deg) scale(1.05) translateX(-20px); }
.apti-measure-image-wrapper:hover .apti-measure-card-2 { transform: translate(-50%, -50%) rotate(0deg) scale(1.05); }
.apti-measure-image-wrapper:hover .apti-measure-card-3 { transform: rotate(15deg) scale(1.05) translateX(20px); }

.apti-banner {
    background: #EFE9F0;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}
.apti-banner p {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #5B0D5C;
}
.apti-banner-buttons {
    display: flex;
    gap: 1rem;
}


.apti-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}
.apti-type-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.apti-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}
.apti-type-card svg {
    margin-bottom: 1.5rem;
}

.apti-type-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #333;
}
.apti-type-card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}


.apti-dark-purple-bg {
    background: #833AAF;
}
.apti-why-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}
.apti-why-header .apti-heading-secondary {
    flex-basis: 60%;
    margin: 0;
}
.apti-why-header .apti-subheading-white {
    flex-basis: 55%;
    margin: 0;
    max-width: none;
}
.apti-text-white {
    color: #fff;
}
.apti-subheading-white {
    color: #E9D5FF;
    font-size: 1.125rem;
    line-height: 1.7;
}
.apti-stats-box {
    background-color: #fff;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.apti-stat-item {
    padding: 1rem;
    text-align: center;
    position: relative;
}
.apti-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background-color: #e5e7eb;
}
.apti-stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: #66A349;
}
.apti-stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #444;
    margin-top: 0.5rem;
    display: block;
}

.apti-cta-box {
    max-width: 1350px;
    margin: 0 auto;
    background: linear-gradient(35deg, rgba(225, 244, 255, 0.60) 12%, rgba(249, 225, 255, 0.80) 27%, rgba(255, 230, 233, 0.60) 100%);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
}
.apti-cta-heading {
    font-size: 2.5rem;
    max-width: 800px;
    margin: 0 auto 1rem auto;
}
.apti-cta-subheading {
    color: #555;
    font-size: 1.2rem;
    margin: 0 auto 2rem auto;
}

@media (max-width: 992px) {
    .apti-grid-2col {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .apti-hero-flex-container {
        flex-direction: column;
        text-align: center;
    }
    .apti-hero-box {
        padding: 2rem;
    }

    .apti-heading-primary{
        font-size: 2.2rem;
    }
    .apti-heading-secondary {
        font-size: 2rem;
    }

    .apti-hero-content {
        order: 1;
    }
    .apti-hero-image-area {
        order: 2;
        margin-top: 4rem;
    }

    .apti-hero-assessed {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .apti-paragraph {
        margin-left: auto;
        margin-right: auto;
    }

    .best-apti-grid {
        align-items: center;
    }
    .best-apti-grid .apti-benefits-image-area,
    .best-apti-grid .apti-heading-secondary,
    .best-apti-grid .apti-paragraph {
        grid-column: 1;
        grid-row: auto;
    }
    .best-apti-grid .apti-heading-secondary {
        order: 1;
    }
    .best-apti-grid .apti-benefits-image-area {
        order: 2;
    }
    .best-apti-grid .apti-paragraph {
        order: 3;
    }

    .apti-skill-tag { display: none; }
    
    .apti-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .apti-stats-box {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .apti-banner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .apti-why-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    .apti-stat-item {
        padding: 1.5rem 1rem;
    }
    .apti-stat-item:not(:last-child)::after {
        display: none;
    }
    .apti-stat-item:not(:last-child) {
        border-bottom: 1px solid #e5e7eb;
    }
}

@media (max-width: 768px) {
    .apti-heading-primary { font-size: 2.25rem; }
    .apti-heading-secondary { font-size: 2rem; }
    .apti-section { padding: 3rem 0; }
    .apti-container { padding: 0 1.5rem; }
    
    .apti-hero-image-area { 
        margin-top: 2rem;
    }
    
    .apti-analytical-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .apti-analytical-column {
        text-align: left;
    }
    .apti-types-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .apti-type-card {
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }

    .apti-banner p { font-size: 1.1rem; }
    .apti-banner-buttons { flex-direction: column; width: 100%;}
    .apti-btn { width: 100%; box-sizing: border-box; text-align: center;}

    .apti-why-header .apti-subheading-white {
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 767px) {
    *,
    *::before,
    *::after {
        animation-duration: 0s !important;
        animation-delay: 0s !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    .header .container { padding: 0 16px; }
    .header .navbar { height: 70px; }
    .header .nav-menu { display: none; }
    .header .desktop-only { display: none !important; }
    .header .mobile-menu-toggle { display: flex; }
    .header .logo { font-size: 20px; }
    .header .logo img { width: 28px; height: 28px; }

    ma-header:empty { height: 70px; }
    body { padding-top: 70px; }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
    .header .container { padding: 0 20px; }

    .header .nav-menu { display: none; }
    .header .desktop-only { display: none !important; }
    .header .mobile-menu-toggle { display: flex; }

    .hero-section h1 { font-size: 2.5rem; line-height: 1.2; }
    .hero-section p { font-size: 1.1rem; margin-bottom: 2rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .testimonials-wrapper { max-width: 90%; }
    .image-container { padding-left: 2rem; }
}

@media screen and (max-width: 388px) {
    .header .container {
        padding: 0 12px;
    }

    .hero-section h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-section p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 12px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 12px;
    }

    .testimonials-wrapper {
        max-width: 100%;
        padding: 0 12px;
    }

    .container,
    .hero-container,
    .section-container {
        padding-left: 12px;
        padding-right: 12px;
        max-width: 100%;
    }

    .btn,
    .cta-button {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
        text-align: center;
    }

    .image-container {
        padding: 0;
        margin: 1rem 0;
    }

    .section-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .section-subtitle {
        font-size: 0.9rem;
        text-align: center;
        max-width: 100%;
    }

    .header .mobile-menu-list li a {
        padding: 6px 10px;
        font-size: 13px;
    }

    .header .mobile-group-title {
        font-size: 14px;
        padding: 12px 0 8px;
    }

    .header .mobile-cta-section {
        padding: 16px 12px;
    }

    .header .mobile-cta-button {
        padding: 10px 16px;
        font-size: 14px;
    }
}

.apti-faq {
    background-color: #fafafa;
    padding: 80px 0;
}

.apti-faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
}

.apti-faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(15px);
}

.apti-faq-item.faq-visible {
    opacity: 1;
    transform: translateY(0);
}

.apti-faq-item[open] {
    box-shadow: 0 4px 20px rgba(106, 27, 154, 0.1);
    border-color: #6A1B9A;
}

.apti-faq-item summary {
    padding: 18px 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.apti-faq-item[open] summary {
    color: #6A1B9A;
}

.apti-faq-item summary::-webkit-details-marker {
    display: none;
}

.apti-faq-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    background: #f0f0f0;
    border-radius: 50%;
    position: relative;
    transition: transform 0.3s ease, background 0.3s ease;
}

.apti-faq-icon::before,
.apti-faq-icon::after {
    content: '';
    position: absolute;
    background: #555;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background 0.3s ease;
}

.apti-faq-icon::before {
    width: 12px;
    height: 2px;
}

.apti-faq-icon::after {
    width: 2px;
    height: 12px;
}

.apti-faq-item[open] .apti-faq-icon {
    transform: rotate(45deg);
    background: #6A1B9A;
}

.apti-faq-item[open] .apti-faq-icon::before,
.apti-faq-item[open] .apti-faq-icon::after {
    background: #fff;
}

.apti-faq-item p {
    padding: 0 20px 18px;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .apti-faq-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .apti-faq {
        padding: 50px 0;
    }

    .apti-faq-item summary {
        padding: 16px;
        font-size: 14px;
    }

    .apti-faq-item p {
        padding: 0 16px 16px;
        font-size: 13px;
    }
}