/* Programama - Material Design Style */

:root {
	--programama-primary: #6366F1;
	--programama-primary-light: #818CF8;
	--programama-primary-dark: #4F46E5;
	--programama-secondary: #10B981;
	--programama-accent: #F1F5F9;
	--programama-accent-light: #F8FAFC;
	--programama-text: #1E293B;
	--programama-text-light: #64748B;
	--programama-border: #E2E8F0;
	--programama-success: #10B981;
	--programama-warning: #F59E0B;
	--programama-error: #EF4444;
	--programama-gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--programama-gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	--programama-gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	--programama-gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
	/* Material Design shadows */
	--shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
	--shadow-md: 0 2px 4px rgba(0,0,0,0.1);
	--shadow-lg: 0 4px 8px rgba(0,0,0,0.12);
	--shadow-xl: 0 8px 16px rgba(0,0,0,0.12);
}

html {
	height: 100%;
}

/* =============================================
   Transparent Header
   ============================================= */
.theme-main-menu.theme-menu-five {
	background: transparent !important;
	background-color: transparent !important;
	opacity: 1;
	position: relative;
}

.theme-main-menu.transparent-header {
	position: absolute;
	width: 100%;
	background: transparent !important;
	background-color: transparent !important;
	z-index: 100;
	top: 0;
	left: 0;
}

.theme-main-menu.sticky-menu.theme-menu-five.transparent-header {
	background: transparent !important;
	background-color: transparent !important;
}

.theme-main-menu {
	padding-top: 10px;
	padding-bottom: 10px;
}

.theme-main-menu.theme-menu-five > div,
.theme-main-menu.transparent-header > div {
	position: relative;
	z-index: 1;
}

.transparent-header .logo img {
	filter: brightness(0) invert(1);
}

.transparent-header .nav-link {
	color: #fff !important;
}

.transparent-header .nav-link:hover {
	color: rgba(255,255,255,0.8) !important;
}

.transparent-header .right-widget .nav-link span {
	color: #fff;
	border: 1px solid rgba(255,255,255,0.3);
	padding: 8px 20px;
	border-radius: 6px;
	transition: all 0.2s ease;
}

.transparent-header .right-widget .nav-link:hover span {
	background: rgba(255,255,255,0.1);
	border-color: rgba(255,255,255,0.5);
}

/* Sticky header scroll state */
.theme-main-menu.transparent-header.scrolled,
.theme-main-menu.sticky-menu.transparent-header.scrolled,
.theme-main-menu.sticky-menu.fixed.transparent-header {
	position: fixed !important;
	background: rgba(26, 26, 46, 0.98) !important;
	background-color: rgba(26, 26, 46, 0.98) !important;
	backdrop-filter: blur(10px);
	z-index: 9999 !important;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* =============================================
   Hero Section - Material Design
   ============================================= */
.programama-hero {
	padding: 130px 0 140px;
	background: #1a1a2e;
	position: relative;
	overflow: hidden;
	margin-top: -151px;
	padding-top: 240px;
}

.programama-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.2) 0%, transparent 40%),
		radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 40%);
	pointer-events: none;
}

.programama-hero .hero-heading {
	font-size: 56px;
	font-weight: 600;
	line-height: 1.15;
	color: #fff;
	margin-bottom: 20px;
	letter-spacing: -0.02em;
	position: relative;
	z-index: 1;
}

.programama-hero .hero-heading span {
	background: linear-gradient(135deg, #818CF8 0%, #C084FC 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.programama-hero .hero-sub-heading {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 32px;
	font-weight: 400;
	line-height: 1.6;
	position: relative;
	z-index: 1;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.programama-hero .hero-cta {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

/* Calm Hero - Light Blue Theme */
.programama-hero-calm {
	background: #0c4a6e;
}

.programama-hero-calm::before {
	background: 
		radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.2) 0%, transparent 40%),
		radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.15) 0%, transparent 40%);
}

/* Living Hero - Warm Theme */
.programama-hero-living {
	background: #7c2d12;
}

.programama-hero-living::before {
	background: 
		radial-gradient(circle at 20% 80%, rgba(251, 146, 60, 0.2) 0%, transparent 40%),
		radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.15) 0%, transparent 40%);
}

/* =============================================
   Buttons - Material Design
   ============================================= */
.theme-btn-programama-primary {
	display: inline-block;
	padding: 14px 32px;
	background: var(--programama-primary);
	color: #fff;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	transition: all 0.2s ease;
	border: none;
	cursor: pointer;
	box-shadow: var(--shadow-md);
}

.theme-btn-programama-primary:hover {
	background: var(--programama-primary-dark);
	box-shadow: var(--shadow-lg);
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
}

.theme-btn-programama-primary:active {
	transform: translateY(0);
	box-shadow: var(--shadow-sm);
}

.theme-btn-programama-secondary {
	display: inline-block;
	padding: 14px 32px;
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	transition: all 0.2s ease;
}

.theme-btn-programama-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.6);
	color: #fff;
	text-decoration: none;
}

/* =============================================
   Title Styles - Material Design
   ============================================= */
.title-style-programama {
	margin-bottom: 40px;
}

.title-style-programama h2 {
	font-size: 36px;
	font-weight: 600;
	color: var(--programama-text);
	margin-bottom: 12px;
	letter-spacing: -0.02em;
	line-height: 1.25;
}

.title-style-programama p {
	font-size: 16px;
	color: var(--programama-text-light);
	line-height: 1.5;
	margin-top: 8px;
}

/* =============================================
   Problem Section - Material Design
   ============================================= */
.programama-problem {
	padding: 80px 0;
	background: linear-gradient(180deg, 
		#ffffff 0%, 
		#f8fafc 30%,
		#f1f5f9 70%,
		#e2e8f0 100%);
	position: relative;
	overflow: hidden;
}

.programama-problem::before {
	content: '';
	position: absolute;
	top: -200px;
	right: -200px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.programama-problem::after {
	content: '';
	position: absolute;
	bottom: -150px;
	left: -150px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(129, 140, 248, 0.06) 0%, transparent 70%);
	pointer-events: none;
}

.problem-card {
	text-align: center;
	padding: 32px 24px;
	background: #fff;
	border-radius: 12px;
	height: 100%;
	transition: all 0.2s ease;
	border: 1px solid var(--programama-border);
	box-shadow: var(--shadow-sm);
}

.problem-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--programama-primary-light);
}

.problem-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--programama-accent);
	border-radius: 12px;
	color: var(--programama-primary);
	transition: all 0.2s ease;
}

.problem-card:hover .problem-icon {
	background: var(--programama-primary);
	color: #fff;
}

.problem-card h4 {
	font-size: 18px;
	font-weight: 600;
	color: var(--programama-text);
	margin-bottom: 10px;
}

.problem-card p {
	font-size: 14px;
	color: var(--programama-text-light);
	line-height: 1.6;
	margin: 0;
}

/* =============================================
   Bento Grid - Problem Section V2
   ============================================= */
.bento-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto auto;
	gap: 20px;
	max-width: 1000px;
	margin: 0 auto;
}

.bento-item {
	position: relative;
}

.bento-item.bento-large {
	grid-column: span 1;
	grid-row: span 2;
}

.bento-item.bento-wide {
	grid-column: span 2;
}

.problem-card-v2 {
	position: relative;
	padding: 28px;
	height: 100%;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.8);
	box-shadow: 
		0 4px 24px rgba(99, 102, 241, 0.08),
		0 1px 2px rgba(0, 0, 0, 0.04),
		inset 0 1px 0 rgba(255, 255, 255, 0.6);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.problem-card-v2::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, 
		rgba(99, 102, 241, 0.03) 0%, 
		rgba(129, 140, 248, 0.05) 50%,
		rgba(241, 245, 249, 0.1) 100%);
	border-radius: 20px;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 0;
}

.problem-card-v2:hover::before {
	opacity: 1;
}

.problem-card-v2:hover {
	transform: translateY(-6px) scale(1.02);
	box-shadow: 
		0 20px 40px rgba(99, 102, 241, 0.15),
		0 8px 16px rgba(0, 0, 0, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
	border-color: rgba(99, 102, 241, 0.2);
}

.card-glow {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at center, 
		rgba(99, 102, 241, 0.15) 0%, 
		transparent 50%);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
	z-index: 0;
}

.problem-card-v2:hover .card-glow {
	opacity: 0.6;
}

.problem-icon-v2 {
	position: relative;
	z-index: 1;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, 
		rgba(99, 102, 241, 0.1) 0%, 
		rgba(129, 140, 248, 0.15) 100%);
	border-radius: 16px;
	color: var(--programama-primary);
	margin-bottom: 20px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-card-v2:hover .problem-icon-v2 {
	background: linear-gradient(135deg, 
		var(--programama-primary) 0%, 
		var(--programama-primary-light) 100%);
	color: #fff;
	transform: scale(1.1) rotate(-3deg);
	box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.problem-icon-v2 svg {
	transition: transform 0.3s ease;
}

.problem-card-v2:hover .problem-icon-v2 svg {
	transform: scale(1.1);
}

.problem-content {
	position: relative;
	z-index: 1;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.problem-card-v2 h4 {
	font-size: 18px;
	font-weight: 600;
	color: var(--programama-text);
	margin-bottom: 10px;
	line-height: 1.4;
	transition: color 0.3s ease;
}

.problem-card-v2:hover h4 {
	color: var(--programama-primary-dark);
}

.problem-card-v2 p {
	font-size: 14px;
	color: var(--programama-text-light);
	line-height: 1.7;
	margin: 0;
}

.bento-large .problem-card-v2 {
	padding: 32px;
}

.bento-large .problem-icon-v2 {
	width: 72px;
	height: 72px;
	border-radius: 18px;
}

.bento-large h4 {
	font-size: 20px;
}

.bento-large p {
	font-size: 15px;
}

/* Bento Grid 5 items variant */
.bento-grid-5 {
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto auto;
}

.bento-grid-5 .bento-item.bento-large {
	grid-column: span 2;
	grid-row: span 2;
}

.bento-grid-5 .bento-item:not(.bento-large) {
	grid-column: span 1;
}

/* Responsive Bento Grid */
@media (max-width: 991px) {
	.bento-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.bento-grid-5 {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.bento-item.bento-large,
	.bento-grid-5 .bento-item.bento-large {
		grid-column: span 2;
		grid-row: span 1;
	}
	
	.bento-item.bento-wide {
		grid-column: span 2;
	}
}

@media (max-width: 767px) {
	.bento-grid,
	.bento-grid-5 {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.bento-item.bento-large,
	.bento-item.bento-wide,
	.bento-grid-5 .bento-item.bento-large {
		grid-column: span 1;
		grid-row: span 1;
	}
	
	.problem-card-v2 {
		padding: 24px;
	}
	
	.bento-large .problem-card-v2 {
		padding: 24px;
	}
}

/* =============================================
   How It Works Section - Timeline Design
   ============================================= */
.programama-how-it-works {
	padding: 80px 0;
	background: var(--programama-accent-light);
	position: relative;
	overflow: hidden;
}

.timeline-container {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
}

.timeline-line {
	position: absolute;
	top: 28px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 200px);
	height: 2px;
	background: linear-gradient(90deg, 
		var(--programama-primary-light) 0%,
		var(--programama-primary) 50%,
		var(--programama-primary-light) 100%);
	opacity: 0.3;
}

.timeline-items {
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}

.timeline-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 16px;
	position: relative;
}

.timeline-dot {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--programama-primary) 0%, var(--programama-primary-dark) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	position: relative;
	box-shadow: 
		0 4px 20px rgba(99, 102, 241, 0.3),
		0 0 0 6px rgba(99, 102, 241, 0.1);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-dot span {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}

.timeline-item:hover .timeline-dot {
	transform: scale(1.1);
	box-shadow: 
		0 8px 30px rgba(99, 102, 241, 0.4),
		0 0 0 8px rgba(99, 102, 241, 0.15);
}

.timeline-content {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 24px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	max-width: 280px;
}

.timeline-item:hover .timeline-content {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(99, 102, 241, 0.12);
	border-color: rgba(99, 102, 241, 0.2);
}

.timeline-content h3 {
	font-size: 17px;
	font-weight: 600;
	color: var(--programama-text);
	margin-bottom: 10px;
	line-height: 1.4;
}

.timeline-content p {
	font-size: 14px;
	color: var(--programama-text-light);
	line-height: 1.6;
	margin: 0;
}

/* Timeline Responsive */
@media (max-width: 991px) {
	.timeline-line {
		display: none;
	}
	
	.timeline-items {
		flex-direction: column;
		gap: 32px;
	}
	
	.timeline-item {
		flex-direction: row;
		text-align: left;
		padding: 0;
	}
	
	.timeline-dot {
		margin-bottom: 0;
		margin-right: 20px;
		flex-shrink: 0;
		width: 48px;
		height: 48px;
	}
	
	.timeline-dot span {
		font-size: 18px;
	}
	
	.timeline-content {
		max-width: none;
		flex: 1;
	}
}

@media (max-width: 767px) {
	.timeline-content {
		padding: 20px;
	}
	
	.timeline-content h3 {
		font-size: 16px;
	}
}

/* =============================================
   Use Cases / Products Section - Material Design
   ============================================= */
.programama-use-cases {
	padding: 64px 0;
	background: #fff;
}

.use-case-card {
	padding: 32px;
	background: #fff;
	border-radius: 12px;
	height: 100%;
	border: 1px solid var(--programama-border);
	transition: all 0.2s ease;
	box-shadow: var(--shadow-sm);
}

.use-case-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--programama-primary-light);
}

.use-case-card h3 {
	font-size: 22px;
	font-weight: 600;
	color: var(--programama-text);
	margin-bottom: 4px;
}

.use-case-card h3 a {
	color: var(--programama-text);
	text-decoration: none;
	transition: color 0.2s ease;
}

.use-case-card h3 a:hover {
	color: var(--programama-primary);
}

.use-case-subtitle {
	font-size: 12px;
	color: var(--programama-primary);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 12px;
	font-weight: 600;
}

.use-case-card p {
	font-size: 14px;
	color: var(--programama-text-light);
	line-height: 1.6;
	margin-bottom: 16px;
}

.use-case-link {
	color: var(--programama-primary);
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.use-case-link:hover {
	gap: 10px;
	text-decoration: none;
}

/* =============================================
   Features Section - Material Design
   ============================================= */
.programama-features {
	padding: 64px 0;
	background: #1a1a2e;
	position: relative;
}

.programama-features .title-style-programama h2,
.programama-features .title-style-programama p {
	color: #fff;
}

.programama-features .title-style-programama p {
	color: rgba(255, 255, 255, 0.7);
}

.feature-card {
	padding: 24px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	height: 100%;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.2s ease;
}

.feature-card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(99, 102, 241, 0.4);
}

.feature-card h4 {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 10px;
}

.feature-card p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	margin: 0;
}

/* =============================================
   Comparison Table - Material Design
   ============================================= */
.programama-comparison {
	padding: 64px 0;
	background: #fff;
}

.comparison-table-wrapper {
	overflow-x: auto;
	border-radius: 12px;
	box-shadow: var(--shadow-lg);
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	min-width: 700px;
}

.comparison-table thead {
	background: #1a1a2e;
}

.comparison-table th {
	padding: 16px 20px;
	text-align: left;
	font-weight: 500;
	font-size: 14px;
	color: #fff;
}

.comparison-table th:first-child {
	color: rgba(255, 255, 255, 0.8);
}

.comparison-table th:nth-child(2) {
	background: rgba(99, 102, 241, 0.3);
}

.comparison-table td {
	padding: 14px 20px;
	border-bottom: 1px solid var(--programama-border);
	font-size: 14px;
	color: var(--programama-text);
}

.comparison-table td:nth-child(2) {
	background: rgba(99, 102, 241, 0.04);
}

.comparison-table tbody tr:hover {
	background: var(--programama-accent-light);
}

.comparison-table tbody tr:hover td:nth-child(2) {
	background: rgba(99, 102, 241, 0.08);
}

.comparison-table .check {
	color: var(--programama-success);
	font-size: 18px;
	font-weight: 600;
}

.comparison-table .cross {
	color: var(--programama-error);
	font-size: 18px;
	font-weight: 600;
}

.comparison-table .warning {
	color: var(--programama-warning);
	font-size: 18px;
	font-weight: 600;
}

/* =============================================
   Pricing Section - Material Design
   ============================================= */
.programama-pricing {
	padding: 64px 0;
	background: var(--programama-accent-light);
}

.pricing-card {
	padding: 32px 28px;
	background: #fff;
	border-radius: 12px;
	border: 1px solid var(--programama-border);
	height: 100%;
	position: relative;
	transition: all 0.2s ease;
	box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
	border: 2px solid var(--programama-primary);
}

.pricing-card-featured:hover {
	box-shadow: var(--shadow-xl);
}

.pricing-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--programama-primary);
	color: #fff;
	padding: 6px 16px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	box-shadow: var(--shadow-md);
}

.pricing-card h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--programama-text);
	margin-bottom: 16px;
	text-align: center;
}

.pricing-amount {
	text-align: center;
	margin-bottom: 24px;
}

.pricing-amount .currency {
	font-size: 20px;
	color: var(--programama-text-light);
	vertical-align: top;
	font-weight: 500;
}

.pricing-amount .amount {
	font-size: 48px;
	font-weight: 700;
	color: var(--programama-primary);
	line-height: 1;
}

.pricing-amount .period {
	font-size: 14px;
	color: var(--programama-text-light);
	display: block;
	margin-top: 4px;
}

.pricing-savings {
	text-align: center;
	color: var(--programama-success);
	font-weight: 500;
	font-size: 14px;
	margin-bottom: 20px;
	background: rgba(16, 185, 129, 0.1);
	padding: 6px 12px;
	border-radius: 4px;
	display: inline-block;
	width: 100%;
}

.pricing-features {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
}

.pricing-features li {
	padding: 10px 0;
	font-size: 14px;
	color: var(--programama-text-light);
	border-bottom: 1px solid var(--programama-border);
	line-height: 1.5;
	display: flex;
	align-items: center;
	gap: 10px;
}

.pricing-features li:last-child {
	border-bottom: none;
}

.pricing-features li strong {
	color: var(--programama-text);
	font-weight: 600;
}

/* Annual plan: keep lines "normal" (not bold) */
.pricing-card-featured .pricing-features li {
	color: var(--programama-text);
	font-weight: 100;
}

.pricing-features li:before {
	content: '✓';
	color: var(--programama-success);
	font-weight: 600;
	font-size: 16px;
	flex-shrink: 0;
}

.pricing-card .theme-btn-programama-primary {
	width: 100%;
	text-align: center;
	display: block;
}

.pricing-includes {
	text-align: center;
	font-size: 13px;
	color: var(--programama-text-light);
	margin-bottom: 20px;
	padding: 8px 12px;
	background: rgba(99, 102, 241, 0.05);
	border-radius: 6px;
}

.pricing-note {
	font-size: 13px;
	color: var(--programama-text-light);
	line-height: 1.5;
	margin: -10px 0 20px;
	padding: 0 8px;
}

.pricing-reassurance {
	font-size: 14px;
	color: var(--programama-text-light);
	line-height: 1.5;
	font-style: italic;
}

/* =============================================
   Pricing Add-ons Section - Material Design
   ============================================= */
.pricing-addons {
	background: #fff;
	border-radius: 12px;
	padding: 24px 28px;
	border: 1px solid var(--programama-border);
	box-shadow: var(--shadow-sm);
}

.pricing-addons-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--programama-text);
	margin-bottom: 16px;
	text-align: center;
}

.pricing-addons-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.pricing-addon-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	font-size: 13px;
	color: var(--programama-text-light);
	border-bottom: 1px solid var(--programama-border);
	flex-wrap: wrap;
	gap: 8px;
}

.pricing-addon-item:last-child {
	border-bottom: none;
}

.addon-name {
	flex: 1;
	min-width: 200px;
}

.addon-price {
	font-weight: 600;
	color: var(--programama-text);
	white-space: nowrap;
}

@media (max-width: 767px) {
	.pricing-addon-item {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.addon-price {
		margin-top: 4px;
	}
}

/* =============================================
   Contact Page Styles
   ============================================= */
.programama-hero-contact {
	min-height: 300px;
}

/* Legal Pages Hero */
.programama-hero-legal {
	padding: 100px 0 60px;
	min-height: auto;
}

.programama-hero-legal .hero-heading {
	font-size: 42px;
}

.legal-content {
	padding: 60px 0;
	background: #fff;
}

.legal-content p,
.legal-content li {
	color: #444;
	line-height: 1.8;
}

@media (max-width: 767px) {
	.programama-hero-legal {
		padding: 80px 20px 40px;
	}
	
	.programama-hero-legal .hero-heading {
		font-size: 28px;
	}
	
	.legal-content {
		padding: 30px 0;
	}
}

.bento-grid-contact {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 900px;
	margin: 0 auto;
}

.contact-card {
	text-align: center;
}

.contact-card .problem-icon-v2 {
	margin: 0 auto 20px;
}

.contact-card a {
	color: var(--programama-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

.contact-card a:hover {
	color: var(--programama-primary-dark);
}

.contact-form-wrapper {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 4px 24px rgba(99, 102, 241, 0.08);
	padding: 40px;
}

.contact-form-wrapper .form-group {
	margin-bottom: 20px;
}

.contact-form-wrapper label {
	font-size: 14px;
	font-weight: 500;
	color: var(--programama-text);
	margin-bottom: 8px;
	display: block;
}

.contact-form-wrapper .form-control {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--programama-border);
	border-radius: 10px;
	font-size: 15px;
	transition: all 0.2s ease;
	background: #fff;
}

.contact-form-wrapper .form-control:focus {
	outline: none;
	border-color: var(--programama-primary);
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.contact-form-wrapper textarea.form-control {
	resize: vertical;
	min-height: 120px;
}

.contact-form-wrapper .form-row {
	display: flex;
	gap: 20px;
	margin-bottom: 0;
}

.contact-form-wrapper .form-row .form-group {
	flex: 1;
}

@media (max-width: 767px) {
	.bento-grid-contact {
		grid-template-columns: 1fr;
	}
	
	.contact-form-wrapper {
		padding: 24px;
	}
	
	.contact-form-wrapper .form-row {
		flex-direction: column;
		gap: 0;
	}
}

/* =============================================
   CTA Section - Material Design
   ============================================= */
.programama-cta {
	padding: 107px 0;
	background: #1a1a2e;
	position: relative;
}

.programama-cta h2 {
	font-size: 32px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 12px;
	letter-spacing: -0.02em;
	position: relative;
	z-index: 1;
}

.programama-cta p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.5;
	position: relative;
	z-index: 1;
	padding-bottom: 29px;
}

.cta-buttons {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

/* =============================================
   Navigation Dropdown - Material Design
   ============================================= */
.navbar-nav .dropdown-menu {
	border: none;
	border-radius: 8px;
	box-shadow: var(--shadow-xl);
	margin-top: 8px;
	padding: 8px 0;
	min-width: 200px;
	background: #fff;
}

.navbar-nav .dropdown-item {
	padding: 10px 20px;
	font-size: 14px;
	color: var(--programama-text);
	transition: all 0.15s ease;
	font-weight: 500;
}

.navbar-nav .dropdown-item:hover {
	background: var(--programama-accent);
	color: var(--programama-primary);
}

.navbar-nav .dropdown-toggle::after {
	margin-left: 6px;
	vertical-align: middle;
}

/* =============================================
   Responsive - Material Design
   ============================================= */
@media (max-width: 991px) {
	.programama-hero .hero-heading {
		font-size: 42px;
	}
	
	.programama-hero .hero-sub-heading {
		font-size: 16px;
	}
	
	.title-style-programama h2 {
		font-size: 30px;
	}
	
	.programama-cta h2 {
		font-size: 28px;
	}
	
	.transparent-header .navbar-collapse {
		background: rgba(26, 26, 46, 0.98);
		padding: 16px;
		border-radius: 8px;
		margin-top: 8px;
	}
}

@media (max-width: 767px) {
	/* Mobile header - make it dark */
	.theme-main-menu,
	.theme-main-menu.theme-menu-five,
	.theme-main-menu.transparent-header,
	.theme-main-menu.sticky-menu.theme-menu-five.transparent-header {
		background: #1a1a2e !important;
		background-color: #1a1a2e !important;
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		z-index: 9999 !important;
	}
	
	.theme-main-menu.transparent-header > div,
	.theme-main-menu > div {
		justify-content: space-between !important;
		padding: 0 15px;
		background: transparent !important;
	}
	
	.theme-main-menu .logo {
		flex-shrink: 0;
	}
	
	.theme-main-menu .logo img,
	.transparent-header .logo img {
		max-height: 24px !important;
		filter: brightness(0) invert(1) !important;
	}
	
	.theme-main-menu .right-widget {
		margin-left: auto;
	}
	
	.theme-main-menu .right-widget .nav-link span {
		padding: 8px 14px;
		font-size: 13px;
		color: #fff !important;
	}
	
	.theme-main-menu .navbar-toggler,
	.navbar-toggler {
		border-color: rgba(255,255,255,0.5) !important;
		background: rgba(255,255,255,0.1) !important;
	}
	
	.theme-main-menu .navbar-toggler span,
	.navbar-toggler span {
		background: #fff !important;
	}
	
	/* Hero mobile fixes */
	.programama-hero {
		padding: 60px 20px 60px;
		margin-top: 0 !important;
		padding-top: 100px;
	}
	
	/* Remove white gap on mobile */
	.main-page-wrapper {
		background: #1a1a2e;
	}
	
	.programama-hero .hero-heading {
		font-size: 36px;
		line-height: 1.2;
	}
	
	.programama-hero .hero-sub-heading {
		font-size: 16px;
		line-height: 1.5;
	}
	
	.title-style-programama h2 {
		font-size: 26px;
	}
	
	.programama-cta h2 {
		font-size: 24px;
	}
	
	.programama-cta p {
		font-size: 14px;
	}
	
	.problem-card,
	.use-case-card,
	.feature-card {
		margin-bottom: 16px;
	}
	
	.pricing-amount .amount {
		font-size: 40px;
	}
	
	.comparison-table-wrapper {
		border-radius: 8px;
	}
	
	.comparison-table th,
	.comparison-table td {
		padding: 12px 16px;
		font-size: 13px;
	}
	
	.programama-problem,
	.programama-how-it-works,
	.programama-use-cases,
	.programama-features,
	.programama-comparison,
	.programama-pricing,
	.programama-cta {
		padding: 48px 0;
	}
}

/* =============================================
   Utility Classes - Reduced Spacing
   ============================================= */
.mt-130 {
	margin-top: 0;
}

.mt-80 {
	margin-top: 0;
}

.mt-60 {
	margin-top: 40px;
}

.mt-40 {
	margin-top: 24px;
}

.mb-40 {
	margin-bottom: 24px;
}

@media (max-width: 991px) {
	.md-mt-80 {
		margin-top: 0;
	}
}

@media (max-width: 767px) {
	.md-mt-80 {
		margin-top: 0;
	}
	
	.mb-40 {
		margin-bottom: 16px;
	}
}

@media (max-width: 480px) {
	/* Very small screens */
	.theme-main-menu .logo img {
		max-height: 22px !important;
	}
	
	.theme-main-menu .right-widget .nav-link span {
		padding: 6px 12px;
		font-size: 12px;
	}
	
	.programama-hero {
		margin-top: 0 !important;
		padding-top: 90px;
	}
	
	.programama-hero .hero-heading {
		font-size: 32px;
	}
	
	.programama-hero .hero-sub-heading {
		font-size: 15px;
		line-height: 1.5;
	}
}

/* =============================================
   Dark Footer - Material Design
   ============================================= */
.theme-footer-seven {
	background: #1a1a2e;
	color: #fff;
	margin-top: 0 !important;
}

.theme-footer-seven .logo img {
	filter: brightness(0) invert(1);
}

.theme-footer-seven .title {
	color: rgba(255, 255, 255, 0.5);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 0px;
}

.theme-footer-seven .footer-list a {
	color: rgba(255, 255, 255, 0.8);
	transition: color 0.2s ease;
}

.theme-footer-seven .footer-list a:hover {
	color: #fff;
}

.theme-footer-seven .newsletter {
	background: rgba(255, 255, 255, 0.05);
	padding: 24px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-footer-seven .newsletter p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	margin-bottom: 0;
	padding: 10px 0 10px;
}

.theme-footer-seven .newsletter form {
	display: flex;
	gap: 8px;
	background: transparent;
}

.theme-footer-seven .newsletter form input {
	flex: 1;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	padding: 12px 16px;
	color: #fff;
	font-size: 14px;
}

#fsubscribe {
	background-color: var(--programama-accent);
	color: var(--programama-text);
}

.theme-footer-seven .newsletter form input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.theme-footer-seven .newsletter form button {
	background: var(--programama-primary);
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 12px 20px;
	font-weight: 500;
	font-size: 14px;
	cursor: pointer;
	transition: background 0.2s ease;
}

.theme-footer-seven .newsletter form button:hover {
	background: var(--programama-primary-dark);
}

.theme-footer-seven .newsletter .info {
	color: rgba(255, 255, 255, 0.5);
	font-size: 12px;
	margin-top: 12px;
}

.theme-footer-seven .bottom-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
}

.theme-footer-seven .bottom-footer .copyright {
	color: rgba(255, 255, 255, 0.6);
}

.theme-footer-seven .bottom-footer .col-lg-4.order-lg-1 {
	text-align: center;
}

.theme-footer-seven .bottom-footer .social-icon a {
	color: rgba(255, 255, 255, 0.8);
}

.theme-footer-seven .bottom-footer .social-icon a:hover {
	color: #fff;
}

/* =============================================
   Order Modal - Material Design
   ============================================= */
.order-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 9999;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.order-modal.active {
	display: flex;
}

.order-modal-content {
	background: #fff;
	border-radius: 12px;
	width: 100%;
	max-width: 480px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: var(--shadow-xl);
}

.order-modal-header {
	padding: 24px 24px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.order-modal-header h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--programama-text);
	margin: 0;
}

.order-modal-close {
	background: none;
	border: none;
	font-size: 24px;
	color: var(--programama-text-light);
	cursor: pointer;
	padding: 4px;
	line-height: 1;
}

.order-modal-close:hover {
	color: var(--programama-text);
}

.order-modal-body {
	padding: 24px;
}

.order-form-group {
	margin-bottom: 16px;
}

.order-form-group label {
	display: block;
	font-size: 13px;
	font-weight: 500;
	color: var(--programama-text);
	margin-bottom: 6px;
}

.order-form-group input,
.order-form-group textarea {
	width: 100%;
	padding: 12px 14px;
	background-color: rgba(219, 219, 219, 1);
	border: 1px solid var(--programama-border);
	border-radius: 8px;
	font-size: 14px;
	color: var(--programama-text);
	transition: border-color 0.2s ease;
}

.order-form-group input:focus,
.order-form-group textarea:focus {
	outline: none;
	border-color: var(--programama-primary);
}

.order-form-group textarea {
	resize: vertical;
	min-height: 80px;
}

.order-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.order-form-submit {
	width: 100%;
	padding: 14px;
	background: var(--programama-primary);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s ease;
	margin-top: 8px;
}

.order-form-submit:hover {
	background: var(--programama-primary-dark);
}

@media (max-width: 480px) {
	.order-form-row {
		grid-template-columns: 1fr;
	}
}
