/* ==========================================================================
   Xodd Solutions — Main Stylesheet
   Fast, lightweight, mobile-first, SEO-friendly
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
	--xodd-primary: #2563eb;
	--xodd-primary-dark: #1d4ed8;
	--xodd-primary-light: #3b82f6;
	--xodd-primary-glow: rgba(37, 99, 235, 0.4);
	--xodd-dark: #0f172a;
	--xodd-dark-2: #1e293b;
	--xodd-dark-3: #0a0f1e;
	--xodd-text: #334155;
	--xodd-muted: #64748b;
	--xodd-light: #f8fafc;
	--xodd-light-2: #f1f5f9;
	--xodd-border: #e2e8f0;
	--xodd-white: #ffffff;
	--xodd-radius: 12px;
	--xodd-radius-sm: 8px;
	--xodd-radius-lg: 20px;
	--xodd-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
	--xodd-shadow-lg: 0 10px 40px rgba(15, 23, 42, 0.12);
	--xodd-shadow-xl: 0 20px 60px rgba(15, 23, 42, 0.18);
	--xodd-shadow-glow: 0 0 40px rgba(37, 99, 235, 0.3);
	--xodd-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--xodd-font-mono: "JetBrains Mono", "Fira Code", monospace;
	--xodd-container: 1200px;
	--xodd-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--xodd-transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--xodd-font);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--xodd-text);
	background: var(--xodd-white);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--xodd-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover,
a:focus {
	color: var(--xodd-primary-dark);
	text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.75em;
	line-height: 1.25;
	color: var(--xodd-dark);
	font-weight: 700;
}

p {
	margin: 0 0 1.25em;
}

ul, ol {
	margin: 0 0 1.25em;
	padding-left: 1.5em;
}

/* ---------- Accessibility ---------- */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	word-wrap: normal !important;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100000;
	background: var(--xodd-dark);
	color: var(--xodd-white);
	padding: 0.75em 1.5em;
}

.skip-link:focus {
	left: 0;
	color: var(--xodd-white);
	text-decoration: none;
}

:focus-visible {
	outline: 3px solid var(--xodd-primary);
	outline-offset: 2px;
}

/* ---------- Layout ---------- */
.container {
	max-width: var(--xodd-container);
	margin: 0 auto;
	padding: 0 1.25rem;
}

.site-main {
	min-height: 50vh;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-block;
	padding: 0.8em 1.75em;
	border-radius: var(--xodd-radius-sm);
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.4;
	text-align: center;
	cursor: pointer;
	border: 2px solid transparent;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn:hover,
.btn:focus {
	text-decoration: none;
	transform: translateY(-1px);
}

.btn-primary {
	background: var(--xodd-primary);
	color: var(--xodd-white);
}

.btn-primary:hover,
.btn-primary:focus {
	background: var(--xodd-primary-dark);
	color: var(--xodd-white);
}

.btn-outline {
	background: transparent;
	color: var(--xodd-white);
	border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover,
.btn-outline:focus {
	background: rgba(255, 255, 255, 0.1);
	color: var(--xodd-white);
	border-color: var(--xodd-white);
}

.btn-light {
	background: var(--xodd-white);
	color: var(--xodd-dark);
}

.btn-light:hover,
.btn-light:focus {
	background: var(--xodd-light);
	color: var(--xodd-dark);
}

.btn-sm {
	padding: 0.5em 1.25em;
	font-size: 0.9rem;
}

/* ---------- Header ---------- */
.site-header {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--xodd-border);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: 72px;
}

.site-branding .custom-logo {
	max-height: 48px;
	width: auto;
}

.header-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.header-logo-text {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--xodd-dark);
	letter-spacing: -0.02em;
}

.header-logo-accent {
	color: var(--xodd-primary);
}

.header-logo:hover .header-logo-text {
	color: var(--xodd-primary);
}

.site-title {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 800;
}

.site-title a {
	color: var(--xodd-dark);
}

.site-title a:hover {
	color: var(--xodd-primary);
	text-decoration: none;
}

.site-description {
	margin: 0;
	font-size: 0.85rem;
	color: var(--xodd-muted);
}

/* ---------- Navigation ---------- */
.main-navigation {
	display: flex;
	align-items: center;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 0.25rem;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	padding: 0.6rem 0.9rem;
	color: var(--xodd-dark-2);
	font-weight: 500;
	border-radius: var(--xodd-radius-sm);
}

.main-navigation a:hover,
.main-navigation a:focus,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
	color: var(--xodd-primary);
	background: rgba(37, 99, 235, 0.06);
	text-decoration: none;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--xodd-dark);
	border-radius: 2px;
	position: relative;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
	content: "";
	position: absolute;
	left: 0;
}

.menu-toggle-icon::before {
	top: -7px;
}

.menu-toggle-icon::after {
	top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
	background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
	transform: rotate(45deg);
	top: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
	transform: rotate(-45deg);
	top: 0;
}

.header-cta {
	flex-shrink: 0;
}

/* ---------- Hero ---------- */
.hero {
	background: linear-gradient(135deg, var(--xodd-dark) 0%, var(--xodd-dark-2) 100%);
	color: var(--xodd-white);
	padding: 5rem 0 4rem;
}

.hero-inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 3rem;
	align-items: center;
}

.hero-eyebrow {
	display: inline-block;
	background: rgba(37, 99, 235, 0.2);
	color: #93c5fd;
	padding: 0.35em 1em;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
}

.hero-title {
	color: var(--xodd-white);
	font-size: clamp(2rem, 4vw, 3.25rem);
	margin-bottom: 1rem;
}

.hero-subtitle {
	color: #cbd5e1;
	font-size: 1.15rem;
	margin-bottom: 2rem;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.hero-stats {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.stat {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--xodd-radius);
	padding: 1.5rem;
	text-align: center;
}

.stat-number {
	display: block;
	font-size: 2.25rem;
	font-weight: 800;
	color: var(--xodd-white);
	line-height: 1.2;
}

.stat-label {
	display: block;
	margin-top: 0.25rem;
	color: #94a3b8;
	font-size: 0.9rem;
}

/* ---------- Sections ---------- */
.section {
	padding: 4.5rem 0;
}

.section-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 3rem;
}

.section-eyebrow {
	display: inline-block;
	color: var(--xodd-primary);
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}

.section-title {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	margin-bottom: 0.75rem;
}

.section-subtitle {
	color: var(--xodd-muted);
	font-size: 1.05rem;
}

/* ---------- Services Grid ---------- */
.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.service-card {
	background: var(--xodd-white);
	border: 1px solid var(--xodd-border);
	border-radius: var(--xodd-radius);
	padding: 2rem 1.5rem;
	box-shadow: var(--xodd-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	flex-direction: column;
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--xodd-shadow-lg);
}

.service-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	line-height: 1;
}

.service-title {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}

.service-desc {
	color: var(--xodd-muted);
	font-size: 0.95rem;
	flex-grow: 1;
}

.service-link {
	font-weight: 600;
	font-size: 0.95rem;
}

/* ---------- AI Service Cards ---------- */
.service-card--ai {
	background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
	border: 1px solid rgba(99, 102, 241, 0.3);
	position: relative;
	overflow: hidden;
}

.service-card--ai::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #6366f1, #8b5cf6, #a855f7);
	border-radius: var(--xodd-radius) var(--xodd-radius) 0 0;
}

.service-card--ai .service-card-glow {
	background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
}

.service-card--ai .service-icon {
	font-size: 2.75rem;
	filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.5));
}

.service-card--ai .service-title {
	color: var(--xodd-white);
}

.service-card--ai .service-desc {
	color: #94a3b8;
}

.service-card--ai .service-features-list li {
	color: #cbd5e1;
}

.service-card--ai .service-features-list li::before {
	color: #8b5cf6;
}

.service-card--ai .service-link {
	color: #a78bfa;
}

.service-card--ai .service-link:hover {
	color: #c4b5fd;
}

.service-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: linear-gradient(135deg, #6366f1, #8b5cf6);
	color: var(--xodd-white);
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.25rem 0.6rem;
	border-radius: 9999px;
	box-shadow: 0 0 12px rgba(99, 102, 241, 0.5);
}

.service-card--ai:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2), 0 0 0 1px rgba(99, 102, 241, 0.3);
	border-color: rgba(99, 102, 241, 0.5);
}

/* ---------- Why Choose Us ---------- */
.why-section {
	background: var(--xodd-light);
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.why-item {
	background: var(--xodd-white);
	border-radius: var(--xodd-radius);
	padding: 2rem 1.5rem;
	border-top: 4px solid var(--xodd-primary);
	box-shadow: var(--xodd-shadow);
}

.why-title {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}

.why-desc {
	color: var(--xodd-muted);
	font-size: 0.95rem;
	margin-bottom: 0;
}

/* ---------- CTA ---------- */
.cta-section {
	background: linear-gradient(135deg, var(--xodd-primary) 0%, var(--xodd-primary-dark) 100%);
	color: var(--xodd-white);
	padding: 4rem 0;
	text-align: center;
}

.cta-title {
	color: var(--xodd-white);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	margin-bottom: 0.75rem;
}

.cta-text {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto 2rem;
}

/* ---------- Page Hero ---------- */
.page-hero {
	background: linear-gradient(135deg, var(--xodd-dark) 0%, var(--xodd-dark-2) 100%);
	color: var(--xodd-white);
	padding: 4rem 0 3.5rem;
	text-align: center;
}

.page-eyebrow {
	display: inline-block;
	color: #93c5fd;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}

.page-hero-title {
	color: var(--xodd-white);
	font-size: clamp(1.9rem, 3.5vw, 2.75rem);
	max-width: 800px;
	margin: 0 auto 1rem;
}

.page-hero-subtitle {
	color: #cbd5e1;
	font-size: 1.1rem;
	max-width: 640px;
	margin: 0 auto;
}

/* ---------- Services Page ---------- */
.services-page {
	padding: 4rem 0;
	display: grid;
	gap: 2.5rem;
}

.service-detail {
	background: var(--xodd-white);
	border: 1px solid var(--xodd-border);
	border-radius: var(--xodd-radius);
	padding: 2.5rem;
	box-shadow: var(--xodd-shadow);
	scroll-margin-top: 90px;
	position: relative;
	overflow: hidden;
}

.service-detail--ai {
	background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
	border-color: rgba(99, 102, 241, 0.3);
	color: var(--xodd-white);
}

.service-detail--ai::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #6366f1, #8b5cf6, #a855f7);
}

.service-detail-badge {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	background: linear-gradient(135deg, #6366f1, #8b5cf6);
	color: var(--xodd-white);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.3rem 0.75rem;
	border-radius: 9999px;
	box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}

.service-detail--ai .service-detail-title {
	color: var(--xodd-white);
}

.service-detail--ai .service-detail-desc {
	color: #94a3b8;
}

.service-detail--ai .service-features li {
	color: #cbd5e1;
}

.service-detail--ai .service-features li::before {
	color: #8b5cf6;
}

.service-detail--ai .btn-primary {
	background: linear-gradient(135deg, #6366f1, #8b5cf6);
	border-color: transparent;
}

.service-detail--ai .btn-primary:hover {
	background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.service-detail-title {
	font-size: 1.6rem;
	margin-bottom: 0.75rem;
}

.service-detail-desc {
	color: var(--xodd-text);
	font-size: 1.05rem;
}

.service-features {
	margin-bottom: 1.5rem;
}

.service-features li {
	margin-bottom: 0.4rem;
}

/* ---------- About Page ---------- */
.about-page {
	padding: 4rem 0;
	display: grid;
	gap: 3.5rem;
}

.about-title {
	font-size: 1.75rem;
	margin-bottom: 1rem;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.value-item {
	background: var(--xodd-light);
	border-radius: var(--xodd-radius);
	padding: 1.75rem;
	border-left: 4px solid var(--xodd-primary);
}

.value-title {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}

.value-desc {
	color: var(--xodd-muted);
	font-size: 0.95rem;
	margin-bottom: 0;
}

.process-list {
	list-style: none;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	counter-reset: process;
}

.process-step {
	background: var(--xodd-white);
	border: 1px solid var(--xodd-border);
	border-radius: var(--xodd-radius);
	padding: 1.75rem;
	box-shadow: var(--xodd-shadow);
}

.process-title {
	font-size: 1.05rem;
	margin-bottom: 0.5rem;
	color: var(--xodd-primary);
}

.process-desc {
	color: var(--xodd-muted);
	font-size: 0.95rem;
	margin-bottom: 0;
}

/* ---------- Contact Page ---------- */
.contact-page {
	padding: 4rem 0;
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 3rem;
	align-items: start;
}

.contact-title {
	font-size: 1.5rem;
	margin-bottom: 0.75rem;
}

.contact-intro {
	color: var(--xodd-muted);
	margin-bottom: 1.5rem;
}

.contact-details {
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-item {
	padding: 1rem 0;
	border-bottom: 1px solid var(--xodd-border);
}

.contact-label {
	display: block;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--xodd-muted);
	margin-bottom: 0.25rem;
}

.contact-value {
	font-size: 1.05rem;
	color: var(--xodd-dark);
}

.contact-form-wrap {
	background: var(--xodd-white);
	border: 1px solid var(--xodd-border);
	border-radius: var(--xodd-radius);
	padding: 2.5rem;
	box-shadow: var(--xodd-shadow);
}

.form-field {
	margin-bottom: 1.25rem;
}

.form-field label {
	display: block;
	font-weight: 600;
	font-size: 0.95rem;
	margin-bottom: 0.4rem;
	color: var(--xodd-dark);
}

.form-field .required {
	color: #dc2626;
}

.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	padding: 0.7rem 0.9rem;
	border: 1px solid var(--xodd-border);
	border-radius: var(--xodd-radius-sm);
	font-family: inherit;
	font-size: 1rem;
	color: var(--xodd-dark);
	background: var(--xodd-white);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	outline: none;
	border-color: var(--xodd-primary);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-submit {
	margin-bottom: 0;
}

.xodd-hp-field {
	position: absolute !important;
	left: -9999px !important;
	opacity: 0;
	height: 0;
	overflow: hidden;
}

.contact-status {
	margin-top: 1rem;
	padding: 0.75rem 1rem;
	border-radius: var(--xodd-radius-sm);
	display: none;
}

.contact-status.success {
	display: block;
	background: #ecfdf5;
	color: #065f46;
	border: 1px solid #a7f3d0;
}

.contact-status.error {
	display: block;
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}

/* ---------- Blog ---------- */
.page-container,
.blog-page,
.single-container {
	padding-top: 3.5rem;
	padding-bottom: 4rem;
}

.page-header {
	margin-bottom: 2.5rem;
}

.page-title {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	margin-bottom: 0.5rem;
}

.archive-description {
	color: var(--xodd-muted);
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
}

.blog-card {
	background: var(--xodd-white);
	border: 1px solid var(--xodd-border);
	border-radius: var(--xodd-radius);
	overflow: hidden;
	box-shadow: var(--xodd-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	flex-direction: column;
}

.blog-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--xodd-shadow-lg);
}

.blog-card-thumb {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.blog-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-thumb img {
	transform: scale(1.05);
}

.blog-card-body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.blog-card-cats {
	margin-bottom: 0.75rem;
}

.blog-card-cats a {
	display: inline-block;
	background: rgba(37, 99, 235, 0.08);
	color: var(--xodd-primary);
	font-size: 0.8rem;
	font-weight: 600;
	padding: 0.2em 0.8em;
	border-radius: 999px;
	margin-right: 0.35rem;
}

.blog-card-cats a:hover {
	background: rgba(37, 99, 235, 0.15);
	text-decoration: none;
}

.blog-card-title {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}

.blog-card-title a {
	color: var(--xodd-dark);
}

.blog-card-title a:hover {
	color: var(--xodd-primary);
	text-decoration: none;
}

.blog-card-meta {
	font-size: 0.85rem;
	color: var(--xodd-muted);
	margin-bottom: 0.75rem;
}

.blog-card-excerpt {
	color: var(--xodd-muted);
	font-size: 0.95rem;
	flex-grow: 1;
}

.blog-card-excerpt p {
	margin-bottom: 1rem;
}

.blog-card-link {
	font-weight: 600;
	font-size: 0.95rem;
}

/* ---------- Pagination ---------- */
.pagination,
.navigation.pagination {
	margin-top: 3rem;
	text-align: center;
}

.pagination .nav-links {
	display: inline-flex;
	gap: 0.35rem;
	flex-wrap: wrap;
}

.pagination .page-numbers {
	display: inline-block;
	padding: 0.5em 0.9em;
	border: 1px solid var(--xodd-border);
	border-radius: var(--xodd-radius-sm);
	color: var(--xodd-dark);
	font-weight: 600;
}

.pagination .page-numbers.current {
	background: var(--xodd-primary);
	border-color: var(--xodd-primary);
	color: var(--xodd-white);
}

.pagination .page-numbers:hover {
	background: var(--xodd-light);
	text-decoration: none;
}

/* ---------- Single Post ---------- */
.single-article {
	max-width: 800px;
	margin: 0 auto;
}

.entry-title {
	font-size: clamp(1.9rem, 3.5vw, 2.75rem);
	margin-bottom: 0.75rem;
}

.entry-meta {
	color: var(--xodd-muted);
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.entry-meta a {
	color: var(--xodd-muted);
}

.entry-meta a:hover {
	color: var(--xodd-primary);
}

.post-thumbnail {
	margin-bottom: 2rem;
	border-radius: var(--xodd-radius);
	overflow: hidden;
}

.entry-content {
	font-size: 1.05rem;
}

.entry-content h2 {
	font-size: 1.6rem;
	margin-top: 2rem;
}

.entry-content h3 {
	font-size: 1.3rem;
	margin-top: 1.75rem;
}

.entry-content img {
	border-radius: var(--xodd-radius);
}

.entry-content blockquote {
	border-left: 4px solid var(--xodd-primary);
	margin: 1.5rem 0;
	padding: 0.5rem 1.5rem;
	background: var(--xodd-light);
	border-radius: 0 var(--xodd-radius-sm) var(--xodd-radius-sm) 0;
	font-style: italic;
}

.entry-footer {
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--xodd-border);
}

.tags-links a {
	display: inline-block;
	background: var(--xodd-light);
	border: 1px solid var(--xodd-border);
	color: var(--xodd-muted);
	font-size: 0.85rem;
	padding: 0.3em 0.9em;
	border-radius: 999px;
	margin: 0.2rem 0.3rem 0.2rem 0;
}

.tags-links a:hover {
	background: var(--xodd-primary);
	border-color: var(--xodd-primary);
	color: var(--xodd-white);
	text-decoration: none;
}

.author-bio {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	background: var(--xodd-light);
	border-radius: var(--xodd-radius);
	padding: 1.75rem;
	margin-top: 2.5rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.author-avatar img {
	border-radius: 50%;
}

.author-name {
	font-size: 1.15rem;
	margin-bottom: 0.35rem;
}

.author-description {
	color: var(--xodd-muted);
	font-size: 0.95rem;
	margin-bottom: 0;
}

.post-navigation {
	max-width: 800px;
	margin: 2.5rem auto 0;
}

.post-navigation .nav-links {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}

.post-navigation a {
	font-weight: 600;
}

/* ---------- Comments ---------- */
.comments-area {
	max-width: 800px;
	margin: 3rem auto 0;
}

.comments-title,
.comment-reply-title {
	font-size: 1.4rem;
}

.comment-list {
	list-style: none;
	padding: 0;
}

.comment-list .comment-body {
	background: var(--xodd-light);
	border-radius: var(--xodd-radius);
	padding: 1.5rem;
	margin-bottom: 1rem;
}

.comment-list .children {
	list-style: none;
	padding-left: 2rem;
}

.comment-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.3rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 0.7rem 0.9rem;
	border: 1px solid var(--xodd-border);
	border-radius: var(--xodd-radius-sm);
	font-family: inherit;
	font-size: 1rem;
}

.comment-form .submit {
	background: var(--xodd-primary);
	color: var(--xodd-white);
	border: none;
	padding: 0.8em 1.75em;
	border-radius: var(--xodd-radius-sm);
	font-weight: 600;
	cursor: pointer;
	font-size: 1rem;
}

.comment-form .submit:hover {
	background: var(--xodd-primary-dark);
}

/* ---------- Footer ---------- */
.site-footer {
	background: var(--xodd-dark-3);
	color: #94a3b8;
	position: relative;
	overflow: hidden;
}

.footer-glow {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: 300px;
	background: radial-gradient(ellipse, rgba(37,99,235,0.08), transparent 70%);
	pointer-events: none;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 3rem;
	padding-top: 4rem;
	padding-bottom: 3rem;
	position: relative;
	z-index: 1;
}

.footer-logo {
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--xodd-white);
	text-decoration: none;
	letter-spacing: -0.02em;
	margin-bottom: 0.75rem;
}

.footer-logo-accent {
	color: var(--xodd-primary);
}

.footer-logo:hover {
	color: var(--xodd-white);
	text-decoration: none;
}

.footer-site-title {
	margin: 0 0 0.5rem;
	font-size: 1.4rem;
}

.footer-site-title a {
	color: var(--xodd-white);
}

.footer-site-title a:hover {
	color: var(--xodd-primary);
	text-decoration: none;
}

.footer-tagline {
	color: #94a3b8;
	font-size: 0.95rem;
	margin-bottom: 1rem;
}

.footer-contact a {
	color: #94a3b8;
	font-size: 0.95rem;
}

.footer-contact a:hover {
	color: var(--xodd-white);
	text-decoration: underline;
}

.footer-heading {
	color: var(--xodd-white);
	font-size: 1.1rem;
	margin-bottom: 1.25rem;
	font-weight: 700;
}

.footer-links ul,
.footer-service-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li,
.footer-service-list li {
	margin-bottom: 0.6rem;
}

.footer-links a,
.footer-service-list a {
	color: #94a3b8;
	font-size: 0.95rem;
	transition: color 0.2s ease, padding-left 0.2s ease;
	display: inline-block;
}

.footer-links a:hover,
.footer-service-list a:hover {
	color: var(--xodd-white);
	padding-left: 4px;
	text-decoration: none;
}

.footer-bottom {
	background: rgba(0, 0, 0, 0.25);
	border-top: 1px solid rgba(255,255,255,0.05);
	padding: 1.25rem 0;
	position: relative;
	z-index: 1;
}

.footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.footer-copyright,
.footer-credit {
	margin: 0;
	font-size: 0.9rem;
	color: #64748b;
}

/* ---------- No Results ---------- */
.no-results {
	text-align: center;
	padding: 3rem 0;
}

.no-results .search-form {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	max-width: 400px;
	margin: 0 auto;
}

.no-results .search-form input[type="search"] {
	flex: 1;
	padding: 0.7rem 0.9rem;
	border: 1px solid var(--xodd-border);
	border-radius: var(--xodd-radius-sm);
	font-size: 1rem;
}

.no-results .search-form .search-submit {
	background: var(--xodd-primary);
	color: var(--xodd-white);
	border: none;
	padding: 0.7rem 1.25rem;
	border-radius: var(--xodd-radius-sm);
	font-weight: 600;
	cursor: pointer;
}

/* ---------- Search Form (widget/fallback) ---------- */
.search-form {
	display: flex;
	gap: 0.5rem;
}

.search-form input[type="search"] {
	flex: 1;
	padding: 0.7rem 0.9rem;
	border: 1px solid var(--xodd-border);
	border-radius: var(--xodd-radius-sm);
	font-size: 1rem;
}

.search-form .search-submit {
	background: var(--xodd-primary);
	color: var(--xodd-white);
	border: none;
	padding: 0.7rem 1.25rem;
	border-radius: var(--xodd-radius-sm);
	font-weight: 600;
	cursor: pointer;
}

/* ---------- Widgets ---------- */
.widget {
	margin-bottom: 2rem;
}

.widget-title {
	font-size: 1.15rem;
	margin-bottom: 0.75rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.why-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.process-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 782px) {
	.header-inner {
		flex-wrap: wrap;
		min-height: auto;
		padding-top: 0.75rem;
		padding-bottom: 0.75rem;
	}

	.menu-toggle {
		display: block;
		order: 3;
		margin-left: auto;
	}

	.main-navigation {
		order: 4;
		width: 100%;
	}

	.main-navigation ul {
		display: none;
		flex-direction: column;
		width: 100%;
		padding: 0.5rem 0;
	}

	.main-navigation ul.toggled-on {
		display: flex;
	}

	.main-navigation a {
		padding: 0.75rem 0.5rem;
	}

	.header-cta {
		order: 2;
	}

	.hero-inner {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.hero {
		padding: 3.5rem 0;
	}

	.hero-stats {
		grid-template-columns: repeat(3, 1fr);
	}

	.contact-page {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-bottom-inner {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 600px) {
	.services-grid,
	.why-grid,
	.blog-grid,
	.values-grid,
	.process-list {
		grid-template-columns: 1fr;
	}

	.hero-stats {
		grid-template-columns: 1fr;
	}

	.hero-actions {
		flex-direction: column;
	}

	.hero-actions .btn {
		width: 100%;
	}

	.section {
		padding: 3rem 0;
	}

	.service-detail,
	.contact-form-wrap {
		padding: 1.75rem;
	}

	.post-navigation .nav-links {
		flex-direction: column;
	}

	.author-bio {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}

/* ---------- Buttons Extended ---------- */
.btn-lg {
	padding: 1em 2.25em;
	font-size: 1.05rem;
}

.btn-sm {
	padding: 0.5em 1.25em;
	font-size: 0.9rem;
}

.btn-glow {
	box-shadow: 0 0 20px var(--xodd-primary-glow), 0 4px 15px rgba(0,0,0,0.2);
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.3s ease;
}

.btn-glow:hover {
	box-shadow: 0 0 35px var(--xodd-primary-glow), 0 8px 25px rgba(0,0,0,0.25);
	transform: translateY(-2px);
}

.btn-arrow {
	display: inline-block;
	width: 1em;
	height: 1em;
	margin-left: 0.5em;
	vertical-align: middle;
	transition: transform 0.2s ease;
}

.btn:hover .btn-arrow {
	transform: translateX(4px);
}

/* ---------- Hero Section ---------- */
.hero {
	background: var(--xodd-dark-3);
	color: var(--xodd-white);
	padding: 0;
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 0;
}

.hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.5;
	animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb--1 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.35), transparent 70%);
	top: -10%;
	right: 10%;
	animation-delay: 0s;
}

.hero-orb--2 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(139, 92, 246, 0.25), transparent 70%);
	bottom: -5%;
	left: 5%;
	animation-delay: -3s;
}

.hero-orb--3 {
	width: 250px;
	height: 250px;
	background: radial-gradient(circle, rgba(6, 182, 212, 0.2), transparent 70%);
	top: 40%;
	left: 40%;
	animation-delay: -5s;
}

@keyframes orbFloat {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(30px, -20px) scale(1.05); }
	66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 4rem;
	align-items: center;
	padding-top: 5rem;
	padding-bottom: 5rem;
}

/* Hero Badge */
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(37, 99, 235, 0.12);
	border: 1px solid rgba(37, 99, 235, 0.3);
	color: #93c5fd;
	padding: 0.4em 1.1em;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	animation: fadeInUp 0.6s ease both;
}

.hero-badge-dot {
	width: 8px;
	height: 8px;
	background: #3b82f6;
	border-radius: 50%;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.3); }
}

/* Hero Title */
.hero-title {
	color: var(--xodd-white);
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.25rem;
	animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title-accent {
	background: linear-gradient(135deg, #60a5fa, #a78bfa, #34d399);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	color: #94a3b8;
	font-size: 1.2rem;
	line-height: 1.7;
	margin-bottom: 2.25rem;
	max-width: 540px;
	animation: fadeInUp 0.6s ease 0.2s both;
}

/* Hero Actions */
.hero-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 2.5rem;
	animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-actions .btn-outline {
	border-color: rgba(255,255,255,0.25);
	color: var(--xodd-white);
}

.hero-actions .btn-outline:hover {
	background: rgba(255,255,255,0.08);
	border-color: rgba(255,255,255,0.5);
}

/* Hero Trust */
.hero-trust {
	display: flex;
	align-items: center;
	gap: 1rem;
	animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-avatars {
	display: flex;
}

.hero-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--xodd-primary), #8b5cf6);
	color: var(--xodd-white);
	font-size: 0.75rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: -8px;
	border: 2px solid var(--xodd-dark-3);
}

.hero-avatar:first-child { margin-left: 0; }

.hero-trust-text {
	color: #94a3b8;
	font-size: 0.9rem;
	margin: 0;
}

.hero-trust-text strong {
	color: var(--xodd-white);
}

.hero-rating {
	color: #fbbf24;
	letter-spacing: 1px;
}

/* Hero Visual / Mockup */
.hero-visual {
	position: relative;
	animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-mockup {
	position: relative;
}

.mockup-browser {
	background: var(--xodd-dark-2);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: var(--xodd-radius-lg);
	overflow: hidden;
	box-shadow: var(--xodd-shadow-xl), 0 0 0 1px rgba(255,255,255,0.05);
}

.mockup-bar {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 12px 16px;
	background: rgba(0,0,0,0.3);
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mockup-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.mockup-dot--red { background: #ff5f57; }
.mockup-dot--yellow { background: #ffbd2e; }
.mockup-dot--green { background: #28ca41; }

.mockup-url {
	margin-left: 8px;
	font-size: 0.75rem;
	color: #64748b;
	font-family: var(--xodd-font-mono);
}

.mockup-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.mockup-line {
	height: 10px;
	background: rgba(255,255,255,0.06);
	border-radius: 4px;
}

.mockup-line--short { width: 60%; }

.mockup-block {
	height: 80px;
	background: linear-gradient(135deg, rgba(37,99,235,0.2), rgba(139,92,246,0.2));
	border-radius: var(--xodd-radius-sm);
	margin-top: 8px;
}

.mockup-block--accent {
	background: linear-gradient(135deg, rgba(37,99,235,0.3), rgba(6,182,212,0.2));
}

/* Float Cards */
.hero-float-card {
	position: absolute;
	background: rgba(15, 23, 42, 0.9);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: var(--xodd-radius);
	padding: 1rem 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	box-shadow: var(--xodd-shadow-lg);
	animation: floatCard 4s ease-in-out infinite;
}

.hero-float-card--1 {
	bottom: 10%;
	left: -15%;
	animation-delay: 0s;
}

.hero-float-card--2 {
	top: 5%;
	right: -10%;
	animation-delay: -2s;
}

@keyframes floatCard {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.float-card-icon {
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, var(--xodd-primary), #8b5cf6);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	flex-shrink: 0;
}

.float-card-label {
	font-size: 0.7rem;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.float-card-value {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--xodd-white);
}

/* Scroll Indicator */
.hero-scroll {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: #64748b;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	animation: fadeInUp 0.6s ease 0.8s both;
}

.scroll-mouse {
	width: 24px;
	height: 38px;
	border: 2px solid rgba(255,255,255,0.2);
	border-radius: 12px;
	position: relative;
}

.scroll-wheel {
	width: 4px;
	height: 8px;
	background: #60a5fa;
	border-radius: 2px;
	position: absolute;
	top: 6px;
	left: 50%;
	transform: translateX(-50%);
	animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
	0% { opacity: 1; top: 6px; }
	100% { opacity: 0; top: 20px; }
}

@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
	from { opacity: 0; transform: translateX(40px); }
	to { opacity: 1; transform: translateX(0); }
}

/* ---------- Trust Bar ---------- */
.trust-bar {
	background: var(--xodd-dark-3);
	border-top: 1px solid rgba(255,255,255,0.05);
	border-bottom: 1px solid rgba(255,255,255,0.05);
	padding: 1.5rem 0;
}

.trust-bar-label {
	text-align: center;
	color: #64748b;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}

.trust-bar-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3rem;
	flex-wrap: wrap;
}

.trust-logo {
	color: #475569;
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	transition: color 0.2s ease;
}

.trust-logo:hover {
	color: #94a3b8;
}

/* ---------- Services Section ---------- */
.services-section {
	background: var(--xodd-light);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.service-card {
	background: var(--xodd-white);
	border: 1px solid var(--xodd-border);
	border-radius: var(--xodd-radius);
	padding: 2rem 1.5rem;
	box-shadow: var(--xodd-shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--xodd-primary), #8b5cf6);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--xodd-shadow-lg);
	border-color: rgba(37, 99, 235, 0.2);
}

.service-card:hover::before {
	opacity: 1;
}

.service-card-glow {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 0%, rgba(37,99,235,0.05), transparent 70%);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.service-card:hover .service-card-glow {
	opacity: 1;
}

.service-icon-wrap {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(139,92,246,0.1));
	border-radius: var(--xodd-radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	font-size: 1.75rem;
	transition: transform 0.3s ease;
}

.service-card:hover .service-icon-wrap {
	transform: scale(1.1) rotate(-5deg);
}

.service-title {
	font-size: 1.15rem;
	margin-bottom: 0.6rem;
}

.service-desc {
	color: var(--xodd-muted);
	font-size: 0.92rem;
	flex-grow: 1;
	margin-bottom: 1rem;
}

.service-features-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.25rem;
}

.service-features-list li {
	font-size: 0.88rem;
	color: var(--xodd-text);
	padding: 0.3rem 0;
	padding-left: 1.2em;
	position: relative;
}

.service-features-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--xodd-primary);
	font-weight: 700;
}

.service-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--xodd-primary);
	transition: gap 0.2s ease;
}

.service-link:hover {
	gap: 0.7em;
	text-decoration: none;
}

.service-link svg {
	width: 16px;
	height: 16px;
}

.services-cta {
	text-align: center;
	margin-top: 3rem;
	padding: 2rem;
	background: var(--xodd-white);
	border-radius: var(--xodd-radius);
	border: 1px solid var(--xodd-border);
}

.services-cta-text {
	color: var(--xodd-muted);
	margin-bottom: 1rem;
}

/* ---------- Portfolio Section ---------- */
.portfolio-section {
	background: var(--xodd-dark-3);
	color: var(--xodd-white);
}

.portfolio-section .section-eyebrow {
	color: #60a5fa;
}

.portfolio-section .section-title {
	color: var(--xodd-white);
}

.portfolio-section .section-subtitle {
	color: #94a3b8;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: auto auto;
	gap: 1.25rem;
}

.portfolio-item {
	position: relative;
	border-radius: var(--xodd-radius);
	overflow: hidden;
	cursor: pointer;
}

.portfolio-item--large {
	grid-column: span 7;
	grid-row: span 2;
	min-height: 400px;
}

.portfolio-item--wide {
	grid-column: span 8;
}

.portfolio-item:not(.portfolio-item--large):not(.portfolio-item--wide) {
	grid-column: span 4;
	min-height: 190px;
}

.portfolio-img {
	width: 100%;
	height: 100%;
	min-height: 190px;
	transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img {
	transform: scale(1.08);
}

.portfolio-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.4) 50%, transparent 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.75rem;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
	opacity: 1;
}

.portfolio-tag {
	display: inline-block;
	background: rgba(37,99,235,0.8);
	color: var(--xodd-white);
	font-size: 0.72rem;
	font-weight: 700;
	padding: 0.25em 0.75em;
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.75rem;
	width: fit-content;
}

.portfolio-title {
	color: var(--xodd-white);
	font-size: 1.25rem;
	margin-bottom: 0.4rem;
}

.portfolio-desc {
	color: #94a3b8;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

/* ---------- Why Section ---------- */
.why-section {
	background: var(--xodd-white);
}

.why-layout {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 4rem;
	align-items: start;
}

.why-content {
	position: sticky;
	top: 100px;
}

.why-intro {
	color: var(--xodd-muted);
	font-size: 1.05rem;
	margin-top: 1rem;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.why-item {
	background: var(--xodd-light);
	border-radius: var(--xodd-radius);
	padding: 2rem;
	border: 1px solid var(--xodd-border);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--xodd-shadow);
}

.why-number {
	font-size: 2.5rem;
	font-weight: 900;
	color: rgba(37,99,235,0.12);
	line-height: 1;
	margin-bottom: 0.75rem;
}

.why-title {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}

.why-desc {
	color: var(--xodd-muted);
	font-size: 0.92rem;
	margin-bottom: 0;
}

/* ---------- Process Section ---------- */
.process-section {
	background: var(--xodd-light);
}

.process-timeline {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	margin-bottom: 3rem;
}

.process-step {
	text-align: center;
	flex: 1;
	max-width: 220px;
	padding: 0 1rem;
}

.process-step-number {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, var(--xodd-primary), #8b5cf6);
	color: var(--xodd-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	font-weight: 800;
	margin: 0 auto 1.25rem;
	box-shadow: 0 4px 15px rgba(37,99,235,0.3);
}

.process-step-title {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}

.process-step-desc {
	color: var(--xodd-muted);
	font-size: 0.9rem;
	line-height: 1.6;
}

.process-step-connector {
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, var(--xodd-primary), #8b5cf6);
	margin-top: 28px;
	flex-shrink: 0;
	opacity: 0.4;
}

.process-cta {
	text-align: center;
}

/* ---------- Testimonials Section ---------- */
.testimonials-section {
	background: var(--xodd-white);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.testimonial-card {
	background: var(--xodd-light);
	border: 1px solid var(--xodd-border);
	border-radius: var(--xodd-radius);
	padding: 2rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
}

.testimonial-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--xodd-shadow);
}

.testimonial-card--featured {
	background: linear-gradient(135deg, var(--xodd-dark), var(--xodd-dark-2));
	border-color: transparent;
	color: var(--xodd-white);
}

.testimonial-badge {
	position: absolute;
	top: -10px;
	right: 1.5rem;
	background: linear-gradient(135deg, var(--xodd-primary), #8b5cf6);
	color: var(--xodd-white);
	font-size: 0.72rem;
	font-weight: 700;
	padding: 0.3em 0.8em;
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.testimonial-stars {
	color: #fbbf24;
	font-size: 1rem;
	letter-spacing: 2px;
	margin-bottom: 1rem;
}

.testimonial-text {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--xodd-text);
	margin-bottom: 1.5rem;
	font-style: italic;
}

.testimonial-card--featured .testimonial-text {
	color: #cbd5e1;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.testimonial-avatar {
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, var(--xodd-primary), #8b5cf6);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1rem;
	color: var(--xodd-white);
	flex-shrink: 0;
}

.testimonial-name {
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--xodd-dark);
}

.testimonial-card--featured .testimonial-name {
	color: var(--xodd-white);
}

.testimonial-role {
	font-size: 0.82rem;
	color: var(--xodd-muted);
}

.testimonial-card--featured .testimonial-role {
	color: #94a3b8;
}

/* ---------- Pricing Section ---------- */
.pricing-section {
	background: var(--xodd-light);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	align-items: start;
}

.pricing-card {
	background: var(--xodd-white);
	border: 1px solid var(--xodd-border);
	border-radius: var(--xodd-radius-lg);
	padding: 2.5rem 2rem;
	box-shadow: var(--xodd-shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
}

.pricing-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--xodd-shadow-lg);
}

.pricing-card--popular {
	border-color: var(--xodd-primary);
	border-width: 2px;
	box-shadow: var(--xodd-shadow-lg), var(--xodd-shadow-glow);
	transform: scale(1.03);
}

.pricing-card--popular:hover {
	transform: scale(1.03) translateY(-6px);
}

.pricing-popular-badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--xodd-primary), #8b5cf6);
	color: var(--xodd-white);
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.3em 1em;
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.pricing-card-title {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
}

.pricing-card-desc {
	color: var(--xodd-muted);
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
}

.pricing-card-price {
	display: flex;
	align-items: baseline;
	gap: 0.25rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--xodd-border);
}

.pricing-currency {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--xodd-dark);
}

.pricing-amount {
	font-size: 3rem;
	font-weight: 800;
	color: var(--xodd-dark);
	line-height: 1;
}

.pricing-period {
	font-size: 0.85rem;
	color: var(--xodd-muted);
	margin-left: 0.25rem;
}

.pricing-features {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
}

.pricing-features li {
	padding: 0.5rem 0;
	font-size: 0.92rem;
	color: var(--xodd-text);
	padding-left: 1.5em;
	position: relative;
}

.pricing-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--xodd-primary);
	font-weight: 700;
}

.pricing-btn {
	width: 100%;
}

/* ---------- Final CTA Section ---------- */
.final-cta {
	background: var(--xodd-dark-3);
	color: var(--xodd-white);
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
}

.final-cta-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.final-cta-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
}

.final-cta-orb--1 {
	width: 500px;
	height: 500px;
	background: rgba(37,99,235,0.2);
	top: -20%;
	right: -5%;
}

.final-cta-orb--2 {
	width: 400px;
	height: 400px;
	background: rgba(139,92,246,0.15);
	bottom: -20%;
	left: -5%;
}

.final-cta-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 4rem;
	align-items: center;
}

.final-cta-title {
	color: var(--xodd-white);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 1.25rem;
}

.final-cta-text {
	color: #94a3b8;
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 2rem;
	max-width: 520px;
}

.final-cta-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
}

.final-cta-actions .btn-outline {
	border-color: rgba(255,255,255,0.25);
	color: var(--xodd-white);
}

.final-cta-actions .btn-outline:hover {
	background: rgba(255,255,255,0.08);
	border-color: rgba(255,255,255,0.5);
}

.final-cta-guarantee {
	color: #64748b;
	font-size: 0.9rem;
}

.final-stat {
	text-align: center;
	padding: 1.5rem;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: var(--xodd-radius);
	margin-bottom: 1rem;
}

.final-stat:last-child { margin-bottom: 0; }

.final-stat-number {
	display: block;
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--xodd-white);
	line-height: 1.2;
	background: linear-gradient(135deg, #60a5fa, #a78bfa);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.final-stat-label {
	display: block;
	color: #94a3b8;
	font-size: 0.85rem;
	margin-top: 0.25rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.why-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.testimonials-grid .testimonial-card:last-child {
		grid-column: span 2;
	}

	.pricing-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.pricing-grid .pricing-card:last-child {
		grid-column: span 2;
		max-width: 400px;
		justify-self: center;
	}

	.portfolio-item--large {
		grid-column: span 12;
		grid-row: span 1;
	}

	.portfolio-item--wide {
		grid-column: span 6;
	}

	.portfolio-item:not(.portfolio-item--large):not(.portfolio-item--wide) {
		grid-column: span 6;
	}

	.final-cta-inner {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.why-layout {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.why-content {
		position: static;
	}
}

@media (max-width: 782px) {
	.hero-inner {
		grid-template-columns: 1fr;
		gap: 3rem;
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.hero-visual {
		display: none;
	}

	.hero-scroll {
		display: none;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.why-grid {
		grid-template-columns: 1fr;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.testimonials-grid .testimonial-card:last-child {
		grid-column: span 1;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
	}

	.pricing-grid .pricing-card:last-child {
		grid-column: span 1;
		max-width: none;
	}

	.pricing-card--popular {
		transform: none;
		order: -1;
	}

	.pricing-card--popular:hover {
		transform: translateY(-6px);
	}

	.portfolio-grid {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}

	.portfolio-item,
	.portfolio-item--large,
	.portfolio-item--wide {
		min-height: 200px;
	}

	.portfolio-overlay {
		opacity: 1;
	}

	.process-timeline {
		flex-direction: column;
		align-items: center;
		gap: 1.5rem;
	}

	.process-step-connector {
		width: 2px;
		height: 30px;
		margin-top: 0;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.hero-actions {
		flex-direction: column;
	}

	.hero-actions .btn {
		width: 100%;
	}

	.final-cta-actions {
		flex-direction: column;
	}

	.final-cta-actions .btn {
		width: 100%;
	}

	.trust-bar-logos {
		gap: 1.5rem;
	}

	.trust-logo {
		font-size: 0.9rem;
	}

	.section {
		padding: 3rem 0;
	}
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
