/* Integrations Page CSS */
.int-container { max-width: 1400px; margin: 0 auto; padding: 20px 24px; }
.int-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.int-header-left h2 { font-size: 16px; font-weight: 700; color: #111827; display: inline-block; margin-right: 8px; }
.int-breadcrumb { font-size: 11px; color: #6b7280; }
.int-btn-outline { border: 1px solid #e5e7eb; background: #fff; padding: 6px 14px; border-radius: 6px; font-size: 11px; font-weight: 600; color: #374151; cursor: pointer; transition: 0.2s; }
.int-btn-outline:hover { background: #f9fafb; }
.int-btn-primary { background: #3b82f6; border: none; padding: 8px 20px; border-radius: 6px; font-size: 12px; font-weight: 600; color: #fff; cursor: pointer; transition: 0.2s; }
.int-btn-primary:hover { background: #2563eb; }

/* Grid */
.int-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1024px) { .int-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .int-grid { grid-template-columns: 1fr; } }

/* Integration Card */
.int-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; margin-bottom: 24px; overflow: hidden; }
.int-card-body { padding: 20px; }
.int-item-card { border: 1px solid #e5e7eb; border-radius: 10px; padding: 18px; position: relative; transition: box-shadow 0.2s; }
.int-item-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.int-item-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.int-item-logo { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.int-item-opts { color: #9ca3af; font-size: 14px; cursor: pointer; }
.int-item-name { font-size: 13px; font-weight: 700; color: #111827; margin-bottom: 4px; }
.int-item-desc { font-size: 11px; color: #6b7280; line-height: 1.5; margin-bottom: 14px; }
.int-item-footer { display: flex; justify-content: space-between; align-items: center; }
.int-connect-btn { font-size: 10px; font-weight: 600; color: #6b7280; border: 1px solid #e5e7eb; background: #fff; padding: 4px 12px; border-radius: 4px; cursor: pointer; transition: 0.2s; }
.int-connect-btn:hover { background: #f3f4f6; }
.int-connect-btn.connected { color: #166534; border-color: #dcfce7; background: #f0fdf4; }

/* Toggle */
.int-toggle { position: relative; display: inline-block; width: 32px; height: 18px; }
.int-toggle input { opacity: 0; width: 0; height: 0; }
.int-toggle span { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #e5e7eb; transition: .3s; border-radius: 34px; }
.int-toggle span:before { position: absolute; content: ""; height: 14px; width: 14px; left: 2px; bottom: 2px; background: white; transition: .3s; border-radius: 50%; }
.int-toggle input:checked + span { background-color: #3b82f6; }
.int-toggle input:checked + span:before { transform: translateX(14px); }

/* Hero */
.int-hero-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 48px 24px; text-align: center; margin-bottom: 24px; }
.int-hero-img { width: 120px; height: auto; margin-bottom: 16px; }
.int-hero-title { font-size: 18px; font-weight: 700; color: #111827; margin-bottom: 8px; }
.int-hero-desc { font-size: 12px; color: #6b7280; line-height: 1.6; max-width: 480px; margin: 0 auto 20px; }

/* FAQ */
.int-card-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; border-bottom: 1px solid #e5e7eb; }
.int-card-title { font-size: 14px; font-weight: 700; color: #111827; }
.int-faq-title { font-size: 14px; font-weight: 700; color: #111827; margin-bottom: 16px; }
.int-faq-item { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid #f3f4f6; cursor: pointer; }
.int-faq-item:last-child { border-bottom: none; }
.int-faq-q { font-size: 12px; font-weight: 500; color: #374151; }
.int-faq-icon { color: #9ca3af; font-size: 13px; }
.int-faq-item:hover .int-faq-q { color: #111827; }

/* Illus grid */
.int-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 640px) { .int-grid-2 { grid-template-columns: 1fr; } }
.int-illus-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 24px; display: flex; flex-direction: column; position: relative; overflow: hidden; min-height: 175px; }
.int-illus-card-title { font-size: 14px; font-weight: 700; color: #111827; margin-bottom: 10px; }
.int-illus-card p { font-size: 11px; color: #6b7280; line-height: 1.5; margin-bottom: 20px; max-width: 55%; }
.int-illus-card a { font-size: 10px; font-weight: 700; color: #3b82f6; text-transform: uppercase; text-decoration: none; }
.int-illus-img { position: absolute; right: 16px; bottom: 16px; width: 140px; height: auto; }
