/* ═══════════════════════════════════════════
   FRONTEND BESPOKE & AVANT-GARDE STYLES
   "Intentional Minimalism" applied to integration pages.
   ═══════════════════════════════════════════ */

/* Integration Hero Section */
.int-hero {
    position: relative;
    padding: 120px 0 100px;
    background: #0f172a; /* Dark sleek background */
    color: #fff;
    overflow: hidden;
}

.int-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: var(--int-color);
    filter: blur(160px);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
    animation: float 10s ease-in-out infinite alternate;
}

@keyframes float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(40px) scale(1.05); }
}

.int-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.int-hero__content {
    max-width: 600px;
}

.int-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--int-color);
    margin-bottom: 24px;
}

.int-hero__title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.int-hero__title span {
    background: var(--int-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.int-hero__desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
}

/* Glassmorphism integration logo box */
.int-hero__visual {
    position: relative;
    height: 400px;
    border-radius: 32px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    overflow: hidden;
}

.int-hero__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.int-hero__logo {
    width: 200px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.int-hero__visual:hover .int-hero__logo {
    transform: scale(1.05);
}

/* Specific Feature Grid */
.int-features {
    padding: 100px 0;
    background: var(--se-bg);
}

.int-features__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.int-features__title {
    font-size: 28px;
    font-weight: 800;
    color: var(--se-text);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.int-features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.int-feat-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.int-feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--int-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.int-feat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.int-feat-card:hover::before {
    transform: scaleX(1);
}

.int-feat-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(var(--int-color-rgb), 0.1);
    color: var(--int-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.int-feat-card__title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--se-text);
}

.int-feat-card__desc {
    font-size: 14px;
    color: var(--se-text-secondary);
    line-height: 1.6;
}

/* FAQ Section */
.int-faq {
    padding: 100px 0;
    background: #fff;
}

.int-faq__inner {
    max-width: 800px;
    margin: 0 auto;
}

.int-faq__title {
    font-size: 26px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
}

.int-faq__item {
    border-bottom: 1px solid var(--se-border);
}

.int-faq__q {
    padding: 24px 0;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.int-faq__q:hover {
    color: var(--int-color);
}

.int-faq__a {
    padding: 0 0 24px 0;
    font-size: 16px;
    color: var(--se-text-secondary);
    line-height: 1.6;
    display: none;
}

.int-faq__item.active .int-faq__a {
    display: block;
    animation: fadeIn 0.4s ease;
}

.int-faq__item.active .int-faq__q i {
    transform: rotate(180deg);
}

.int-faq__q i {
    transition: transform 0.3s ease;
    color: var(--se-text-muted);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* General Pages Minimal Setup */
.page-hero {
    padding: 120px 0 80px;
    background: var(--se-bg);
    text-align: center;
}

.page-hero__title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: var(--se-text);
}

.page-hero__desc {
    font-size: 16px;
    color: var(--se-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 60px 0;
    background: #fff;
    font-size: 15px;
    color: var(--se-text-secondary);
    line-height: 1.7;
}

.page-content__inner {
    max-width: 800px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 22px;
    color: var(--se-text);
    margin: 32px 0 16px;
    font-weight: 700;
}

.page-content p {
    margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 991px) {
    .int-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .int-hero__content {
        margin: 0 auto;
    }
    .int-features__grid {
        grid-template-columns: 1fr;
    }
    .int-hero__title { font-size: 40px; }
    .page-hero__title { font-size: 36px; }
}
