/* Template 4 — Smart GPT Access style (blue→red gradient, mono display, mint bg) */

.gpt-t4-page {
	--t4-blue: #1e2ea8;
	--t4-blue-2: #4b1ea8;
	--t4-red: #e91e3c;
	--t4-pink: #ff2d6e;
	--t4-mint: #eaf3ee;
	--t4-ink: #1e1e2c;
	--t4-muted: #64708a;
	--t4-card: #ffffff;
	--t4-border: #e5eaf1;
	--t4-purple: #3b1ea8;

	position: relative;
	font-family: 'Hind Siliguri', 'Noto Sans Bengali', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	color: var(--t4-ink);
	background: var(--t4-mint);
	padding: 0;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	overflow-x: hidden;
	min-height: 100vh;
	box-sizing: border-box;
	line-height: 1.65;
}
body:has(.gpt-t4-page),
body:has(.gpt-t4-page) #page,
body:has(.gpt-t4-page) .site,
body:has(.gpt-t4-page) .site-content,
body:has(.gpt-t4-page) .content-area,
body:has(.gpt-t4-page) .entry-content,
body:has(.gpt-t4-page) .wp-site-blocks,
body:has(.gpt-t4-page) main { background: var(--t4-mint); }
body:has(.gpt-t4-page) .entry-content { margin-top: 0; padding-top: 0; }
.gpt-t4-page *, .gpt-t4-page *::before, .gpt-t4-page *::after { box-sizing: border-box; }
.gpt-t4-page img { max-width: 100%; height: auto; }

.gpt-t4-mono {
	font-family: 'Poppins', 'Hind Siliguri', 'Noto Sans Bengali', system-ui, sans-serif;
	letter-spacing: 0.2px;
}

/* ============ Card shell ============ */
.gpt-t4-shell {
	max-width: 1000px;
	margin: 32px auto;
	padding: 0 16px;
}
.gpt-t4-card {
	background: var(--t4-card);
	border-radius: 22px;
	box-shadow: 0 20px 60px -30px rgba(30,46,168,0.25), 0 2px 6px rgba(30,46,168,0.05);
	overflow: hidden;
	padding: 44px 40px;
	margin: 28px auto;
	max-width: 1000px;
}
.gpt-t4-card + .gpt-t4-card { margin-top: 40px; }

/* ============ HERO ============ */
.gpt-t4-hero {
	max-width: 1000px;
	margin: 40px auto 0;
	background: var(--t4-card);
	border-radius: 26px;
	overflow: hidden;
	box-shadow: 0 24px 60px -32px rgba(30,46,168,0.32), 0 2px 8px rgba(30,46,168,0.06);
}
.gpt-t4-hero-banner {
	background: linear-gradient(90deg, #1e2ea8 0%, #4b1ea8 45%, #a01ea8 65%, #e91e3c 100%);
	padding: 48px 40px 44px;
	text-align: center;
	color: #fff;
}
.gpt-t4-hero-title {
	font-family: 'Poppins', 'Hind Siliguri', 'Noto Sans Bengali', system-ui, sans-serif;
	font-size: clamp(22px, 3.4vw, 34px);
	font-weight: 800;
	color: #fff;
	margin: 0 0 14px;
	line-height: 1.3;
	letter-spacing: 0.2px;
}
.gpt-t4-hero-sub {
	color: rgba(255,255,255,0.92);
	font-size: 15px;
	margin: 0;
	font-weight: 400;
}
.gpt-t4-hero-body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	padding: 38px 40px 42px;
	align-items: center;
}
.gpt-t4-hero-logo {
	background: #8bc0ac;
	border-radius: 32px;
	aspect-ratio: 1/1;
	max-width: 420px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
}
.gpt-t4-hero-logo img { width: 78%; height: 78%; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15)); }
.gpt-t4-hero-info { display: flex; flex-direction: column; gap: 18px; }
.gpt-t4-price-row {
	display: flex;
	align-items: baseline;
	gap: 12px;
	font-family: 'Poppins', 'Hind Siliguri', 'Noto Sans Bengali', system-ui, sans-serif;
	flex-wrap: wrap;
}
.gpt-t4-price-old {
	color: #94a3b8;
	text-decoration: line-through;
	font-size: 18px;
	font-weight: 600;
}
.gpt-t4-price-new {
	color: var(--t4-red);
	font-size: 44px;
	font-weight: 800;
	line-height: 1;
}
.gpt-t4-price-per { color: var(--t4-muted); font-size: 16px; }
.gpt-t4-hero-feats {
	list-style: none;
	padding: 0;
	margin: 4px 0 10px;
	display: flex;
	flex-direction: column;
	gap: 0;
}
.gpt-t4-hero-feats li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 4px;
	border-bottom: 1px dashed #e2e8f0;
	font-size: 15px;
	color: #334155;
}
.gpt-t4-hero-feats li:last-child { border-bottom: none; }
.gpt-t4-hero-feats .ic { font-size: 18px; width: 22px; text-align: center; }

/* ============ CTA button — pill red/pink ============ */
.gpt-t4-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: linear-gradient(90deg, var(--t4-red), var(--t4-pink));
	color: #fff !important;
	padding: 18px 42px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 999px;
	text-decoration: none !important;
	box-shadow: 0 12px 28px -8px rgba(233,30,60,0.55), 0 4px 10px rgba(233,30,60,0.25);
	transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
	letter-spacing: 0.3px;
	border: none;
	cursor: pointer;
	font-family: inherit;
}
.gpt-t4-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -8px rgba(233,30,60,0.65); filter: brightness(1.05); }
.gpt-t4-cta-wrap { text-align: center; margin-top: 22px; }
.gpt-t4-cta-block { width: 100%; }
.gpt-t4-cta-block .gpt-t4-cta { width: 100%; }

/* ============ Headings ============ */
.gpt-t4-h2 {
	font-family: 'Poppins', 'Hind Siliguri', 'Noto Sans Bengali', system-ui, sans-serif;
	text-align: center;
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 800;
	color: var(--t4-blue);
	margin: 0 0 8px;
	line-height: 1.3;
	position: relative;
	padding-bottom: 14px;
}
.gpt-t4-h2 .accent { color: var(--t4-red); }
.gpt-t4-h2::after {
	content: "";
	position: absolute;
	left: 50%; transform: translateX(-50%);
	bottom: 0;
	width: 60px; height: 3px;
	background: linear-gradient(90deg, var(--t4-blue), var(--t4-red));
	border-radius: 3px;
}
.gpt-t4-sub {
	text-align: center;
	color: var(--t4-muted);
	font-size: 15px;
	max-width: 700px;
	margin: 16px auto 26px;
	line-height: 1.7;
}

/* ============ Video ============ */
.gpt-t4-video-box {
	position: relative;
	max-width: 720px;
	margin: 8px auto 22px;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 20px 40px -20px rgba(30,46,168,0.3);
	background: #000;
	aspect-ratio: 16/9;
}
.gpt-t4-video-box iframe,
.gpt-t4-video-box video {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	border: 0; display: block;
	background: #000;
}
.gpt-t4-video-placeholder {
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	padding: 24px; text-align: center;
	color: #cbd5e1; font-size: 14px;
	background: linear-gradient(135deg, #1a1c2a, #0f1120);
}
.gpt-t4-video-note {
	text-align: center;
	color: var(--t4-muted);
	font-size: 15px;
	max-width: 640px;
	margin: 0 auto 22px;
}

/* ============ Audience grid ============ */
.gpt-t4-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 26px;
}
.gpt-t4-aud-card {
	background: #fff;
	border: 1px solid var(--t4-border);
	border-left: 4px solid var(--t4-blue);
	border-radius: 16px;
	padding: 26px 24px;
	box-shadow: 0 6px 18px -12px rgba(30,46,168,0.2);
	transition: transform .2s ease, box-shadow .2s ease;
}
.gpt-t4-aud-card:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -18px rgba(30,46,168,0.35); }
.gpt-t4-aud-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.gpt-t4-aud-icon {
	width: 52px; height: 52px;
	border-radius: 12px;
	background: linear-gradient(135deg, #6b1ea8, #d91e6e);
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-size: 24px;
	flex-shrink: 0;
	box-shadow: 0 8px 16px -6px rgba(107,30,168,0.5);
}
.gpt-t4-aud-title {
	font-family: 'Poppins', 'Hind Siliguri', 'Noto Sans Bengali', system-ui, sans-serif;
	font-size: 17px;
	font-weight: 700;
	color: var(--t4-blue);
	margin: 0;
}
.gpt-t4-aud-desc { color: #475569; font-size: 14.5px; margin: 0; line-height: 1.7; }

/* ============ Tools pills ============ */
.gpt-t4-tools-row {
	display: flex; flex-wrap: wrap; justify-content: center;
	gap: 14px; margin: 24px 0 10px;
}
.gpt-t4-tool-pill {
	display: inline-flex; align-items: center; gap: 8px;
	background: linear-gradient(135deg, var(--t4-red), var(--t4-purple));
	color: #fff;
	padding: 12px 26px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	box-shadow: 0 10px 20px -10px rgba(107,30,168,0.5);
}

/* ============ Reviews ============ */
.gpt-t4-review-card {
	background: #fff;
	border: 1px solid var(--t4-border);
	border-radius: 16px;
	padding: 26px 24px 24px;
	position: relative;
	box-shadow: 0 6px 20px -14px rgba(30,46,168,0.25);
}
.gpt-t4-review-card::before {
	content: "";
	position: absolute;
	left: 20px; right: 20px; top: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--t4-blue), var(--t4-red));
	border-radius: 0 0 3px 3px;
}
.gpt-t4-review-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.gpt-t4-review-avatar {
	width: 54px; height: 54px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--t4-blue), var(--t4-purple));
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-weight: 700;
	font-size: 20px;
	flex-shrink: 0;
}
.gpt-t4-review-meta { flex: 1; text-align: center; }
.gpt-t4-review-name {
	font-family: 'Poppins', 'Hind Siliguri', 'Noto Sans Bengali', system-ui, sans-serif;
	color: var(--t4-blue);
	font-weight: 700;
	font-size: 17px;
	margin: 0;
}
.gpt-t4-review-date { color: var(--t4-muted); font-size: 12.5px; margin: 2px 0; }
.gpt-t4-review-stars { color: #f5b800; font-size: 15px; letter-spacing: 2px; }
.gpt-t4-review-quote {
	color: #475569;
	font-size: 14.5px;
	line-height: 1.75;
	text-align: center;
	margin: 8px 0 0;
	position: relative;
	padding-left: 22px;
}
.gpt-t4-review-quote::before {
	content: "\201C";
	position: absolute; left: 0; top: -8px;
	font-family: Georgia, serif;
	font-size: 34px;
	color: var(--t4-blue);
	line-height: 1;
}

/* ============ Stats strip ============ */
.gpt-t4-stats {
	max-width: 1000px;
	margin: 30px auto;
	background: linear-gradient(90deg, #1e2ea8 0%, #4b1ea8 50%, #e91e3c 100%);
	border-radius: 20px;
	padding: 32px 20px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	color: #fff;
	text-align: center;
	box-shadow: 0 20px 50px -24px rgba(30,46,168,0.6);
}
.gpt-t4-stat-num {
	font-family: 'Poppins', 'Hind Siliguri', 'Noto Sans Bengali', system-ui, sans-serif;
	font-size: 34px;
	font-weight: 800;
	line-height: 1.1;
	color: #fff;
	margin: 0;
}
.gpt-t4-stat-label { color: rgba(255,255,255,0.9); font-size: 14px; margin-top: 6px; }

/* ============ Why choose ============ */
.gpt-t4-why-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	margin-top: 24px;
}
.gpt-t4-why-item {
	background: #fff;
	border: 1px solid var(--t4-border);
	border-radius: 14px;
	padding: 20px 22px;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px 14px;
	align-items: start;
	box-shadow: 0 4px 12px -6px rgba(30,46,168,0.12);
}
.gpt-t4-why-check {
	width: 30px; height: 30px;
	background: #10b981;
	color: #fff;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-weight: 700;
	font-size: 15px;
	flex-shrink: 0;
	grid-row: span 2;
}
.gpt-t4-why-title {
	font-family: 'Poppins', 'Hind Siliguri', 'Noto Sans Bengali', system-ui, sans-serif;
	color: var(--t4-blue);
	font-weight: 700;
	font-size: 16px;
	margin: 0;
}
.gpt-t4-why-desc { color: #475569; font-size: 14px; margin: 0; line-height: 1.7; grid-column: 2; }
.gpt-t4-why-note { color: var(--t4-red); font-weight: 600; font-size: 13px; grid-column: 2; margin: 4px 0 0; }
.gpt-t4-pay-row { display: flex; gap: 10px; flex-wrap: wrap; grid-column: 2; margin-top: 6px; }
.gpt-t4-pay-badge {
	background: #f1f5f9;
	color: var(--t4-blue);
	font-weight: 700;
	font-size: 13px;
	padding: 6px 14px;
	border-radius: 999px;
	border: 1px solid #e2e8f0;
}

/* ============ Order card / pricing ============ */
.gpt-t4-order {
	max-width: 520px;
	margin: 40px auto;
	background: #fff;
	border-radius: 22px;
	padding: 40px 36px;
	text-align: center;
	box-shadow: 0 24px 60px -30px rgba(30,46,168,0.35);
	border: 1px solid var(--t4-border);
}
.gpt-t4-order-title {
	font-family: 'Poppins', 'Hind Siliguri', 'Noto Sans Bengali', system-ui, sans-serif;
	color: var(--t4-blue);
	font-size: 26px;
	font-weight: 800;
	margin: 0 0 8px;
}
.gpt-t4-order-sub { color: var(--t4-muted); font-size: 15px; margin: 0 0 20px; }
.gpt-t4-order-old { color: #94a3b8; text-decoration: line-through; font-size: 15px; }
.gpt-t4-order-price {
	font-family: 'Poppins', 'Hind Siliguri', 'Noto Sans Bengali', system-ui, sans-serif;
	color: var(--t4-red);
	font-size: 46px;
	font-weight: 800;
	line-height: 1.1;
	margin: 4px 0 2px;
}
.gpt-t4-order-per { color: var(--t4-muted); font-size: 14px; margin-bottom: 22px; }

/* ============ FAQ accordion ============ */
.gpt-t4-faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.gpt-t4-faq-item {
	background: #fff;
	border: 1px solid var(--t4-border);
	border-left: 4px solid var(--t4-blue);
	border-radius: 12px;
	overflow: hidden;
	transition: box-shadow .2s ease, border-color .2s ease;
}
.gpt-t4-faq-item[open] {
	border-left-color: var(--t4-red);
	box-shadow: 0 12px 28px -18px rgba(30,46,168,0.35);
}
.gpt-t4-faq-item summary {
	display: flex; align-items: center; justify-content: space-between;
	gap: 14px;
	padding: 18px 20px;
	cursor: pointer;
	list-style: none;
	font-family: 'Poppins', 'Hind Siliguri', 'Noto Sans Bengali', system-ui, sans-serif;
	color: var(--t4-blue);
	font-weight: 700;
	font-size: 15.5px;
}
.gpt-t4-faq-item summary::-webkit-details-marker { display: none; }
.gpt-t4-faq-toggle {
	flex-shrink: 0; width: 28px; height: 28px;
	color: var(--t4-blue);
	display: inline-flex; align-items: center; justify-content: center;
	transition: transform .25s ease;
	font-size: 18px;
}
.gpt-t4-faq-item[open] .gpt-t4-faq-toggle { transform: rotate(180deg); color: var(--t4-red); }
.gpt-t4-faq-a {
	padding: 0 20px 18px 20px;
	color: #475569;
	font-size: 14.5px;
	line-height: 1.75;
	border-top: 1px dashed #e2e8f0;
	padding-top: 14px;
	margin-top: 4px;
}
.gpt-t4-faq-a p { margin: 0; }
.gpt-t4-faq-message {
	margin-top: 20px;
	padding: 16px 20px;
	background: linear-gradient(90deg, var(--t4-blue), var(--t4-red));
	color: #fff;
	border-radius: 12px;
	text-align: center;
	font-weight: 600;
	font-size: 14px;
}

/* ============ Footer ============ */
.gpt-t4-warn {
	max-width: 1000px;
	margin: 30px auto;
	background: #fef3c7;
	border-left: 4px solid #f59e0b;
	border-radius: 12px;
	padding: 18px 22px;
	color: #7c2d12;
	font-size: 14px;
	line-height: 1.7;
}
.gpt-t4-warn strong { color: #92400e; }
.gpt-t4-footer {
	background: linear-gradient(90deg, #1e2ea8 0%, #6b1ea8 50%, #e91e3c 100%);
	color: #fff;
	padding: 40px 24px 28px;
	text-align: center;
	margin-top: 40px;
}
.gpt-t4-footer-inner { max-width: 800px; margin: 0 auto; }
.gpt-t4-footer h3 {
	font-family: 'Poppins', 'Hind Siliguri', 'Noto Sans Bengali', system-ui, sans-serif;
	color: #fff;
	font-size: 22px;
	margin: 0 0 10px;
	font-weight: 800;
}
.gpt-t4-footer p { color: rgba(255,255,255,0.92); font-size: 14px; line-height: 1.75; margin: 0 0 12px; }
.gpt-t4-footer a { color: #fff; text-decoration: underline; }
.gpt-t4-footer hr { border: none; border-top: 1px solid rgba(255,255,255,0.25); margin: 18px 0; }
.gpt-t4-footer-copy { color: rgba(255,255,255,0.85); font-size: 13px; }

/* ============ Responsive ============ */
@media (max-width: 820px) {
	.gpt-t4-hero-body { grid-template-columns: 1fr; padding: 28px 22px 32px; gap: 20px; }
	.gpt-t4-hero-logo { max-width: 280px; padding: 26px; }
	.gpt-t4-hero-banner { padding: 32px 22px 28px; }
	.gpt-t4-card { padding: 30px 22px; margin: 22px 12px; }
	.gpt-t4-grid-2 { grid-template-columns: 1fr; gap: 14px; }
	.gpt-t4-why-list { grid-template-columns: 1fr; }
	.gpt-t4-stats { grid-template-columns: 1fr; gap: 20px; padding: 26px 20px; margin: 22px 12px; }
	.gpt-t4-price-new { font-size: 36px; }
	.gpt-t4-order { margin: 30px 12px; padding: 32px 22px; }
	.gpt-t4-order-price { font-size: 38px; }
	.gpt-t4-cta { padding: 16px 34px; font-size: 15px; }
	.gpt-t4-warn { margin: 22px 12px; }
	.gpt-t4-shell { padding: 0 12px; }
}
