/* =========================================================
   GIREMRUS — Brand Landing Page CSS
   ========================================================= */

.girem-brand-landing {
	font-family: var(--girem-font-family, 'Inter', system-ui, sans-serif);
	color: #0f172a;
}

.girem-brand-landing__h2 {
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-weight: 700;
	color: #111827;
	margin: 0 0 20px;
	line-height: 1.25;
}

/* ---------- Overview / intro ---------- */
.girem-brand-landing__overview {
	padding: 40px 0 32px;
	border-bottom: 1px solid #e5e7eb;
}

.girem-brand-landing__intro {
	font-size: 1rem;
	line-height: 1.7;
	color: #374151;
	max-width: 68ch;
	margin: 0 0 32px;
}

/* ---------- Categories grid ---------- */
.girem-brand-landing__cats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
}

.girem-brand-landing__cat-card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 20px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.girem-brand-landing__cat-card:hover {
	border-color: #c4b5fd;
	box-shadow: 0 4px 16px rgba(73, 51, 209, 0.1);
}

.girem-brand-landing__cat-icon {
	font-size: 1.75rem;
	line-height: 1;
	margin-bottom: 4px;
}

.girem-brand-landing__cat-title {
	font-size: .9375rem;
	font-weight: 700;
	color: #111827;
	line-height: 1.3;
}

.girem-brand-landing__cat-desc {
	font-size: .8125rem;
	color: #6b7280;
	margin: 0;
	line-height: 1.5;
}

/* ---------- Benefits ---------- */
.girem-brand-landing__benefits {
	padding: 40px 0;
	border-bottom: 1px solid #e5e7eb;
}

.girem-brand-landing__benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
}

.girem-brand-landing__benefit {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 20px;
	background: #f5f3ff;
	border: 1px solid #ddd6fe;
	border-radius: 14px;
}

.girem-brand-landing__benefit-icon {
	font-size: 1.5rem;
	line-height: 1;
}

.girem-brand-landing__benefit strong {
	font-size: .9375rem;
	font-weight: 700;
	color: #111827;
	line-height: 1.3;
}

.girem-brand-landing__benefit p {
	font-size: .8125rem;
	color: #6b7280;
	margin: 0;
	line-height: 1.55;
}

/* ---------- Analog table ---------- */
.girem-brand-landing__analogs {
	padding: 40px 0;
	border-bottom: 1px solid #e5e7eb;
}

.girem-brand-landing__analogs-lead {
	font-size: .9375rem;
	color: #374151;
	margin: 0 0 20px;
	max-width: 64ch;
}

.girem-brand-landing__analog-table-wrap {
	overflow-x: auto;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	margin-bottom: 16px;
}

.girem-brand-landing__analog-table {
	width: 100%;
	border-collapse: collapse;
	font-size: .9rem;
}

.girem-brand-landing__analog-table th {
	text-align: left;
	padding: 12px 16px;
	background: #f1f5f9;
	font-weight: 700;
	font-size: .8125rem;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: #64748b;
	border-bottom: 1px solid #e5e7eb;
}

.girem-brand-landing__analog-table td {
	padding: 12px 16px;
	border-bottom: 1px solid #f1f5f9;
	color: #374151;
	vertical-align: top;
}

.girem-brand-landing__analog-table tr:last-child td {
	border-bottom: 0;
}

.girem-brand-landing__analog-table tr:hover td {
	background: #f5f3ff;
}

.girem-brand-landing__analogs-cta-text {
	font-size: .9rem;
	color: #6b7280;
	margin: 0;
}

.girem-brand-landing__analogs-cta-text a {
	color: #4933d1;
	font-weight: 600;
	text-decoration: none;
}

.girem-brand-landing__analogs-cta-text a:hover {
	text-decoration: underline;
}

/* ---------- FAQ ---------- */
.girem-brand-landing__faq {
	padding: 40px 0;
	border-bottom: 1px solid #e5e7eb;
}

.girem-brand-landing__faq-list {
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
}

.girem-brand-landing__faq-item + .girem-brand-landing__faq-item {
	border-top: 1px solid #e5e7eb;
}

.girem-brand-landing__faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 18px 20px;
	background: #fff;
	border: 0;
	font-family: inherit;
	font-size: .9375rem;
	font-weight: 600;
	color: #111827;
	text-align: left;
	cursor: pointer;
	transition: background 0.15s;
}

.girem-brand-landing__faq-q:hover {
	background: #f5f3ff;
}

.girem-brand-landing__faq-chevron {
	flex-shrink: 0;
	font-size: .875rem;
	color: #4933d1;
	transition: transform 0.2s;
}

.girem-brand-landing__faq-q[aria-expanded="true"] .girem-brand-landing__faq-chevron {
	transform: rotate(180deg);
}

.girem-brand-landing__faq-a {
	padding: 0 20px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.25s ease, padding 0.25s ease;
}

.girem-brand-landing__faq-a[aria-hidden="false"] {
	max-height: 500px;
	padding: 4px 20px 18px;
}

.girem-brand-landing__faq-a p {
	margin: 0;
	font-size: .9rem;
	line-height: 1.65;
	color: #374151;
}

/* ---------- CTA strip ---------- */
.girem-brand-landing__cta {
	margin: 40px 0 0;
	border-radius: 18px;
	background: linear-gradient(135deg, #1e1b4b 0%, #312e81 60%, #3b27b8 100%);
	padding: 36px 32px;
}

.girem-brand-landing__cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.girem-brand-landing__cta-title {
	font-size: clamp(1.1rem, 2vw, 1.5rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 6px;
	line-height: 1.2;
}

.girem-brand-landing__cta-text {
	font-size: .9375rem;
	color: rgba(255, 255, 255, .8);
	margin: 0;
}

.girem-brand-landing__cta-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	flex-shrink: 0;
}

.girem-brand-landing__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	border-radius: 10px;
	font-size: .9375rem;
	font-weight: 600;
	font-family: inherit;
	text-decoration: none;
	border: 2px solid transparent;
	transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.1s;
	white-space: nowrap;
}

.girem-brand-landing__btn--primary {
	background: #fff;
	color: #4933d1;
	border-color: #fff;
}

.girem-brand-landing__btn--primary:hover {
	background: #ede9ff;
	color: #3b27b8;
	transform: translateY(-1px);
}

.girem-brand-landing__btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, .4);
}

.girem-brand-landing__btn--ghost:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, .08);
	transform: translateY(-1px);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
	.girem-brand-landing__cta { padding: 28px 20px; }
	.girem-brand-landing__cta-inner { flex-direction: column; align-items: flex-start; }
	.girem-brand-landing__cats-grid,
	.girem-brand-landing__benefits-grid { grid-template-columns: 1fr 1fr; }
	.girem-brand-landing__analog-table th,
	.girem-brand-landing__analog-table td { padding: 10px 12px; }
}

@media (max-width: 480px) {
	.girem-brand-landing__cats-grid,
	.girem-brand-landing__benefits-grid { grid-template-columns: 1fr; }
	.girem-brand-landing__cta-btns { flex-direction: column; width: 100%; }
	.girem-brand-landing__btn { width: 100%; text-align: center; }
}

/* =========================================================
   BRAND V2 — Enterprise brand landing (girem-brand-v2__*)
   ========================================================= */

.girem-brand-v2 {
	font-family: 'Inter', system-ui, sans-serif;
	color: #0f172a;
}

/* ── Layout helpers ── */
.girem-brand-v2__section {
	padding: 48px 24px;
	max-width: 1200px;
	margin: 0 auto;
}

.girem-brand-v2__section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 28px;
	flex-wrap: wrap;
}

.girem-brand-v2__h2 {
	font-size: clamp(1.2rem, 2.5vw, 1.75rem);
	font-weight: 700;
	color: #111827;
	margin: 0 0 28px;
	line-height: 1.2;
}
.girem-brand-v2__section-head .girem-brand-v2__h2 { margin-bottom: 0; }

.girem-brand-v2__see-all {
	font-size: .875rem;
	font-weight: 600;
	color: #4933d1;
	text-decoration: none;
	white-space: nowrap;
}
.girem-brand-v2__see-all:hover { text-decoration: underline; }

/* ── 1. HERO ── */
.girem-brand-v2__hero {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, var(--brand-color, #4933d1) 100%);
	color: #fff;
	padding: 64px 24px;
}

.girem-brand-v2__hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 48px;
	align-items: center;
}

.girem-brand-v2__hero-content { flex: 1; }

.girem-brand-v2__hero-logo {
	margin-bottom: 24px;
}
.girem-brand-v2__hero-logo img {
	max-width: 200px;
	max-height: 64px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.girem-brand-v2__hero-logo-text {
	font-size: 2.5rem;
	font-weight: 800;
	letter-spacing: -.02em;
	margin-bottom: 24px;
}

.girem-brand-v2__hero-title {
	font-size: clamp(1.4rem, 3vw, 2.25rem);
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	margin: 0 0 28px;
}

.girem-brand-v2__hero-stats {
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}

.girem-brand-v2__hero-stat {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.girem-brand-v2__hero-stat strong {
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	line-height: 1;
}
.girem-brand-v2__hero-stat span {
	font-size: .75rem;
	color: rgba(255,255,255,.65);
	line-height: 1.3;
}

.girem-brand-v2__hero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.girem-brand-v2__hero-image {
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: .7;
}

/* ── 2. ABOUT ── */
.girem-brand-v2__about {
	background: #f8f7ff;
	padding: 56px 24px;
	border-bottom: 1px solid #e8e5f8;
}

.girem-brand-v2__about-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 48px;
	align-items: start;
}

.girem-brand-v2__about-intro {
	font-size: 1rem;
	line-height: 1.7;
	color: #1e293b;
	margin: 0 0 16px;
}
.girem-brand-v2__about-body {
	font-size: .95rem;
	line-height: 1.7;
	color: #374151;
	margin: 0 0 24px;
}
.girem-brand-v2__about-cta { margin-top: 8px; }

.girem-brand-v2__about-facts {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.girem-brand-v2__about-fact {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.girem-brand-v2__about-fact-icon {
	width: 32px;
	height: 32px;
	background: #ede9fe;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #4933d1;
}
.girem-brand-v2__about-fact > div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.girem-brand-v2__about-fact strong {
	font-size: .8rem;
	font-weight: 600;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: .04em;
}
.girem-brand-v2__about-fact span {
	font-size: .9rem;
	color: #111827;
	font-weight: 500;
}

/* ── 3. CATEGORIES ── */
.girem-brand-v2__cats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 16px;
}

.girem-brand-v2__cat-card {
	display: flex;
	flex-direction: column;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: border-color .2s, box-shadow .2s, transform .2s;
}
.girem-brand-v2__cat-card:hover {
	border-color: #4933d1;
	box-shadow: 0 4px 20px rgba(73,51,209,.12);
	transform: translateY(-2px);
}

.girem-brand-v2__cat-media {
	height: 120px;
	background: #f8f7ff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
}
.girem-brand-v2__cat-media img {
	max-width: 100%;
	max-height: 96px;
	object-fit: contain;
}

.girem-brand-v2__cat-body {
	padding: 12px 16px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.girem-brand-v2__cat-body strong {
	font-size: .875rem;
	font-weight: 600;
	color: #111827;
	line-height: 1.3;
}
.girem-brand-v2__cat-body span {
	font-size: .75rem;
	color: #6b7280;
}

/* ── 4. BENEFITS ── */
.girem-brand-v2__benefits-section {
	background: #f8fafc;
	max-width: 100%;
	padding: 56px 24px;
}
.girem-brand-v2__benefits-section .girem-brand-v2__h2 {
	color: #111827;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.girem-brand-v2__benefits-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 20px;
}

.girem-brand-v2__benefit {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.girem-brand-v2__benefit-icon {
	width: 40px;
	height: 40px;
	background: rgba(73,51,209,.12);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #4933d1;
}
.girem-brand-v2__benefit strong {
	font-size: .9rem;
	font-weight: 700;
	color: #111827;
}
.girem-brand-v2__benefit p {
	font-size: .85rem;
	line-height: 1.6;
	color: #6b7280;
	margin: 0;
}

/* ── 5. SERIES ── */
.girem-brand-v2__series-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
}

.girem-brand-v2__series-card {
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 20px;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	gap: 8px;
	transition: border-color .2s, box-shadow .2s;
}
.girem-brand-v2__series-card:hover {
	border-color: #4933d1;
	box-shadow: 0 4px 16px rgba(73,51,209,.1);
}

.girem-brand-v2__series-name {
	font-size: 1rem;
	font-weight: 700;
	color: #111827;
}
.girem-brand-v2__series-desc {
	font-size: .85rem;
	line-height: 1.5;
	color: #4b5563;
	margin: 0;
}
.girem-brand-v2__series-count {
	font-size: .75rem;
	font-weight: 600;
	color: #4933d1;
	margin-top: auto;
}

/* ── 6. PRODUCTS TABLE ── */
.girem-brand-v2__products-table-wrap {
	overflow-x: auto;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
}

.girem-brand-v2__products-table {
	width: 100%;
	border-collapse: collapse;
	font-size: .875rem;
}
.girem-brand-v2__products-table th {
	background: #f9fafb;
	padding: 12px 16px;
	text-align: left;
	font-weight: 600;
	color: #374151;
	border-bottom: 1px solid #e5e7eb;
	white-space: nowrap;
}
.girem-brand-v2__products-table td {
	padding: 14px 16px;
	border-bottom: 1px solid #f3f4f6;
	color: #374151;
	vertical-align: middle;
}
.girem-brand-v2__products-table tr:last-child td { border-bottom: 0; }
.girem-brand-v2__products-table tr:hover td { background: #f8f7ff; }

.girem-brand-v2__product-name a {
	font-weight: 600;
	color: #111827;
	text-decoration: none;
}
.girem-brand-v2__product-name a:hover { color: #4933d1; }

.girem-brand-v2__product-btn {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 6px;
	border: 1px solid #4933d1;
	color: #4933d1;
	font-size: .8rem;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	transition: background .15s, color .15s;
}
.girem-brand-v2__product-btn:hover { background: #4933d1; color: #fff; }

/* ── 7. ANALOGS ── */
.girem-brand-v2__analogs-section { background: #fff; }
.girem-brand-v2__analogs-lead {
	font-size: .95rem;
	color: #374151;
	line-height: 1.6;
	margin: -12px 0 24px;
	max-width: 60ch;
}

.girem-brand-v2__analogs-wrap {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 32px;
	align-items: start;
}

.girem-brand-v2__analogs-table-wrap {
	overflow-x: auto;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
}
.girem-brand-v2__analogs-table {
	width: 100%;
	border-collapse: collapse;
	font-size: .875rem;
}
.girem-brand-v2__analogs-table th {
	background: #f9fafb;
	padding: 12px 16px;
	text-align: left;
	font-weight: 600;
	color: #374151;
	border-bottom: 1px solid #e5e7eb;
}
.girem-brand-v2__analogs-table td {
	padding: 14px 16px;
	border-bottom: 1px solid #f3f4f6;
	color: #374151;
	vertical-align: top;
}
.girem-brand-v2__analogs-table tr:last-child td { border-bottom: 0; }
.girem-brand-v2__analog-name { font-weight: 600; color: #111827; }
.girem-brand-v2__analog-reason { font-size: .8rem; color: #6b7280; }

.girem-brand-v2__analogs-cta {
	background: #f8f7ff;
	border: 1px solid #ddd6fe;
	border-radius: 12px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.girem-brand-v2__analogs-cta-icon {
	width: 56px; height: 56px;
	background: #ede9fe;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.girem-brand-v2__analogs-cta strong {
	font-size: .95rem;
	font-weight: 700;
	color: #111827;
}
.girem-brand-v2__analogs-cta p {
	font-size: .875rem;
	line-height: 1.6;
	color: #374151;
	margin: 0;
}
.girem-brand-v2__analogs-cta ul {
	margin: 0;
	padding: 0 0 0 18px;
}
.girem-brand-v2__analogs-cta li {
	font-size: .85rem;
	color: #374151;
	margin-bottom: 4px;
}

/* ── 8. DOCS ── */
.girem-brand-v2__docs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 16px;
}

.girem-brand-v2__doc-card {
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px 20px;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: border-color .2s, box-shadow .2s;
}
.girem-brand-v2__doc-card:hover {
	border-color: #4933d1;
	box-shadow: 0 4px 16px rgba(73,51,209,.1);
}
.girem-brand-v2__doc-icon {
	width: 48px; height: 48px;
	background: #ede9fe;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #4933d1;
}
.girem-brand-v2__doc-card strong {
	font-size: .9rem;
	font-weight: 600;
	color: #111827;
	line-height: 1.3;
}
.girem-brand-v2__doc-card span {
	font-size: .8rem;
	color: #6b7280;
}

/* ── 9. FAQ ── */
.girem-brand-v2__faq-section { background: #f9fafb; max-width: 100%; padding: 56px 24px; }
.girem-brand-v2__faq-section .girem-brand-v2__h2 {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.girem-brand-v2__faq-list {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
}

.girem-brand-v2__faq-item { border-bottom: 1px solid #e5e7eb; }
.girem-brand-v2__faq-item:last-child { border-bottom: 0; }

.girem-brand-v2__faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 18px 24px;
	background: #fff;
	border: 0;
	text-align: left;
	font-size: .95rem;
	font-weight: 600;
	color: #111827;
	cursor: pointer;
	transition: background .15s;
}
.girem-brand-v2__faq-q:hover { background: #f8f7ff; }
.girem-brand-v2__faq-q[aria-expanded="true"] { background: #f8f7ff; color: #4933d1; }

.girem-brand-v2__faq-chevron {
	flex-shrink: 0;
	color: #9ca3af;
	transition: transform .2s;
}
.girem-brand-v2__faq-q[aria-expanded="true"] .girem-brand-v2__faq-chevron {
	transform: rotate(180deg);
	color: #4933d1;
}

.girem-brand-v2__faq-a {
	padding: 0 24px 20px;
	background: #fff;
}
.girem-brand-v2__faq-a p {
	font-size: .9rem;
	line-height: 1.7;
	color: #374151;
	margin: 0;
}

/* ── 10. RELATED BRANDS ── */
.girem-brand-v2__related-section { border-top: 1px solid #e5e7eb; }

.girem-brand-v2__related-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
}

.girem-brand-v2__related-card {
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	padding: 12px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 120px;
	height: 60px;
	text-decoration: none;
	color: #374151;
	font-size: .85rem;
	font-weight: 600;
	transition: border-color .2s, box-shadow .2s;
}
.girem-brand-v2__related-card:hover {
	border-color: #4933d1;
	box-shadow: 0 2px 12px rgba(73,51,209,.1);
}
.girem-brand-v2__related-card img {
	max-width: 100%;
	max-height: 36px;
	object-fit: contain;
	filter: grayscale(1) opacity(.7);
	transition: filter .2s;
}
.girem-brand-v2__related-card:hover img { filter: grayscale(0) opacity(1); }

/* ── 11. BIG CTA ── */
.girem-brand-v2__big-cta {
	background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
	padding: 56px 24px;
}
.girem-brand-v2__big-cta-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.girem-brand-v2__big-cta-text h2 {
	font-size: clamp(1.2rem, 2.5vw, 1.75rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 8px;
}
.girem-brand-v2__big-cta-text p {
	font-size: .95rem;
	color: rgba(255,255,255,.7);
	margin: 0;
}
.girem-brand-v2__big-cta-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
	.girem-brand-v2__hero-inner { grid-template-columns: 1fr; }
	.girem-brand-v2__hero-image { display: none; }
	.girem-brand-v2__about-inner { grid-template-columns: 1fr; }
	.girem-brand-v2__analogs-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
	.girem-brand-v2__hero { padding: 40px 16px; }
	.girem-brand-v2__hero-stats { gap: 20px; }
	.girem-brand-v2__hero-stat strong { font-size: 1.25rem; }
	.girem-brand-v2__section { padding: 32px 16px; }
	.girem-brand-v2__about,
	.girem-brand-v2__benefits-section,
	.girem-brand-v2__faq-section,
	.girem-brand-v2__big-cta { padding: 40px 16px; }
	.girem-brand-v2__cats-grid { grid-template-columns: repeat(2, 1fr); }
	.girem-brand-v2__benefits-grid { grid-template-columns: 1fr; }
	.girem-brand-v2__series-grid { grid-template-columns: repeat(2, 1fr); }
	.girem-brand-v2__docs-grid { grid-template-columns: repeat(2, 1fr); }
	.girem-brand-v2__big-cta-inner { flex-direction: column; }
	.girem-brand-v2__big-cta-actions { width: 100%; }
	.girem-brand-v2__big-cta-actions .girem-v4-btn { flex: 1; text-align: center; }
	.girem-brand-v2__products-table th:nth-child(3),
	.girem-brand-v2__products-table td:nth-child(3) { display: none; }
}

@media (max-width: 480px) {
	.girem-brand-v2__cats-grid,
	.girem-brand-v2__series-grid,
	.girem-brand-v2__docs-grid { grid-template-columns: 1fr; }
	.girem-brand-v2__hero-btns { flex-direction: column; }
	.girem-brand-v2__hero-btns .girem-v4-btn { width: 100%; text-align: center; justify-content: center; }
	.girem-brand-v2__faq-q { padding: 14px 16px; font-size: .875rem; }
	.girem-brand-v2__faq-a { padding: 0 16px 16px; }
	.girem-brand-v2__products-table th:nth-child(4),
	.girem-brand-v2__products-table td:nth-child(4),
	.girem-brand-v2__products-table th:nth-child(5),
	.girem-brand-v2__products-table td:nth-child(5) { display: none; }
}

/* =========================================================
   /brendy/ PAGE — Brand listing grid
   ========================================================= */

.girem-brands-page { background: #fff; }

/* ── Brand cards grid ── */
.girem-brands-grid {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 24px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
}

.girem-brand-card {
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	background: #fff;
	transition: border-color .2s, box-shadow .2s, transform .2s;
}
.girem-brand-card:hover {
	border-color: #4933d1;
	box-shadow: 0 8px 32px rgba(73,51,209,.1);
	transform: translateY(-3px);
}

.girem-brand-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.girem-brand-card__logo-wrap {
	height: 48px;
	display: flex;
	align-items: center;
}
.girem-brand-card__logo {
	max-width: 140px;
	max-height: 48px;
	object-fit: contain;
}
.girem-brand-card__logo-text {
	font-size: 1.25rem;
	font-weight: 800;
	color: #111827;
	letter-spacing: -.02em;
}

.girem-brand-card__country {
	font-size: .75rem;
	font-weight: 600;
	color: #6b7280;
	background: #f3f4f6;
	border-radius: 6px;
	padding: 3px 8px;
	white-space: nowrap;
	flex-shrink: 0;
}

.girem-brand-card__name {
	font-size: 1.1rem;
	font-weight: 700;
	color: #111827;
	margin: 0;
	line-height: 1.3;
}
.girem-brand-card__name a {
	text-decoration: none;
	color: inherit;
}
.girem-brand-card__name a:hover { color: #4933d1; }

.girem-brand-card__tagline {
	font-size: .875rem;
	line-height: 1.55;
	color: #4b5563;
	margin: 0;
	flex: 1;
}

.girem-brand-card__cats {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.girem-brand-card__cats li {
	font-size: .8rem;
	color: #374151;
	padding: 3px 0;
	padding-left: 14px;
	position: relative;
}
.girem-brand-card__cats li::before {
	content: '·';
	position: absolute;
	left: 4px;
	color: #4933d1;
}

.girem-brand-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid #f3f4f6;
}

.girem-brand-card__count {
	font-size: .8rem;
	color: #9ca3af;
	font-weight: 500;
}

.girem-brand-card__btn {
	font-size: .8rem;
	padding: 7px 14px;
	white-space: nowrap;
}

/* simple card (no rich data) */
.girem-brand-card--simple { opacity: .9; }
.girem-brand-card--simple .girem-brand-card__logo-text {
	font-size: 1rem;
	font-weight: 700;
}

/* ── Bottom CTA ── */
.girem-brands-cta {
	background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
	padding: 56px 24px;
}
.girem-brands-cta__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.girem-brands-cta__title {
	font-size: clamp(1.2rem, 2.5vw, 1.75rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 8px;
}
.girem-brands-cta__text {
	font-size: .95rem;
	color: rgba(255,255,255,.7);
	margin: 0;
	max-width: 50ch;
}
.girem-brands-cta__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
	.girem-brands-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.girem-brands-grid { grid-template-columns: 1fr; padding: 24px 16px; }
	.girem-brands-cta__inner { flex-direction: column; }
	.girem-brands-cta__actions { width: 100%; }
	.girem-brands-cta__actions .girem-v4-btn { flex: 1; text-align: center; }
}
