@charset "UTF-8";

/* PhysAI Landing Page — matches annotated mockup */

.site-theme {
	background: #f0f2f5;
	background-image: none;
}

body.site-theme.phys2ai-mode {
	background-color: #f0f2f5;
	background-image: none;
}

body.site-theme.phys2ai-mode::before {
	display: none;
}

@media (min-width: 768px) {
	body.site-theme.phys2ai-mode {
		background-image: none;
		background-size: auto;
		background-attachment: scroll;
	}
}

@media (max-width: 767px) {
	body.site-theme.phys2ai-mode {
		background-image: none;
		background-repeat: no-repeat;
	}
}

.site-theme::before {
	display: none;
}

.site-theme .header,
.site-theme .footer {
	display: none;
}

body.site-theme.phys2ai-mode .site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #ffffff;
	border-bottom: 1px solid #e8edf2;
	padding: 0 32px;
	box-shadow: 0 1px 3px rgba(13, 33, 55, 0.06);
}

body.site-theme.phys2ai-mode .site-header .site-nav {
	background: transparent;
	background-color: transparent;
	padding: 0;
	justify-content: center;
}

body.site-theme.phys2ai-mode .site-header .site-nav a {
	color: var(--navy);
	margin: 0;
	font-size: 0.925rem;
	font-weight: 500;
}

body.site-theme.phys2ai-mode .site-header .site-nav a:hover {
	color: var(--accent);
}

.site-header-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
	gap: 24px;
}

.site-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	flex-shrink: 0;
}

.site-brand-icon {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.site-brand-wordmark {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--navy);
	letter-spacing: -0.02em;
	line-height: 1;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 32px;
	flex: 1;
	justify-content: center;
}

.site-nav a {
	color: var(--navy);
	text-decoration: none;
	font-size: 0.925rem;
	font-weight: 500;
	transition: color 0.2s;
	white-space: nowrap;
}

.site-nav a:hover {
	color: var(--accent);
}

.site-nav-extra {
	display: none;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.nav-why-physai {
	display: inline-flex;
	align-items: center;
	padding: 10px 18px;
	background: #e6fafb;
	color: var(--navy);
	font-size: 0.925rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	border: 1px solid #b8eef0;
	transition: background 0.2s, border-color 0.2s;
	white-space: nowrap;
}

.nav-why-physai:hover {
	background: #ccf5f7;
	border-color: var(--accent);
	color: var(--navy);
}

.header-book-btn {
	padding: 10px 20px;
	font-size: 0.925rem;
	white-space: nowrap;
}

/* ── Sections ── */
.landing-section {
	padding: 80px 24px;
	background: #ffffff;
}

.landing-section.section-muted {
	background: #f0f2f5;
}

.landing-section-inner {
	max-width: var(--max-width);
	margin: 0 auto;
}

.section-label {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 12px;
}

.section-title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	color: var(--navy);
	line-height: 1.2;
	margin: 0 0 16px;
}

.section-subtitle {
	font-size: 1.125rem;
	color: var(--text-light);
	max-width: 640px;
	line-height: 1.7;
	margin: 0 0 32px;
}

.section-subtitle.centered {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.text-accent {
	color: var(--accent);
}

/* ── Hero ── */
.hero-section {
	padding: 64px 24px 80px;
	background: #ffffff;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	max-width: var(--max-width);
	margin: 0 auto;
}

.hero-breadcrumb {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 20px;
}

.hero-title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	color: var(--navy);
	line-height: 1.15;
	margin: 0 0 20px;
}

.hero-lead {
	font-size: 1.125rem;
	color: var(--text-light);
	line-height: 1.7;
	margin: 0 0 32px;
}

.hero-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	align-items: center;
}

.btn-outline {
	background: transparent;
	color: var(--navy);
	border: 2px solid var(--navy);
}

.btn-outline:hover {
	background: var(--navy);
	color: white;
}

.btn-teal {
	background: var(--accent);
	color: white;
	box-shadow: 0 4px 14px rgba(0, 194, 203, 0.35);
}

.btn-teal:hover {
	background: #00a8b0;
	transform: translateY(-1px);
}

.btn-label-short {
	display: none;
}

.hero-visual {
	background: #0a1628;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
}

.hero-visual-header {
	background: #1e293b;
	padding: 10px 16px;
	display: flex;
	gap: 6px;
	flex-shrink: 0;
}

.hero-visual-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #475569;
}

.hero-visual-body {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	background: #0a1628;
	min-height: 260px;
	overflow: hidden;
}

.hero-visual-body img,
.hero-visual-body video,
.hero-visual-body .hero-animation {
	width: 100%;
	height: auto;
	max-height: 100%;
	object-fit: contain;
	display: block;
	border-radius: 0;
}

.hero-visual-caption {
	padding: 12px 16px;
	background: #1e293b;
	color: #94a3b8;
	font-size: 0.8rem;
	text-align: center;
	flex-shrink: 0;
}

/* ── Stats Bar ── */
.stats-bar {
	background: var(--navy);
	padding: 48px 24px;
}

.stats-heading {
	max-width: var(--max-width);
	margin: 0 auto 32px;
	text-align: center;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.65);
}

.comsol-cc-badge {
	width: 202px;
	height: 88px;
	display: block;
	/* Native pixel size — COMSOL brand requirement: no scaling */
}

.stats-grid {
	max-width: var(--max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}

.stat-item .stat-number {
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
	color: var(--accent);
	line-height: 1;
	margin-bottom: 8px;
}

.stat-item .stat-label {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.75);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 500;
}

/* ── Benefits Grid ── */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 48px;
}

.benefit-card {
	padding: 28px 24px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: white;
	transition: box-shadow 0.2s, transform 0.2s;
}

.benefit-card:hover {
	box-shadow: var(--shadow);
	transform: translateY(-2px);
}

.benefit-icon {
	width: 48px;
	height: 48px;
	background: #ecfeff;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 16px;
}

.benefit-card h3 {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--navy);
	margin: 0 0 10px;
}

.benefit-card p {
	font-size: 0.925rem;
	color: var(--text-light);
	margin: 0;
	line-height: 1.6;
}

/* ── Founder Spotlight ── */
.founder-spotlight {
	background: #f0f2f5;
}

.founder-grid {
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: 48px;
	align-items: start;
}

.founder-portrait {
	border-radius: var(--radius);
	overflow: hidden;
	background: linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%);
	aspect-ratio: 3/4;
}

.founder-portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.founder-content h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: var(--navy);
	margin: 0 0 8px;
}

.founder-role {
	color: var(--accent);
	font-weight: 600;
	margin: 0 0 20px;
}

.founder-content p {
	color: var(--text-light);
	line-height: 1.7;
	margin: 0 0 16px;
}

.founder-bullets {
	list-style: none;
	padding: 0;
	margin: 24px 0 0;
}

.founder-bullets li {
	padding: 8px 0 8px 28px;
	position: relative;
	color: var(--text);
	font-size: 0.95rem;
}

.founder-bullets li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--accent);
	font-weight: 700;
}

/* ── Expertise Grid ── */
.expertise-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 40px;
}

.expertise-card {
	display: block;
	text-decoration: none;
	color: inherit;
	padding: 28px 24px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: white;
	transition: all 0.2s;
	text-align: center;
}

.expertise-card:hover {
	border-color: var(--accent);
	box-shadow: var(--shadow);
	transform: translateY(-2px);
}

.expertise-card img {
	width: 192px;
	height: 192px;
	object-fit: contain;
	margin-bottom: 16px;
}

.expertise-card h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--navy);
	margin: 0 0 8px;
}

.expertise-card p {
	font-size: 0.875rem;
	color: var(--text-light);
	margin: 0;
	line-height: 1.5;
}

.expertise-link-all {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 32px;
	color: var(--accent);
	font-weight: 600;
	text-decoration: none;
}

.expertise-link-all:hover {
	text-decoration: underline;
}

/* ── Industries (dark) ── */
.industries-section {
	background: var(--navy);
	color: white;
}

.industries-section .section-title {
	color: white;
}

.industries-section .section-subtitle {
	color: rgba(255, 255, 255, 0.7);
}

.industries-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	margin-top: 40px;
}

.industry-card {
	display: block;
	text-decoration: none;
	padding: 28px 16px;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	transition: all 0.2s;
	color: white;
}

.industry-card:hover {
	background: rgba(255, 255, 255, 0.12);
	transform: translateY(-2px);
}

.industry-card.featured {
	background: var(--accent);
	border-color: var(--accent);
	color: var(--navy);
}

.industry-card.featured:hover {
	background: #00dce6;
}

.industry-card img {
	width: 144px;
	height: 144px;
	object-fit: cover;
	border-radius: 12px;
	margin-bottom: 12px;
}

.industry-card h3 {
	font-size: 0.95rem;
	font-weight: 700;
	margin: 0;
}

/* ── AI Section ── */
.ai-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.ai-visual {
	background: var(--navy);
	border-radius: var(--radius);
	padding: 24px;
	color: #e2e8f0;
	font-family: 'Courier New', monospace;
	font-size: 0.85rem;
	line-height: 1.6;
	box-shadow: var(--shadow);
}

.ai-visual .code-comment {
	color: #64748b;
}

.ai-visual .code-keyword {
	color: var(--accent);
}

.ai-bullets {
	list-style: none;
	padding: 0;
	margin: 24px 0 0;
}

.ai-bullets li {
	padding: 10px 0 10px 32px;
	position: relative;
	color: var(--text);
}

.ai-bullets li::before {
	content: "→";
	position: absolute;
	left: 0;
	color: var(--accent);
	font-weight: 700;
}

/* ── Outcomes / Testimonials ── */
.outcomes-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 48px;
	padding-top: 48px;
	border-top: 1px solid var(--border);
}

.outcome-stat {
	text-align: center;
}

.outcome-stat .outcome-value {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 8px;
}

.outcome-stat .outcome-label {
	font-size: 0.9rem;
	color: var(--text-light);
}

.testimonial-stars {
	color: #f59e0b;
	font-size: 0.9rem;
	margin-bottom: 12px;
}

/* ── Process Steps ── */
.process-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-top: 48px;
}

.process-step {
	text-align: center;
	padding: 32px 24px;
}

.process-number {
	width: 56px;
	height: 56px;
	background: var(--accent);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 auto 20px;
}

.process-step h3 {
	font-size: 1.1rem;
	color: var(--navy);
	margin: 0 0 10px;
}

.process-step p {
	font-size: 0.925rem;
	color: var(--text-light);
	margin: 0;
	line-height: 1.6;
}

/* ── Booking Section ── */
.booking-section {
	background: linear-gradient(135deg, #0A66C2 0%, #084B8A 100%);
	color: white;
}

.booking-section .section-title {
	color: white;
}

.booking-section .section-subtitle {
	color: rgba(255, 255, 255, 0.85);
}

.booking-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	margin-top: 40px;
	align-items: start;
}

.booking-panel {
	background: white;
	border-radius: var(--radius);
	padding: 28px;
	color: var(--text);
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 20px rgba(13, 33, 55, 0.08);
}

.booking-panel--calendar {
	border-top: 3px solid var(--accent);
}

.booking-panel--form {
	border-top: 3px solid var(--primary);
}

.booking-panel h3 {
	color: var(--navy);
	margin: 0 0 16px;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.booking-panel .cal-embed {
	flex: none;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: #ffffff;
	overflow: hidden;
	display: block;
	padding: 0;
}

#my-cal-inline-30min {
	width: 100%;
	height: 750px;
	overflow: hidden;
}

#my-cal-inline-30min iframe,
#my-cal-inline-30min > div {
	width: 100% !important;
	max-width: 100% !important;
	height: 750px !important;
	min-height: 750px;
	box-sizing: border-box;
	border: 0;
}

.booking-section .contact-form {
	margin: 0;
	max-width: none;
}

.booking-section .contact-form input,
.booking-section .contact-form textarea,
.booking-section .contact-form select {
	background: #f8fafc;
}

.form-email-fallback {
	margin: 4px 0 0;
	font-size: 0.9rem;
	color: var(--text-light);
	text-align: center;
}

.form-email-fallback a {
	color: var(--primary);
	font-weight: 600;
	text-decoration: none;
}

.form-email-fallback a:hover {
	text-decoration: underline;
}

.booking-phone {
	text-align: center;
	margin-top: 24px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.95rem;
}

.booking-phone a {
	color: white;
	font-weight: 600;
}

/* ── FAQ ── */
.faq-section .section-title {
	text-align: center;
}

.faq-list {
	max-width: 760px;
	margin: 40px auto 0;
}

/* ── Final CTA ── */
.final-cta {
	background: var(--navy);
	text-align: center;
	color: white;
}

.final-cta .section-title {
	color: white;
}

.final-cta .section-subtitle {
	color: rgba(255, 255, 255, 0.75);
	margin: 0 auto 32px;
	text-align: center;
}

.final-cta-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.final-cta .btn-outline {
	border-color: white;
	color: white;
}

.final-cta .btn-outline:hover {
	background: white;
	color: var(--navy);
}

/* ── Site Footer ── */
.site-footer {
	background: #0a1628;
	color: rgba(255, 255, 255, 0.7);
	padding: 64px 24px 32px;
}

.site-footer-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
	gap: 40px;
}

.site-footer-brand img {
	height: 36px;
	margin-bottom: 16px;
}

.site-footer-brand p {
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0;
}

.footer-col h4 {
	color: white;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0 0 16px;
}

.footer-col a {
	display: block;
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	font-size: 0.9rem;
	padding: 4px 0;
	transition: color 0.2s;
}

.footer-col a:hover {
	color: var(--accent);
}

.site-footer-bottom {
	max-width: var(--max-width);
	margin: 0 auto;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.5);
}

.site-footer-topics {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 32px 24px 0;
}

.site-footer-topics .site-footer-inner {
	display: block;
	padding-bottom: 32px;
}

.footer-topics-heading {
	color: white;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0 0 16px;
}

.footer-topics-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-topics-nav a {
	display: inline-block;
	padding: 10px 18px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 9999px;
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.footer-topics-nav a:hover {
	background: rgba(0, 194, 203, 0.15);
	border-color: var(--accent);
	color: white;
}

.site-footer-bottom a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
}

/* ── Mobile ── */
@media (max-width: 1024px) {
	.hero-grid,
	.founder-grid,
	.ai-grid,
	.booking-grid {
		grid-template-columns: 1fr;
	}

	.benefits-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.expertise-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.industries-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.process-steps {
		grid-template-columns: 1fr;
	}

	.outcomes-stats {
		grid-template-columns: 1fr;
	}

	.site-footer-inner {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 1024px) {
	.site-nav {
		gap: 20px;
	}

	.site-nav a {
		font-size: 0.875rem;
	}

	.nav-why-physai {
		padding: 8px 14px;
		font-size: 0.85rem;
	}

	.header-book-btn {
		padding: 8px 14px;
		font-size: 0.85rem;
	}
}

@media (max-width: 767px) {
	body.site-theme.phys2ai-mode .site-header {
		padding: 0 max(12px, env(safe-area-inset-right)) 0 max(12px, env(safe-area-inset-left));
		overflow: visible;
	}

	.site-header-inner {
		flex-wrap: wrap;
		height: auto;
		min-height: 56px;
		padding: 10px 0 12px;
		gap: 10px 8px;
		align-items: center;
		overflow: visible;
	}

	.site-brand {
		flex: 1 1 auto;
		min-width: 0;
	}

	.site-brand-wordmark {
		font-size: 1.15rem;
	}

	.header-actions {
		flex: 0 0 auto;
		gap: 8px;
		margin-left: auto;
		padding-right: max(2px, env(safe-area-inset-right, 0px));
	}

	.nav-why-physai {
		display: inline-flex;
		padding: 8px 11px;
		font-size: 0.75rem;
	}

	.btn-label-long {
		display: none;
	}

	.btn-label-short {
		display: inline;
	}

	.header-book-btn.btn {
		padding: 8px 11px;
		font-size: 0.75rem;
		line-height: 1.2;
		white-space: nowrap;
		box-shadow: 0 2px 8px rgba(0, 194, 203, 0.28);
		transform: none;
	}

	.header-book-btn.btn:hover,
	.header-book-btn.btn:active {
		transform: none;
	}

	.site-nav {
		display: flex;
		flex-wrap: wrap;
		flex: 1 1 100%;
		width: 100%;
		order: 3;
		gap: 8px;
		justify-content: center;
		overflow: visible;
		padding: 4px 0 0;
	}

	.site-nav::-webkit-scrollbar {
		display: none;
	}

	.site-nav a:not(.site-nav-extra) {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 8px 10px;
		background: #f0f2f5;
		border: 1px solid #e5e7eb;
		border-radius: 9999px;
		font-size: 0.75rem;
		line-height: 1.2;
		text-align: center;
		white-space: normal;
		color: var(--navy);
		text-decoration: none;
		font-weight: 500;
		min-height: 36px;
		box-sizing: border-box;
	}

	.site-nav > a:first-child {
		flex: 1 1 100%;
		max-width: 100%;
	}

	.site-nav > a:nth-child(n+2):nth-child(-n+4) {
		flex: 1 1 calc(33.333% - 6px);
		max-width: calc(33.333% - 6px);
	}

	.site-nav > a:nth-child(5),
	.site-nav > a:nth-child(6) {
		flex: 1 1 calc(50% - 6px);
		max-width: calc(50% - 6px);
	}

	.site-nav a:not(.site-nav-extra):active {
		background: #e6fafb;
		border-color: var(--accent);
	}

	.site-nav-extra {
		display: none;
	}

	#my-cal-inline-30min,
	#my-cal-inline-30min iframe,
	#my-cal-inline-30min > div {
		height: 580px !important;
		min-height: 580px;
	}

	.landing-section {
		padding: 56px 20px;
	}

	.hero-section {
		padding: 40px 20px 56px;
	}

	.benefits-grid,
	.expertise-grid,
	.industries-grid,
	.stats-grid {
		grid-template-columns: 1fr;
	}

	.founder-grid {
		grid-template-columns: 1fr;
	}

	.founder-portrait {
		max-width: 280px;
		margin: 0 auto;
	}

	.site-footer-inner {
		grid-template-columns: 1fr;
	}
}

/* ── Inner pages (shared theme content areas) ── */
body.site-theme.phys2ai-mode .main-banner,
body.site-theme.phys2ai-mode .contact,
body.site-theme.phys2ai-mode .about,
body.site-theme.phys2ai-mode .team-section,
body.site-theme.phys2ai-mode .applications-banner,
body.site-theme.phys2ai-mode .new-page,
body.site-theme.phys2ai-mode .expertise {
	width: auto;
	max-width: var(--max-width);
	margin: 32px auto;
	padding: 32px;
	background: #ffffff;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	border: 1px solid var(--border);
}

body.site-theme.phys2ai-mode .services-banner,
body.site-theme.phys2ai-mode .expertise-banner {
	max-width: var(--max-width);
	margin: 32px auto;
	width: auto;
}

body.site-theme.phys2ai-mode .service-box,
body.site-theme.phys2ai-mode .expertise-category {
	background: #ffffff;
	border: 1px solid var(--border);
}

body.site-theme.phys2ai-mode .main-banner h1,
body.site-theme.phys2ai-mode .main-banner h2 {
	color: var(--navy);
}

body.site-theme.phys2ai-mode .page-content {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 24px 48px;
}
