/* Template 2 — ToolSeba reference-matched landing */

/* Full-viewport background painted via a fixed pseudo-element so the gradient
   covers the entire page (behind theme header/footer), while content still
   flows inside the WP theme container. */
.gpt-t2-page::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	background: linear-gradient(135deg, #1a2a6c, var(--t2-bg, #b21f1f), #1a2a6c);
	background-attachment: fixed;
	pointer-events: none;
}

.gpt-t2-page {
	position: relative;
	font-family: 'Poppins', 'Hind Siliguri', 'Noto Sans Bengali', system-ui, sans-serif;
	color: var(--t2-text, #333333);
	padding: 32px 15px 0;
	box-sizing: border-box;
	/* Break out of narrow theme container so cards center on the whole viewport */
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	overflow-x: hidden;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
.gpt-t2-page > .gpt-t2-footer { margin-top: auto; }
.gpt-t2-page *, .gpt-t2-page *::before, .gpt-t2-page *::after { box-sizing: border-box; }
.gpt-t2-page img { max-width: 100%; height: auto; }

/* ============ Uniform card shell ============ */
.gpt-t2-card {
	position: relative;
	width: 100%;
	max-width: 700px;
	margin: 30px auto;
	border-radius: 20px;
	padding: 40px 28px;
	text-align: center;
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
	background: #ffffff;
}

/* ============ HERO ============ */
.gpt-t2-hero-shell { width: 100%; max-width: 700px; margin: 0 auto 30px; }
.gpt-t2-hero-card {
	max-width: 700px;
	margin: 0 auto;
	padding: 35px 30px;
	background: rgba(255,255,255,0.92);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
	overflow: hidden;
	animation: gpt-t2-fade-in .8s ease-out both;
}
.gpt-t2-ribbon {
	position: absolute;
	top: 22px;
	right: -42px;
	background: var(--t2-ribbon, #f59e0b);
	color: #fff;
	padding: 8px 45px;
	transform: rotate(45deg);
	font-weight: 700;
	font-size: 15px;
	z-index: 10;
	box-shadow: 0 3px 8px rgba(0,0,0,0.2);
	white-space: nowrap;
}
.gpt-t2-logo-wrap { display: flex; justify-content: center; margin-bottom: 15px; }
.gpt-t2-logo-wrap img { width: min(100%, 420px); max-height: 118px; object-fit: contain; }
.gpt-t2-title { font-size: 32px; font-weight: 800; color: #1e3a8a; margin: 0 0 10px; line-height: 1.3; }
.gpt-t2-subtitle { font-size: 16px; font-weight: 500; color: #4b5563; margin: 0 0 15px; line-height: 1.6; }
.gpt-t2-banner {
	background: linear-gradient(135deg, rgba(37,99,235,0.10), rgba(59,130,246,0.15));
	padding: 14px 12px;
	border-radius: 14px;
	margin: 0 auto 20px;
	border: 1px solid rgba(37,99,235,0.20);
	max-width: 95%;
	color: #dc2626;
	font-weight: 800;
	font-size: 16px;
}
.gpt-t2-icon-circle {
	display: flex; justify-content: center; align-items: center;
	width: 130px; height: 130px;
	background: linear-gradient(135deg, rgba(16,185,129,0.10), rgba(59,130,246,0.15));
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.30);
	animation: gpt-t2-pulse 2s infinite;
	margin: 0 auto 20px;
}
.gpt-t2-icon-circle img { width: 75px; height: 75px; object-fit: contain; }
.gpt-t2-price-card {
	background: rgba(255,255,255,0.60);
	padding: 16px; border-radius: 16px;
	max-width: 260px; margin: 0 auto 25px;
	border: 1px solid rgba(255,255,255,0.40);
}
.gpt-t2-price-label { font-size: 16px; color: #4b5563; margin: 6px 0; font-weight: 500; }
.gpt-t2-price { font-size: 42px; font-weight: 800; color: var(--t2-primary, #2563eb); margin: 6px 0; line-height: 1; }
.gpt-t2-features {
	display: flex; flex-wrap: wrap; gap: 15px;
	margin: 25px auto; max-width: 100%;
}
.gpt-t2-feature {
	flex: 1 1 180px; min-width: 160px;
	background: rgba(255,255,255,0.70);
	padding: 18px 15px; border-radius: 14px;
	border: 1px solid rgba(255,255,255,0.40);
	box-shadow: 0 3px 8px rgba(0,0,0,0.05);
	transition: all .3s ease;
}
.gpt-t2-feature:hover { transform: translateY(-5px); background: rgba(255,255,255,0.85); }
.gpt-t2-feature-icon { font-size: 30px; color: #2563eb; margin-bottom: 12px; line-height: 1; }
.gpt-t2-feature h4 { font-size: 18px; color: #1e3a8a; margin: 0 0 6px; font-weight: 700; }
.gpt-t2-feature p { font-size: 14px; color: #4b5563; line-height: 1.5; margin: 0; }
.gpt-t2-disclaimer {
	margin: 20px auto 0; font-size: 14px; color: #4b5563;
	line-height: 1.6; background: rgba(255,255,255,0.60);
	padding: 16px; border-radius: 14px;
	border: 1px solid rgba(255,255,255,0.40);
	max-width: 100%;
}

/* ============ CTA ============ */
.gpt-t2-cta-wrap { text-align: center; margin: 25px 0 5px; }
.gpt-t2-cta-strip { text-align: center; max-width: 700px; margin: 55px auto; padding: 0 10px; }
.gpt-t2-cta {
	background: linear-gradient(45deg, var(--t2-accent, #ff4e50), var(--t2-accent-dk, #f9d423));
	color: #fff !important;
	padding: 16px 55px;
	font-size: 18px; font-weight: 700;
	text-decoration: none !important;
	border-radius: 50px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.20);
	transition: all .3s ease;
	display: inline-flex; justify-content: center; align-items: center;
	gap: 10px; line-height: 1.25;
}
.gpt-t2-hero-card .gpt-t2-cta { display: flex; max-width: 380px; margin: 0 auto; padding: 18px 60px; font-size: 20px; }
.gpt-t2-cta:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(0,0,0,0.30); }
.gpt-t2-note { text-align: center; margin: 16px 0 4px; color: #2c3e50; font-size: 15px; line-height: 1.6; font-weight: 500; }

/* ============ Section headings ============ */
.gpt-t2-h2 { text-align: center; font-size: 26px; font-weight: 800; margin: 0 0 20px; line-height: 1.3; }
.gpt-t2-sub { text-align: center; color: #555; margin: -8px 0 22px; font-size: 16px; }

/* ============ Audience / Problem ============ */
.gpt-t2-problem-card { background: #fff8f0; }
.gpt-t2-problem-card .gpt-t2-h2 { color: #d35400; }
.gpt-t2-bullets { list-style: none; padding: 0; margin: 0 0 20px; text-align: left; }
.gpt-t2-bullets li { font-size: 15.5px; line-height: 1.6; margin-bottom: 10px; padding-left: 4px; color: #333; }
.gpt-t2-bullets .e { margin-right: 8px; }
.gpt-t2-check-line {
	background: #fef4e7; padding: 14px;
	border-left: 4px solid #e67e22;
	font-weight: 700; font-size: 15.5px; color: #2c3e50;
	text-align: center; border-radius: 6px; margin: 0;
}

/* ============ Benefits / Features ============ */
.gpt-t2-benefits-card { background: #f1f6ff; }
.gpt-t2-benefits-card .gpt-t2-h2 { color: #0046c0; }
.gpt-t2-feat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 14px;
}
.gpt-t2-feat-item {
	background: #fff; padding: 16px;
	border-radius: 12px;
	box-shadow: 0 4px 14px rgba(0,0,0,0.05);
	transition: all .3s ease;
	text-align: left;
	display: flex; gap: 10px; align-items: flex-start;
}
.gpt-t2-feat-item:hover { transform: translateY(-4px); }
.gpt-t2-feat-item .e { font-size: 20px; color: #0a58ca; flex: 0 0 auto; line-height: 1.2; }
.gpt-t2-feat-item p { font-size: 14.5px; color: #333; margin: 0; line-height: 1.5; }

/* ============ Countdown ============ */
.gpt-t2-countdown-card { background: #fff5f0; }
.gpt-t2-countdown-card .gpt-t2-h2 { color: #e74c3c; margin-bottom: 8px; }
.gpt-t2-timer { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.gpt-t2-timer > div { background: #e74c3c; color: #fff; padding: 16px; border-radius: 12px; width: 68px; box-shadow: 0 4px 10px rgba(0,0,0,0.10); text-align: center; }
.gpt-t2-timer strong { display: block; font-size: 22px; font-weight: 800; line-height: 1.1; }
.gpt-t2-timer span { display: block; font-size: 13px; margin-top: 4px; }

/* ============ Bonus ============ */
.gpt-t2-bonus-card { background: #fffaf4; }
.gpt-t2-bonus-card .gpt-t2-h2 { color: #d35400; }
.gpt-t2-bonus-card .gpt-t2-feat-item { justify-content: flex-start; text-align: left; }
.gpt-t2-bonus-card .gpt-t2-feat-item .e { color: #e67e22; }

/* ============ Why ============ */
.gpt-t2-why-card { background: #fff8f2; }
.gpt-t2-why-card .gpt-t2-h2 { color: #d35400; }
.gpt-t2-why-card .gpt-t2-bullets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
	margin: 0;
}
.gpt-t2-why-card .gpt-t2-bullets li {
	background: #fff; padding: 16px; border-radius: 12px;
	box-shadow: 0 4px 14px rgba(0,0,0,0.05);
	transition: all .3s ease;
	margin: 0; line-height: 1.5; font-size: 14.5px;
}
.gpt-t2-why-card .gpt-t2-bullets li:hover { transform: translateY(-4px); }

/* ============ Video ============ */
.gpt-t2-video-card { background: #f9fbff; }
.gpt-t2-video-card .gpt-t2-h2 { color: #222; }
.gpt-t2-video { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 14px; box-shadow: 0 6px 20px rgba(0,0,0,0.10); background: #000; }
.gpt-t2-video video { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 14px; background: #000; display: block; }

/* ============ FAQ ============ */
.gpt-t2-faq-card { background: #f6f8ff; }
.gpt-t2-faq-card .gpt-t2-h2 { color: #1e3a8a; }
.gpt-t2-faq-list { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.gpt-t2-faq-item {
	background: #fff; border-radius: 12px;
	box-shadow: 0 4px 14px rgba(0,0,0,0.05);
	overflow: hidden;
	border: 1px solid rgba(30,58,138,0.08);
}
.gpt-t2-faq-item summary {
	cursor: pointer; list-style: none;
	padding: 16px 20px; font-weight: 700; font-size: 15.5px;
	color: #1e3a8a; position: relative; padding-right: 40px;
}
.gpt-t2-faq-item summary::-webkit-details-marker { display: none; }
.gpt-t2-faq-item summary::after {
	content: "+"; position: absolute; right: 18px; top: 50%;
	transform: translateY(-50%); font-size: 22px; font-weight: 700;
	color: #2563eb; transition: transform .2s ease;
}
.gpt-t2-faq-item[open] summary::after { content: "−"; }
.gpt-t2-faq-item .gpt-t2-faq-a {
	padding: 0 20px 18px; color: #333; font-size: 14.5px; line-height: 1.65;
}

/* ============ Footer ============ */
.gpt-t2-footer {
	width: 100%;
	max-width: 700px;
	margin: auto auto 0;
	padding-top: clamp(220px, 28vh, 340px);
	text-align: center;
}
.gpt-t2-footer-box {
	max-width: 660px; margin: 0 auto;
	background: rgba(92,35,84,0.82);
	color: #fff;
	font-family: 'Hind Siliguri', 'Noto Sans Bengali', 'Segoe UI', system-ui, sans-serif;
	font-size: 14px; font-weight: 500;
	line-height: 1.75; padding: 24px 30px;
	border-radius: 14px;
	letter-spacing: 0.2px;
}
.gpt-t2-footer-box strong { font-weight: 700; }
.gpt-t2-footer strong { color: #fff; }
.gpt-t2-footer a { color: #ff8aa3; text-decoration: none; }

@keyframes gpt-t2-fade-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes gpt-t2-pulse {
	0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(59,130,246,0.30); }
	70% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(59,130,246,0); }
	100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(59,130,246,0); }
}

@media (max-width: 640px) {
	.gpt-t2-page { padding: 22px 12px 0; }
	.gpt-t2-card { padding: 30px 18px; margin: 22px auto; border-radius: 18px; }
	.gpt-t2-hero-card { padding: 28px 18px; }
	.gpt-t2-title { font-size: 26px; }
	.gpt-t2-h2 { font-size: 22px; }
	.gpt-t2-price { font-size: 36px; }
	.gpt-t2-features { flex-direction: column; gap: 12px; }
	.gpt-t2-feature { min-width: 0; }
	.gpt-t2-hero-card .gpt-t2-cta, .gpt-t2-cta { font-size: 16px; padding: 13px 22px; max-width: 100%; }
	.gpt-t2-feat-grid { grid-template-columns: 1fr; }
	.gpt-t2-why-card .gpt-t2-bullets { grid-template-columns: 1fr; }
	.gpt-t2-timer { gap: 8px; }
	.gpt-t2-timer > div { padding: 12px 6px; width: 60px; }
	.gpt-t2-ribbon { top: 16px; right: -44px; font-size: 13px; padding: 6px 40px; }
	.gpt-t2-footer { margin: auto auto 0; padding-top: 190px; }
	.gpt-t2-footer-box { padding: 18px 14px; font-size: 12px; }
}
