* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.6;
	color: #000;
	background: #fff;
	min-height: 100vh;
}

.container {
	margin: 0 auto;
}

/* Main Header - Full Width and Sticky */
.main-header {
	position: sticky;
	top: 0;
	width: 100%;
	background: #fff;
	z-index: 1000;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-nav {
	width: 100%;
	padding: 20px 0;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 24px;
	font-weight: bold;
	color: #000;
	text-decoration: none;
}

.logo-icon {
	width: 32px;
	height: 32px;
	background: #000;
	border-radius: 6px;
	display: block;
	flex-shrink: 0;
}

.logo-text {
	font-weight: bold;
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 30px;
	align-items: center;
	margin: 0;
	padding: 0;
}

.nav-links li a {
	color: #000;
	text-decoration: none;
	font-weight: 500;
	transition: opacity 0.3s;
	font-size: 16px;
}

.nav-links li a:hover {
	opacity: 0.7;
}

/* Header Join button - pill, dark, elevated */
.header-nav .nav-links .btn-primary {
	background: linear-gradient(180deg, #1f1f1f 0%, #000 100%);
	color: #fff;
	padding: 10px 18px;
	border-radius: 14px;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.2px;
	border: 1px solid rgba(255,255,255,0.06);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	flex-direction: column;
	gap: 5px;
	padding: 5px;
}

.mobile-menu-toggle span {
	width: 24px;
	height: 3px;
	background: #000;
	border-radius: 2px;
	transition: all 0.3s;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: flex;
	}
	
	.nav-links {
		position: fixed;
		top: 72px;
		left: 0;
		right: 0;
		background: #fff;
		flex-direction: column;
		padding: 20px;
		gap: 20px;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		align-items: flex-start;
	}
	
	.nav-links.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}
	
	.nav-links li {
		width: 100%;
	}
	
	.nav-links li a {
		display: block;
		width: 100%;
		padding: 12px 0;
	}
	
	.nav-links li .btn-primary {
		width: 100%;
		text-align: center;
	}
	
	.mobile-menu-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(8px, 8px);
	}
	
	.mobile-menu-toggle.active span:nth-child(2) {
		opacity: 0;
	}
	
	.mobile-menu-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -7px);
	}
}

/* Legacy header styles for backward compatibility */
header:not(.main-header) {
	padding: 30px 0;
}

nav:not(.header-nav) {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.btn-primary {
	display: inline-block;
	background: #000;
	color: #fff;
	padding: 12px 30px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
	font-size: 16px;
}

.btn-primary:hover {
	background: #333;
}

.btn-secondary {
	display: inline-block;
	background: #fff;
	color: #000;
	padding: 12px 30px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
	border: 2px solid #000;
	cursor: pointer;
	font-size: 16px;
}

.btn-secondary:hover {
	background: #f5f5f5;
}

.btn-with-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn-with-arrow::after {
	content: '→';
}

.hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	padding: 80px 0;
	margin-bottom: 100px;
}

.hero-content h1 {
	font-size: 56px;
	font-weight: bold;
	margin-bottom: 24px;
	color: #000;
	line-height: 1.2;
}

.hero-content p {
	font-size: 18px;
	color: #333;
	margin-bottom: 32px;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	margin-bottom: 40px;
	flex-wrap: wrap;
    justify-content: center;
}
/* Home-only alignment: left align hero buttons on desktop */
@media (min-width: 969px) {
	.hero--home .hero-buttons {
		justify-content: flex-start;
	}
}

.stats {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
}

.stat-item {
	font-size: 18px;
	font-weight: 600;
	color: #000;
}

.hero-image {
	width: 100%;
	height: 500px;
	background: linear-gradient(135deg, #4a90e2 0%, #e94c89 100%);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	position: relative;
	overflow: hidden;
}

.hero-image::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23fff" opacity="0.1" width="400" height="300"/><circle fill="%23fff" opacity="0.1" cx="100" cy="100" r="50"/><circle fill="%23fff" opacity="0.1" cx="300" cy="200" r="60"/></svg>');
	background-size: cover;
}

/* Home page hero image override */
.hero-image--home {
    background: url('../images/homebanner.jpg') center / cover no-repeat;
    height: 360px; /* reduced height for home hero image */
}
.hero-image--home::before { display: none; }

@media (max-width: 968px) {
    .hero-image--home {
        height: 240px; /* smaller on mobile */
    }
}

.section {
	margin-bottom: 100px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;
}

/* Light background variant */
.section--light {
	background: #f5f5f5;
	padding: 50px 20px;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header h2 {
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 16px;
	color: #000;
}

.section-header p {
	font-size: 18px;
	color: #666;
	max-width: 700px;
	margin: 0 auto;
}

.feature-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
}

.feature-card {
	background: #fff;
	padding: 40px;
	border-radius: 8px;
	border: 1px solid #e5e5e5;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}

.feature-card:hover {
	transform: translateY(-5px);
}

.feature-icon {
	font-size: 32px;
	margin-bottom: 20px;
	display: inline-block;
	width: 48px;
	height: 48px;
	border: 2px solid #000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-card h3 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 12px;
	color: #000;
}

.feature-card p {
	font-size: 16px;
	color: #666;
	margin-bottom: 20px;
	line-height: 1.6;
}

.feature-card ul {
	list-style: none;
	margin-bottom: 24px;
}

.feature-card ul li {
	padding: 8px 0;
	color: #333;
	position: relative;
	padding-left: 24px;
}

.feature-card ul li::before {
	content: '•';
	position: absolute;
	left: 0;
	font-size: 24px;
	line-height: 1;
}

.feature-card a {
	color: #000;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.feature-card a::after {
	content: '→';
}

/* Home-only: products section icons and card visuals */
.home-products .feature-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #ececec;
    padding: 28px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.home-products .feature-icon {
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 12px;
    background: #0a0a0a;
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.home-products .feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

.home-products .feature-card h3 {
    line-height: 1.25;
}

/* Home products - Learn More button styling */
.home-products .btn-learn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 24px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: all 0.3s;
    margin-top: 8px;
	width: 100%;
}

.home-products .btn-learn-more::after {
    content: '→';
    margin-left: 4px;
}

.home-products .btn-learn-more:hover {
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    transform: translateY(-1px);
}

.benefit-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.benefit-card {
	background: #f5f5f5;
	padding: 30px;
	border-radius: 16px;
	text-align: center;
}

.benefit-icon {
	font-size: 40px;
	margin-bottom: 16px;
	display: inline-block;
	width: 64px;
	height: 64px;
	border: 2px solid #000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.benefit-card h4 {
	font-size: 20px;
	font-weight: 600;
	color: #000;
	margin-bottom: 8px;
}

.benefit-card p {
	font-size: 14px;
	color: #666;
}

/* Home-only benefits: card layout and icon tile styling */
.home-benefits .benefit-cards {
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.home-benefits .benefit-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    padding: 24px;
    text-align: left;
}

.home-benefits .benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #f3f3f3;
    border: 1px solid #e5e5e5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.home-benefits .benefit-icon svg {
    width: 22px;
    height: 22px;
    stroke: #000;
    fill: none;
    stroke-width: 2;
}

.home-benefits .benefit-card h4 {
    margin: 0 0 8px 0;
}

.home-benefits .benefit-card p {
    line-height: 1.6;
}

@media (max-width: 968px) {
    .home-benefits .benefit-cards {
        grid-template-columns: 1fr;
    }
}

/* TSS-only benefits section: switch to icon-list layout matching mock */
.section--benefits-list .benefit-cards {
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 80px;
    row-gap: 40px;
}

.section--benefits-list .benefit-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.section--benefits-list .benefit-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #000;
    background: transparent;
    margin: 4px 0 0 0;
    font-size: 18px;
}

.section--benefits-list .benefit-card h4 {
    font-size: 20px;
    margin: 0 0 6px 0;
}

.section--benefits-list .benefit-card p {
    font-size: 16px;
    color: #666;
}

@media (max-width: 968px) {
	.section--benefits-list .benefit-cards {
		grid-template-columns: 1fr;
		column-gap: 24px;
	}
}


.audience-section {
	background: #f5f5f5;
	padding: 60px 40px;
	border-radius: 20px;
	margin-bottom: 100px;
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.platform-icon {
    text-align: center;
}

.platform-icon svg {
	width: 48px;
	height: 48px;
	margin-bottom: 8px;
	stroke: #000;
	fill: none;
	stroke-width: 2;
}

.platform-icon span {
	display: block;
	font-size: 14px;
	color: #333;
	margin-top: 8px;
}

/* Audience section - platform cards with icon, title, description */
.audience-section .platform-icons {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.audience-section .platform-icon {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    text-align: left;
    transition: transform 0.3s;
}

.audience-section .platform-icon:hover {
    transform: translateY(-2px);
}

.audience-section .platform-icon-wrapper {
    width: 56px;
    height: 56px;
    background: #f3f3f3;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.audience-section .platform-icon-wrapper svg {
    width: 28px;
    height: 28px;
    stroke: #333;
    fill: none;
    stroke-width: 2;
}

.audience-section .platform-icon h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #000;
}

.audience-section .platform-icon p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 1401px) {
    .audience-section .platform-icon h3 {
        font-size: 16px;
    }
    .audience-section .platform-icon p {
        font-size: 13px;
    }
}

@media (max-width: 1400px) {
    .audience-section .platform-icons {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 968px) {
    .audience-section .platform-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .audience-section .platform-icons {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Audience section - collaboration feature cards */
.audience-section .collaboration-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.audience-section .collab-feature {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.audience-section .collab-feature-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 0px 0;
    color: #000;
    line-height: 1.1;
}

.audience-section .collab-feature-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 968px) {
    .audience-section .collaboration-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.audience-section .cta-box {
    max-width: 600px;
    margin: 40px auto 0;
    background: #E2E2E2;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
}

.audience-section .cta-box h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.audience-section .cta-box p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.audience-section .cta-box .btn-primary {
    margin: 0 auto;
}

@media (max-width: 640px) {
    .audience-section .cta-box {
        padding: 36px 24px;
        margin-top: 30px;
    }
    
    .audience-section .cta-box h2 {
        font-size: 24px;
    }
    
    .audience-section .cta-box p {
        font-size: 16px;
    }
}

.collaboration-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 60px;
    row-gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.collab-feature {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.collab-feature .benefit-icon {
    width: 48px;
    height: 48px;
    background: #f3f3f3;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.collab-feature .benefit-icon svg {
    width: 22px;
    height: 22px;
    stroke: #000;
    fill: none;
    stroke-width: 2;
}

.collab-feature h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.collab-feature p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.cta-box {
	background: #f5f5f5;
	padding: 40px;
	border-radius: 16px;
	text-align: center;
	margin: 40px 0;
}

.cta-box p {
	font-size: 18px;
	color: #333;
	margin-bottom: 24px;
}

.steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
}

/* InterviewHood - How It Works layout and width */
#how-it-works .steps {
	max-width: 1100px;
	margin: 0 auto;
	justify-items: center;
}

#how-it-works .step {
	flex-direction: column;
	align-items: center;
	text-align: center;
}

#how-it-works .step-content p {
	max-width: 360px;
}

.step {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.step-number {
	width: 60px;
	height: 60px;
	background: #000;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: bold;
	flex-shrink: 0;
}

.step-content h4 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 8px;
	color: #000;
}

.step-content p {
	font-size: 16px;
	color: #666;
}

footer {
	background: #f5f5f5;
	padding: 60px 40px 30px;
	margin-top: 100px;
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-brand h3 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 12px;
	color: #000;
}

.footer-brand p {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
}

.footer-links h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 16px;
	color: #000;
}

.footer-links ul {
	list-style: none;
}

.footer-links ul li {
	margin-bottom: 12px;
}

.footer-links ul li a {
	color: #666;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s;
}

.footer-links ul li a:hover {
	color: #000;
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid #ddd;
	color: #666;
	font-size: 14px;
}

@media (max-width: 968px) {
	.hero {
		grid-template-columns: 1fr;
		padding: 60px 0;
	}
	
	.hero-content h1 {
		font-size: 40px;
	}
	
	.section-header h2 {
		font-size: 36px;
	}
	
	.footer-content {
		grid-template-columns: 1fr;
	}
	
	nav .nav-links {
		gap: 20px;
	}
}

/* Hero Centered Variant */
.hero-centered {
	padding: 50px 0;
	text-align: center;
}

/* Page-specific hero background for InterviewHood */
.hero-centered--interviewhood {
	background: #f7f7f7;
}

/* Page-specific hero background for TSS (Solopreneur School) */
.hero-centered--tss {
    /* very light neutral gradient matching the provided reference */
    background: #f2f2f2;
}

.hero-centered-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.tagline-badge {
	display: inline-block;
	background: #E9E8E8;
	color: #333333;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 24px;
}

.hero-centered h1 {
	font-size: 56px;
	font-weight: bold;
	margin-bottom: 24px;
	color: #000;
	line-height: 1.2;
}

.hero-centered p {
	font-size: 18px;
	color: #333;
	margin-bottom: 32px;
	line-height: 1.6;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.btn-with-icon {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn-with-icon svg {
	width: 16px;
	height: 16px;
}

.btn-white {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	padding: 12px 30px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
	border: 1px solid rgba(255, 255, 255, 0.2);
	cursor: pointer;
	font-size: 16px;
}

.btn-white:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.3);
}

.btn-white svg {
	width: 16px;
	height: 16px;
}

/* Expertise Grid */
.expertise-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.expertise-card {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	border: 1px solid #e5e5e5;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	text-align: left;
	transition: transform 0.3s;
}

.expertise-card:hover {
	transform: translateY(-5px);
}

.expertise-icon {
    width: 56px;
    height: 56px;
    background: #000;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 16px;
}

.expertise-icon svg {
    stroke: #fff;
    fill: none;
}

.expertise-card h4 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 8px;
	color: #000;
}

.expertise-card p {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
}

/* Service Cards */
.service-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.service-card {
	background: #f5f5f5;
	padding: 30px;
	border-radius: 16px;
	text-align: left;
	transition: transform 0.3s;
}

.service-card:hover {
	transform: translateY(-5px);
}

.service-icon {
	font-size: 32px;
	margin-bottom: 16px;
}

/* InterviewHood-only service card and icon styling */
.interviewhood-services .service-card {
	background: #fff;
	border: 1px solid #ececec;
	box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.interviewhood-services .service-icon {
	width: 64px;
	height: 64px;
	border-radius: 14px;
	background: #0a0a0a;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	box-shadow: 0 8px 16px rgba(0,0,0,0.12);
	border: 1px solid rgba(255,255,255,0.06);
}

.interviewhood-services .service-icon svg {
	width: 28px;
	height: 28px;
}

.service-card h4 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 8px;
	color: #000;
}

.service-card p {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
}

/* Two Column Cards */
.two-column-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	max-width: 900px;
	margin: 0 auto;
}

.two-column-card {
    background: #fefefe;
    padding: 28px;
    border-radius: 18px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e6e6e6;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.two-column-card:hover {
	transform: translateY(-5px);
}

.two-column-icon {
    font-size: 28px;
}

.two-column-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: #000;
}

.two-column-card p {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
}

/* TSS-specific adjustments so other pages remain unaffected */
.section--tss-features .section-header {
    margin-bottom: 36px;
}

.section--tss-features .two-column-cards {
    max-width: 1200px;
    gap: 24px;
}

.section--tss-features .two-column-card {
    background: #fff;
}

.section--tss-features .two-column-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.section--tss-features .two-column-icon svg {
    width: 22px;
    height: 22px;
    display: block;
    stroke: #000;
    fill: none;
}

@media (max-width: 968px) {
	.section--tss-features .two-column-cards {
		grid-template-columns: 1fr;
	}
}

/* Testimonials */
.testimonial-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.testimonial-card {
	background: #fff;
	padding: 40px;
	border-radius: 8px;
	border: 1px solid #e5e5e5;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	position: relative;
}

.stars {
	color: #000;
	font-size: 18px;
	margin-bottom: 16px;
	letter-spacing: 2px;
}

.quote-icon {
	font-size: 48px;
	color: #000;
	opacity: 0.2;
	line-height: 1;
	margin-bottom: 16px;
	font-family: serif;
}

.testimonial-card p {
	font-size: 16px;
	color: #333;
	line-height: 1.6;
	margin-top: 16px;
	margin-bottom: 0;
}

.testimonial-author {
	margin-top: 0;
	margin-bottom: 16px;
}

/* Testimonial variant - author before quote */
.testimonial-card .testimonial-author {
	margin-top: 0;
	margin-bottom: 16px;
}

.testimonial-card .testimonial-author + p {
	margin-top: 16px;
}

.testimonial-author strong {
	display: block;
	font-size: 16px;
	font-weight: bold;
	color: #000;
	margin-bottom: 4px;
}

.testimonial-author span {
	display: block;
	font-size: 14px;
	color: #666;
}

/* FAQ */
.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	margin-bottom: 12px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	color: #000;
	transition: background 0.3s;
}

.faq-question:hover {
	background: #f5f5f5;
}

.faq-arrow {
	font-size: 14px;
	color: #666;
	transition: transform 0.3s ease;
	transform: rotate(0deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	padding: 0 20px;
}

.faq-item.active .faq-answer {
	max-height: 500px;
	padding: 0 20px 20px 20px;
}

.faq-answer p {
	font-size: 16px;
	color: #666;
	line-height: 1.7;
	margin: 0;
}

/* Dark CTA Section - Full Width */
.cta-dark {
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	padding: 80px 20px;
	margin-bottom: 0;
	text-align: center;
	width: 100%;
}

.cta-dark-content {
	max-width: 700px;
	margin: 0 auto;
}

.cta-dark h2 {
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 16px;
	color: #fff;
}

.cta-dark p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 32px;
	line-height: 1.6;
}

.cta-dark-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	margin-bottom: 32px;
	flex-wrap: wrap;
}

.cta-contact {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 24px;
}

.cta-contact a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: underline;
}

.cta-contact a:hover {
	color: #fff;
}

@media (max-width: 768px) {
	.hero-content h1 {
		font-size: 32px;
	}
	
	.hero-centered h1 {
		font-size: 36px;
	}
	
	.hero-image {
		height: 300px;
	}
	
	.section {
		padding: 20px 16px;
		margin-bottom: 60px;
	}
	
	.section-header h2 {
		font-size: 28px;
	}
	
	.cta-dark {
		padding: 60px 16px;
	}
	
	.cta-dark h2 {
		font-size: 32px;
	}
	
	.stats {
		flex-direction: column;
		gap: 20px;
	}
	
	.cta-dark-buttons {
		flex-direction: column;
		align-items: stretch;
	}
	
	.cta-dark-buttons .btn-white {
		width: 100%;
		justify-content: center;
	}
	
	.two-column-cards {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.collaboration-features {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.expertise-grid {
		grid-template-columns: 1fr;
	}
	
	.feature-cards {
		grid-template-columns: 1fr;
	}
}

/* Brand Page Styles */
.brand-features .feature-cards {
	grid-template-columns: repeat(3, 1fr);
	max-width: 1200px;
	margin: 0 auto;
}

.brand-features .feature-card {
	text-align: left;
	padding: 28px;
}

.brand-features .feature-icon {
	width: 64px;
	height: 64px;
	border-radius: 14px;
	background: #0a0a0a;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	box-shadow: 0 8px 16px rgba(0,0,0,0.12);
	border: 1px solid rgba(255,255,255,0.06);
}

.brand-features .feature-icon svg {
	width: 28px;
	height: 28px;
	stroke: #fff;
	stroke-width: 2;
}

.brand-features .feature-icon svg * {
	fill: none;
}

.brand-features .feature-icon svg [fill="#fff"],
.brand-features .feature-icon svg polygon[fill="#fff"],
.brand-features .feature-icon svg circle[fill="#fff"] {
	fill: #fff !important;
}

.brand-features .feature-card h3 {
	font-size: 18px;
	margin-bottom: 0;
	font-weight: 500;
}

.brand-why-partner .collaboration-features {
	max-width: 1200px;
	margin: 0 auto;
	grid-template-columns: repeat(2, 1fr);
}

.brand-why-partner .collab-feature .benefit-icon {
	width: 48px;
	height: 48px;
	background: #000;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
}

.brand-why-partner .collab-feature .benefit-icon svg {
	width: 22px;
	height: 22px;
	stroke: #fff;
	fill: none;
	stroke-width: 3;
}

.brand-checkmark {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #22c55e;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.brand-checkmark svg {
	width: 18px;
	height: 18px;
	stroke: #fff;
	fill: none;
	stroke-width: 3;
}

.brand-who-can-join .feature-cards {
	max-width: 1200px;
	margin: 0 auto;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 24px;
}

.brand-who-can-join .feature-card {
	text-align: center;
	padding: 32px 24px;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 16px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.04);
	transition: transform 0.3s, box-shadow 0.3s;
}

.brand-who-can-join .feature-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.brand-who-can-join .feature-card h3 {
	font-size: 20px;
	font-weight: 600;
	margin: 0;
	color: #000;
}

.brand-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.brand-stat-number {
	font-size: 48px;
	font-weight: bold;
	color: #000;
	margin-bottom: 8px;
}

.brand-stat-label {
	font-size: 18px;
	color: #666;
}

@media (max-width: 968px) {
	.brand-features .feature-cards {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.brand-process .steps {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.brand-stats {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.brand-features .feature-cards {
		grid-template-columns: 1fr;
	}
	
	.brand-process .steps {
		grid-template-columns: 1fr;
	}
	
	.brand-stats {
		grid-template-columns: 1fr;
	}
}

/* Students Affiliate Program Page Styles */
.hero-centered--students {
	background: #fff;
	padding: 60px 0 80px;
}

.tagline-badge--students {
	background: #1f1f1f;
	color: #fff;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	margin-bottom: 24px;
}

/* Students Benefits Section */
.students-benefits .feature-cards {
	max-width: 1200px;
	margin: 0 auto;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.students-benefits .feature-card {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 16px;
	padding: 32px 28px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.04);
	text-align: left;
	transition: transform 0.3s, box-shadow 0.3s;
}

.students-benefits .feature-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.students-benefits .feature-icon {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	background: #0a0a0a;
	box-shadow: 0 8px 16px rgba(0,0,0,0.12);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	border: 1px solid rgba(255,255,255,0.06);
}

.students-benefits .feature-icon svg {
	width: 28px;
	height: 28px;
	stroke: #fff;
	fill: none;
	stroke-width: 2;
}

.students-benefits .feature-card h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
	color: #000;
	line-height: 1.25;
}

.students-benefits .feature-card p {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	margin: 0;
}

/* Students Products Section */
.students-products .feature-cards {
	max-width: 1200px;
	margin: 0 auto;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.students-products .feature-card {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.04);
	text-align: left;
}

.students-products .feature-icon {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	background: #0a0a0a;
	box-shadow: 0 8px 16px rgba(0,0,0,0.12);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	border: 1px solid rgba(255,255,255,0.06);
}

.students-products .feature-icon svg {
	width: 28px;
	height: 28px;
	stroke: #fff;
	fill: none;
	stroke-width: 2;
}

.students-products .feature-card h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
	color: #000;
	line-height: 1.25;
}

.students-products .feature-card p {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	margin-bottom: 16px;
}

.students-products .btn-learn-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #000;
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	transition: opacity 0.3s;
}

.students-products .btn-learn-more:hover {
	opacity: 0.7;
}

/* Students Steps Section */
.students-steps {
	max-width: 1100px;
	margin: 0 auto;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	justify-items: center;
}

.students-steps .step {
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.students-steps .step-number {
	width: 60px;
	height: 60px;
	background: #000;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
}

.students-steps .step-content h4 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
	color: #000;
}

.students-steps .step-content p {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	max-width: 300px;
	margin: 0 auto;
}

/* Students Features Section */
.students-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.students-feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.students-feature-icon {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	background: #f3f3f3;
	border: 1px solid #e5e5e5;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.students-feature-icon svg {
	width: 28px;
	height: 28px;
	stroke: #000;
	fill: none;
	stroke-width: 2;
}

.students-feature-content {
	text-align: center;
}

.students-feature-number {
	font-size: 32px;
	font-weight: 700;
	color: #000;
	margin-bottom: 8px;
	line-height: 1.2;
}

.students-feature-label {
	font-size: 16px;
	color: #666;
	line-height: 1.5;
}

/* Mobile Responsive for Students Page */
@media (max-width: 968px) {
	.students-benefits .feature-cards,
	.students-products .feature-cards {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.students-steps {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.students-features {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.hero-centered--students {
		padding: 40px 0 60px;
	}
}

