/* ============================================================
   Ozlicence — shared page design system
   Palette taken from the logo: charcoal black + amber gold
   ============================================================ */
:root {
	--oz-black: #131313;
	--oz-charcoal: #1e1e1e;
	--oz-amber: #e7a354;
	--oz-amber-dark: #d18f3e;
	--oz-amber-deep: #b06f1e;
	--oz-ink: #1a1f36;
	--oz-body: #3d4147;
	--oz-muted: #6b7280;
	--oz-line: #e5e2da;
	--oz-bg-1: #faf8f4;
	--oz-bg-2: #f4efe8;
}

/* ---------- Page banner ---------- */
.oz-hero {
	background: linear-gradient(150deg, #0c0c0c 0%, #1e1e1e 55%, #33270f 100%) !important;
	padding: 60px 0 56px;
	position: relative;
}
.oz-hero h1 {
	color: #fff !important;
	font-size: 44px !important;
	font-weight: 700;
	margin-bottom: 10px;
	position: relative;
	display: inline-block;
	padding-bottom: 14px;
}
.oz-hero h1:before { display: none !important; }
.oz-hero h1:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 4px !important;
	width: 84px !important;
	border-radius: 4px;
	background-color: var(--oz-amber) !important;
}
.oz-hero .breadcrumb {
	background: transparent;
	padding: 0;
	margin: 6px 0 0;
}
.oz-hero .breadcrumb li,
.oz-hero .breadcrumb-item,
.oz-hero .breadcrumb-item.active {
	color: rgba(255, 255, 255, 0.75) !important;
	font-size: 14px;
}
.oz-hero .breadcrumb a { color: var(--oz-amber) !important; }
.oz-hero .breadcrumb a:hover { color: #fff !important; }
@media (max-width: 991px) {
	.oz-hero { padding: 40px 0 38px; }
	.oz-hero h1 { font-size: 30px !important; }
}

/* ---------- Sections ---------- */
.oz-section {
	background: linear-gradient(180deg, var(--oz-bg-1) 0%, var(--oz-bg-2) 100%);
	padding: 70px 0;
}
@media (max-width: 767px) { .oz-section { padding: 44px 0; } }

.oz-section-head { text-align: center; margin-bottom: 44px; }
.oz-section-head h2, .oz-section-head h3 {
	color: var(--oz-ink);
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 12px;
}
.oz-section-head h2 span, .oz-section-head h3 span { color: var(--oz-amber-deep); }
.oz-section-head p {
	color: var(--oz-muted);
	font-size: 15.5px;
	max-width: 680px;
	margin: 0 auto;
	line-height: 1.75;
}
.oz-section-head .oz-underline {
	width: 64px;
	height: 4px;
	border-radius: 4px;
	background: var(--oz-amber);
	margin: 18px auto 0;
}
@media (max-width: 767px) { .oz-section-head h2, .oz-section-head h3 { font-size: 24px; } }

/* ---------- Cards ---------- */
.oz-card {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 14px 44px rgba(26, 26, 26, 0.08);
	padding: 40px 44px;
	margin-bottom: 26px;
}
@media (max-width: 767px) { .oz-card { padding: 26px 22px; } }

/* ---------- Long-form text (justified) ---------- */
.oz-prose {
	color: var(--oz-body);
	font-size: 15.5px;
	line-height: 1.9;
	text-align: justify;
	text-justify: inter-word;
}
.oz-prose p { margin-bottom: 18px; text-align: justify; }
.oz-prose h1, .oz-prose h2, .oz-prose h3, .oz-prose h4, .oz-prose h5, .oz-prose h6 {
	color: var(--oz-ink);
	font-weight: 700;
	text-align: left;
	margin: 28px 0 14px;
	line-height: 1.35;
}
.oz-prose h2 { font-size: 26px; }
.oz-prose h3 { font-size: 22px; }
.oz-prose h4 { font-size: 19px; }
.oz-prose a { color: var(--oz-amber-deep); font-weight: 600; }
.oz-prose a:hover { color: var(--oz-amber-dark); text-decoration: underline; }
.oz-prose ul, .oz-prose ol { margin: 0 0 18px 22px; }
.oz-prose li { margin-bottom: 8px; }
.oz-prose img { max-width: 100%; height: auto; border-radius: 12px; }
.oz-prose strong { color: var(--oz-ink); }

.oz-page-title-inline {
	color: var(--oz-ink);
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 6px;
	position: relative;
	display: inline-block;
	padding-bottom: 14px;
}
.oz-page-title-inline:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 4px;
	width: 64px;
	border-radius: 4px;
	background: var(--oz-amber);
}

/* ---------- Buttons ---------- */
.oz-btn, a.oz-btn {
	display: inline-block;
	background: var(--oz-amber);
	color: #fff !important;
	border: none;
	border-radius: 10px;
	padding: 15px 38px;
	font-size: 15.5px;
	font-weight: 700;
	letter-spacing: .4px;
	cursor: pointer;
	text-align: center;
	transition: background .2s, transform .1s, box-shadow .2s;
	box-shadow: 0 8px 20px rgba(231, 163, 84, 0.35);
}
.oz-btn:hover, a.oz-btn:hover {
	background: var(--oz-amber-dark);
	color: #fff !important;
	box-shadow: 0 10px 24px rgba(231, 163, 84, 0.45);
}
.oz-btn:active { transform: translateY(1px); }
.oz-btn-dark, a.oz-btn-dark {
	background: var(--oz-charcoal);
	box-shadow: 0 8px 20px rgba(26, 26, 26, 0.25);
}
.oz-btn-dark:hover, a.oz-btn-dark:hover {
	background: #000;
	box-shadow: 0 10px 24px rgba(26, 26, 26, 0.35);
}
.oz-btn-lg { padding: 18px 52px; font-size: 17px; }

/* ---------- Feature / info tiles ---------- */
.oz-tile {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 10px 34px rgba(26, 26, 26, 0.08);
	padding: 30px 28px;
	height: 100%;
	transition: transform .25s, box-shadow .25s;
}
.oz-tile:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 44px rgba(26, 26, 26, 0.13);
}
.oz-tile .oz-tile-ic {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: rgba(231, 163, 84, 0.16);
	color: var(--oz-amber-deep);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 21px;
	margin-bottom: 18px;
}
.oz-tile h5 { color: var(--oz-ink); font-size: 18px; font-weight: 700; margin: 0 0 10px; }
.oz-tile p { color: var(--oz-muted); font-size: 14.5px; line-height: 1.75; margin: 0; text-align: justify; }

/* ---------- Pricing cards ---------- */
.oz-price-card {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 14px 44px rgba(26, 26, 26, 0.08);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: transform .25s, box-shadow .25s;
	border-top: 5px solid transparent;
}
.oz-price-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 54px rgba(26, 26, 26, 0.14);
	border-top-color: var(--oz-amber);
}
.oz-price-head {
	background: linear-gradient(150deg, #131313 0%, #262626 70%, #33270f 100%);
	color: #fff;
	padding: 28px 26px;
	text-align: center;
}
.oz-price-head h3 {
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	margin: 0;
	line-height: 1.4;
}
.oz-price-head .oz-price-tag {
	color: var(--oz-amber);
	font-size: 15px;
	font-weight: 600;
	display: block;
	margin-top: 6px;
}
.oz-price-body {
	padding: 26px 28px;
	color: var(--oz-body);
	font-size: 14.5px;
	line-height: 1.85;
	flex: 1;
	text-align: left;
}
.oz-price-body ul { margin: 0; padding-left: 4px; list-style: none; }
.oz-price-body li { margin-bottom: 10px; }
.oz-price-foot { padding: 0 28px 30px; text-align: center; }

/* ---------- FAQ accordion ---------- */
.oz-faq .card {
	border: 1px solid var(--oz-line);
	border-radius: 14px !important;
	margin-bottom: 14px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 6px 20px rgba(26, 26, 26, 0.05);
}
.oz-faq .card-header {
	background: #fff;
	border: none;
	padding: 0;
}
.oz-faq .card-header h5 { margin: 0; }
.oz-faq .card-header a {
	display: block;
	padding: 18px 56px 18px 24px;
	color: var(--oz-ink) !important;
	font-size: 16px;
	font-weight: 600;
	position: relative;
	text-decoration: none;
}
.oz-faq .card-header a:before,
.oz-faq .card-header a:after { display: none !important; }
.oz-faq .card-header a .oz-faq-ic {
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(231, 163, 84, 0.16);
	color: var(--oz-amber-deep);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	transition: transform .25s, background .25s, color .25s;
}
.oz-faq .card-header a:not(.collapsed) { color: var(--oz-amber-deep) !important; }
.oz-faq .card-header a:not(.collapsed) .oz-faq-ic {
	background: var(--oz-amber);
	color: #fff;
	transform: translateY(-50%) rotate(180deg);
}
.oz-faq .card-body {
	padding: 4px 24px 20px;
	color: var(--oz-body);
	font-size: 14.5px;
	line-height: 1.85;
	text-align: justify;
	border-top: 1px solid var(--oz-bg-2);
	padding-top: 16px;
}

/* ---------- Forms ---------- */
.oz-form label {
	display: block;
	font-size: 13.5px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 8px;
}
.oz-form label .required, .oz-form label .req { color: #d93025; }
.oz-form input[type="text"],
.oz-form input[type="email"],
.oz-form input[type="tel"],
.oz-form select,
.oz-form textarea {
	width: 100%;
	height: 50px;
	border: 1.5px solid var(--oz-line);
	border-radius: 10px;
	padding: 0 16px;
	font-size: 14.5px;
	color: var(--oz-ink);
	background: #fbfaf7;
	margin-bottom: 20px;
	transition: border-color .2s, box-shadow .2s, background .2s;
}
.oz-form textarea { height: auto; min-height: 140px; padding: 14px 16px; resize: vertical; }
.oz-form input:focus, .oz-form select:focus, .oz-form textarea:focus {
	outline: none;
	border-color: var(--oz-amber);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(231, 163, 84, 0.22);
}

/* ---------- Contact info panel ---------- */
.oz-info-panel {
	background: linear-gradient(150deg, #0c0c0c 0%, #1e1e1e 55%, #33270f 100%);
	border-radius: 18px;
	color: #fff;
	padding: 38px 34px;
	height: 100%;
}
.oz-info-panel h4 {
	color: #fff;
	font-size: 21px;
	font-weight: 700;
	margin: 0 0 8px;
	position: relative;
	padding-bottom: 14px;
}
.oz-info-panel h4:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 3px;
	width: 48px;
	border-radius: 3px;
	background: var(--oz-amber);
}
.oz-info-item { display: flex; gap: 16px; margin-top: 26px; }
.oz-info-item .oz-info-ic {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(231, 163, 84, 0.18);
	color: var(--oz-amber);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
}
.oz-info-item h6 { color: var(--oz-amber); font-size: 13px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; margin: 0 0 4px; }
.oz-info-item p, .oz-info-item a { color: rgba(255,255,255,0.88); font-size: 14.5px; margin: 0; line-height: 1.6; word-break: break-word; }
.oz-info-item a:hover { color: var(--oz-amber); }
.oz-info-social { margin-top: 30px; display: flex; gap: 12px; }
.oz-info-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.18);
	color: #fff !important;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	transition: background .2s, border-color .2s, color .2s;
}
.oz-info-social a:hover { background: var(--oz-amber); border-color: var(--oz-amber); color: #1a1a1a !important; }

/* ---------- Blog / career cards ---------- */
.oz-post-card {
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 14px 44px rgba(26, 26, 26, 0.08);
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
	height: calc(100% - 30px);
	transition: transform .25s, box-shadow .25s;
}
.oz-post-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 54px rgba(26, 26, 26, 0.14);
}
.oz-post-media { position: relative; overflow: hidden; }
.oz-post-media img {
	width: 100%;
	height: 225px;
	object-fit: cover;
	display: block;
	transition: transform .4s;
}
.oz-post-card:hover .oz-post-media img { transform: scale(1.05); }
.oz-post-body { padding: 24px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.oz-post-body h4 { font-size: 18px; font-weight: 700; line-height: 1.45; margin: 0 0 10px; }
.oz-post-body h4 a { color: var(--oz-ink) !important; }
.oz-post-body h4 a:hover { color: var(--oz-amber-deep) !important; }
.oz-post-body p { color: var(--oz-muted); font-size: 14px; line-height: 1.75; margin: 0 0 16px; text-align: justify; flex: 1; }
.oz-post-meta {
	color: var(--oz-amber-deep);
	font-size: 13px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
	border-top: 1px solid var(--oz-bg-2);
	padding-top: 14px;
}
.oz-post-link { color: var(--oz-amber-deep) !important; font-weight: 700; font-size: 14px; }
.oz-post-link:hover { color: var(--oz-amber-dark) !important; text-decoration: underline; }

/* ---------- Practice / centered CTA card ---------- */
.oz-cta-card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 18px 54px rgba(26, 26, 26, 0.10);
	padding: 54px 48px;
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}
.oz-cta-card .oz-cta-ic {
	width: 76px;
	height: 76px;
	border-radius: 20px;
	background: rgba(231, 163, 84, 0.16);
	color: var(--oz-amber-deep);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	margin: 0 auto 24px;
}
.oz-cta-card h2 {
	color: var(--oz-ink);
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 18px;
}
.oz-cta-card .oz-cta-text {
	color: var(--oz-body);
	font-size: 15.5px;
	line-height: 1.9;
	text-align: justify;
	margin-bottom: 8px;
}
.oz-cta-card .oz-cta-text p { text-align: justify; margin-bottom: 14px; }
.oz-cta-card img { max-width: 100%; height: auto; border-radius: 14px; margin: 18px 0; }
@media (max-width: 767px) { .oz-cta-card { padding: 32px 22px; } .oz-cta-card h2 { font-size: 22px; } }

/* ---------- About split ---------- */
.oz-about-media img {
	width: 100%;
	border-radius: 18px;
	box-shadow: 0 18px 44px rgba(26, 26, 26, 0.14);
}
.oz-about-eyebrow {
	color: var(--oz-amber-deep);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	margin-bottom: 10px;
	display: block;
}
.oz-stat-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.oz-stat {
	flex: 1 1 140px;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 10px 30px rgba(26, 26, 26, 0.07);
	padding: 18px 20px;
	text-align: center;
}
.oz-stat b { display: block; color: var(--oz-amber-deep); font-size: 24px; font-weight: 700; }
.oz-stat span { color: var(--oz-muted); font-size: 13px; }
