/* =========================================================
   Cloudorionix — Core Stylesheet
   Dark corporate-tech theme. No canvas/particle starfield —
   depth comes from real photography, gradients and a subtle
   static grid pattern instead.
========================================================= */

:root {
	--bg: #050608;
	--bg-elevated: #0c0f14;
	--surface: #10141b;
	--border: rgba(255,255,255,0.08);
	--text: #f4f6f8;
	--text-muted: #9aa3ad;
	--cyan: #00E5FF;
	--green: #10B981;
	--blue: #3B82F6;
	--purple: #9333EA;
	--amber: #F59E0B;
	--red: #EF4444;
	--teal: #14B8A6;
	--indigo: #6366F1;
	--pink: #EC4899;
	--orange: #FB923C;
	--radius: 16px;
	--radius-sm: 10px;
	--container: 1240px;
	--font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	--font-head: 'Space Grotesk', 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; margin: 0 0 .5em; }
p { margin: 0 0 1em; color: var(--text-muted); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
@media (max-width: 768px) { .section { padding: 64px 0; } }

/* On large / ultrawide monitors the fixed 1240px container leaves a big
   empty gutter on both sides before the logo and hero heading even start.
   Scale the container up (and trim the outer padding slightly) so content
   sits closer to the edge of the screen instead of floating in the middle. */
@media (min-width: 1440px) { .container { max-width: 1380px; padding: 0 32px; } }
@media (min-width: 1680px) { .container { max-width: 1560px; } }
@media (min-width: 1920px) { .container { max-width: 1720px; padding: 0 40px; } }

.text-gradient {
	background: linear-gradient(90deg, var(--cyan), #ffffff, var(--green));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* ---------------- Scroll-reveal (site-wide animation) ---------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.68,.32,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

.eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--cyan);
	margin-bottom: 14px;
}
.eyebrow--light { color: var(--green); }

.section-heading { margin-bottom: 48px; max-width: 640px; }
.section-heading h2 { font-size: clamp(28px, 4vw, 44px); color: #fff; }
.section-heading--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section-heading-row .section-heading { margin-bottom: 0; }

/* ---------------- Buttons ---------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 14px 28px; border-radius: 999px; font-weight: 600; font-size: 15px;
	border: 1px solid transparent; cursor: pointer; transition: all .25s ease; white-space: nowrap;
}
.btn-primary { background: linear-gradient(90deg, var(--cyan), var(--green)); color: #04121a; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,229,255,.25); }
.btn-outline { background: transparent; border-color: var(--border); color: #fff; }
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-block { width: 100%; }

/* ---------------- Header ---------------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(5,6,8,.85); backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.custom-logo-link img,
.site-logo img {
	max-height: 58px;
	width: auto;
	height: auto;
	object-fit: contain;
}
.site-logo { display: flex; align-items: center; font-family: var(--font-head); font-size: 22px; font-weight: 700; color: #fff; }
.logo-mark {
	display: inline-flex; align-items: center; justify-content: center;
	width: 34px; height: 34px; border-radius: 9px; margin-right: 2px;
	background: linear-gradient(135deg, var(--cyan), var(--green)); color: #04121a; font-weight: 800;
}
.nav-menu { display: flex; align-items: center; gap: 40px; }
.nav-menu a { font-size: 17px; font-weight: 600; color: var(--text-muted); transition: color .2s; }
.nav-menu a:hover { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; display: block; }
.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 16px 24px 24px; border-top: 1px solid var(--border); }
.mobile-nav-menu { display: flex; flex-direction: column; }
.mobile-nav-menu a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); color: #fff; }
.mobile-nav.is-open { display: flex; }

@media (max-width: 900px) {
	.primary-nav, .header-actions .btn { display: none; }
	.nav-toggle { display: flex; }
}

/* ---------------- Hero ---------------- */
.hero { position: relative; padding: 132px 0 90px; overflow: hidden; min-height: 74vh; display: flex; align-items: center; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(5,6,8,.4) 0%, rgba(5,6,8,.75) 55%, var(--bg) 100%),
	            radial-gradient(circle at 20% 20%, rgba(0,229,255,.15), transparent 55%);
}
.hero-grid {
	position: absolute; inset: 0;
	background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
	animation: gridDrift 40s linear infinite;
}
@keyframes gridDrift { from { background-position: 0 0, 0 0; } to { background-position: 48px 48px, 48px 48px; } }
.hero-inner { position: relative; z-index: 2; max-width: 780px; }
.hero h1 { font-size: clamp(38px, 6vw, 68px); color: #fff; margin-bottom: 24px; }
.hero-lead { font-size: 19px; max-width: 620px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }

/* Staggered entrance animation for hero content */
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
.hero-inner .eyebrow,
.hero-inner h1,
.hero-inner .hero-lead,
.hero-inner .hero-actions {
	opacity: 0;
	animation: heroFadeUp .8s cubic-bezier(.22,.68,.32,1) forwards;
}
.hero-inner .eyebrow { animation-delay: .05s; }
.hero-inner h1 { animation-delay: .18s; }
.hero-inner .hero-lead { animation-delay: .34s; }
.hero-inner .hero-actions { animation-delay: .5s; }
.text-gradient { background-size: 200% auto; animation: gradientShift 6s ease infinite; }
@keyframes gradientShift { 0%, 100% { background-position: 0% center; } 50% { background-position: 100% center; } }
@media (prefers-reduced-motion: reduce) {
	.hero-inner .eyebrow, .hero-inner h1, .hero-inner .hero-lead, .hero-inner .hero-actions { animation: none; opacity: 1; }
	.hero-grid, .text-gradient { animation: none; }
}
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 720px; }
.hero-stats div { border-left: 2px solid var(--border); padding-left: 16px; }
.hero-stats strong { display: block; font-family: var(--font-head); font-size: 28px; color: var(--cyan); }
.hero-stats span { font-size: 13px; color: var(--text-muted); }
@media (max-width: 700px) { .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; } }

.photo-strip-section { padding: 64px 0; }
.photo-strip-grid { grid-template-columns: repeat(4, 1fr); }
.photo-strip-item { position: relative; border-radius: var(--radius); overflow: hidden; height: 200px; }
.photo-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.photo-strip-item:hover img { transform: scale(1.08); }
.photo-strip-item span {
	position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px;
	background: linear-gradient(0deg, rgba(0,0,0,.85), transparent);
	color: #fff; font-weight: 600; font-size: 14px;
}
@media (max-width: 900px) { .photo-strip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .photo-strip-grid { grid-template-columns: 1fr; } }

/* ---------------- Trusted by marquee ---------------- */
.trusted-by { padding: 40px 0; border-bottom: 1px solid var(--border); overflow: hidden; }
.trusted-by-label { text-align: center; font-size: 13px; letter-spacing: .05em; color: var(--text-muted); margin-bottom: 20px; }
.logo-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.logo-track { display: flex; gap: 64px; width: max-content; animation: marquee 30s linear infinite; }
.logo-track span { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--text-muted); opacity: .6; white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------- Grid utility ---------------- */
.grid { display: grid; gap: 28px; }
.services-grid { grid-template-columns: repeat(4, 1fr); }
.services-grid--full { grid-template-columns: repeat(4, 1fr); }
.industries-grid { grid-template-columns: repeat(5, 1fr); }
.industries-grid--full { grid-template-columns: repeat(3, 1fr); }
.case-grid { grid-template-columns: repeat(3, 1fr); }
.case-grid--full { grid-template-columns: repeat(3, 1fr); }
.testimonials-grid { grid-template-columns: repeat(3, 1fr); }
.capabilities-grid { grid-template-columns: repeat(4, 1fr); }
.pricing-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1100px) {
	.services-grid, .services-grid--full, .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
	.industries-grid { grid-template-columns: repeat(3, 1fr); }
	.industries-grid--full, .case-grid, .case-grid--full, .testimonials-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
	.services-grid, .services-grid--full, .industries-grid, .industries-grid--full,
	.case-grid, .case-grid--full, .testimonials-grid, .capabilities-grid, .pricing-grid { grid-template-columns: 1fr; }
}

/* ---------------- Service cards ---------------- */
.service-card {
	--accent: #00E5FF;
	display: flex; flex-direction: column;
	background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
	padding: 32px; transition: transform .3s ease, border-color .3s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.service-card-icon {
	width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
	background: color-mix(in srgb, var(--accent) 15%, transparent); color: var(--accent); margin-bottom: 20px;
}
.service-card-icon .dashicons { font-size: 26px; width: 26px; height: 26px; }
.service-card-cat { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); font-weight: 700; }
.service-card h3 { color: #fff; font-size: 20px; margin-top: 8px; }
.service-card p { font-size: 14px; flex-grow: 1; }
.card-link { color: var(--accent); font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; margin-top: 12px; }

/* ---------------- Why choose us ---------------- */
.why-section { position: relative; padding: 96px 0; }
.why-media { position: absolute; inset: 0; opacity: .12; }
.why-media img { width: 100%; height: 100%; object-fit: cover; }
.why-section .container { position: relative; z-index: 1; }
.why-content { max-width: 100%; }
.why-lead { font-size: 18px; max-width: 700px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 24px; }
.why-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.why-card .dashicons { font-size: 28px; color: var(--cyan); margin-bottom: 14px; display: block; }
.why-card h3 { color: #fff; font-size: 18px; }
.why-card p { font-size: 14px; margin: 0; }
@media (max-width: 1000px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------------- Industries ---------------- */
.industry-card { position: relative; border-radius: var(--radius); overflow: hidden; height: 320px; display: block; }
.industry-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.industry-card:hover img { transform: scale(1.08); }
.industry-card-overlay {
	position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
	background: linear-gradient(0deg, rgba(0,0,0,.85) 10%, transparent 70%);
}
.industry-card-overlay h3 { color: #fff; font-size: 19px; margin-bottom: 6px; }
.industry-card-overlay p { font-size: 13px; margin: 0; color: #d5dade; }

/* ---------------- Process timeline ---------------- */
.process-section { position: relative; }
.process-media { position: absolute; inset: 0; opacity: .1; }
.process-media img { width: 100%; height: 100%; object-fit: cover; }
.process-section .container { position: relative; z-index: 1; }
.process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: relative; }
.step-num { font-family: var(--font-head); font-size: 40px; font-weight: 700; color: var(--border); display: block; margin-bottom: 8px; }
.process-step h3 { color: #fff; }
.process-step p { font-size: 14px; margin: 0; }
@media (max-width: 900px) { .process-timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-timeline { grid-template-columns: 1fr; } }

/* ---------------- Case studies ---------------- */
.case-card { display: block; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .3s; }
.case-card:hover { transform: translateY(-6px); }
.case-card-media { position: relative; height: 180px; }
.case-card-media img { width: 100%; height: 100%; object-fit: cover; }
.case-card-tag { position: absolute; top: 14px; left: 14px; background: rgba(0,0,0,.6); color: var(--cyan); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 6px 12px; border-radius: 999px; }
.case-card h3 { color: #fff; font-size: 18px; padding: 20px 20px 0; }
.case-card p { font-size: 14px; padding: 0 20px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 20px 20px; }
.tag-list span { font-size: 12px; background: rgba(255,255,255,.06); border: 1px solid var(--border); padding: 4px 10px; border-radius: 999px; color: var(--text-muted); }
.tag-list--lg span { font-size: 14px; padding: 8px 16px; }

/* ---------------- Testimonials ---------------- */
.testimonial-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.quote-icon { color: var(--cyan); font-size: 28px; opacity: .5; }
.testimonial-card p { color: #d5dade; font-size: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--green)); color: #04121a; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.testimonial-author strong { display: block; color: #fff; font-size: 14px; }
.testimonial-author span { font-size: 12px; }

/* ---------------- CTA ---------------- */
.cta-section { position: relative; padding: 100px 0; overflow: hidden; }
.cta-media { position: absolute; inset: 0; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(5,6,8,.92), rgba(0,60,70,.75)); }
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-inner h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); }
.cta-inner p { font-size: 17px; margin-bottom: 32px; }
.cta-inline { text-align: center; padding: 40px 0 0; border-top: 1px solid var(--border); margin-top: 40px; }

/* ---------------- Contact ---------------- */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; }
.contact-details { margin-top: 24px; }
.contact-details li { display: flex; align-items: center; gap: 10px; padding: 10px 0; color: var(--text-muted); }
.contact-details .dashicons { color: var(--cyan); }
.contact-form-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: #d5dade; }
.form-field input, .form-field select, .form-field textarea {
	width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid var(--border);
	background: var(--bg-elevated); color: #fff; font-family: var(--font-body); font-size: 14px;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--cyan); }
.form-alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 14px; }
.form-alert--success { background: rgba(16,185,129,.12); border: 1px solid var(--green); color: var(--green); }
.form-alert--error { background: rgba(239,68,68,.12); border: 1px solid #ef4444; color: #ef4444; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

.cta-inline-band { padding: 64px 0; border-top: 1px solid var(--border); text-align: center; }
.cta-inline-band-inner h2 { font-size: clamp(24px, 3vw, 34px); color: #fff; margin-bottom: 24px; }

/* ---------------- Footer ---------------- */
.site-footer { position: relative; padding-top: 80px; border-top: 1px solid var(--border); overflow: hidden; }
.footer-glow { position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(0,229,255,.08), transparent 70%); }
.footer-top { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 18px; }
.footer-col ul li { padding: 6px 0; }
.footer-col ul li a { color: var(--text-muted); font-size: 14px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--cyan); }
.footer-brand p { font-size: 14px; margin: 16px 0; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all .2s; }
.social-links a:hover { color: var(--cyan); border-color: var(--cyan); }
.footer-contact { margin: 4px 0 18px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--text-muted); padding: 6px 0; }
.footer-contact li a { color: var(--text-muted); transition: color .2s; }
.footer-contact li a:hover { color: var(--cyan); }
.footer-contact .dashicons { color: var(--cyan); font-size: 18px; margin-top: 2px; }
.footer-cta-text { font-size: 14px; margin-bottom: 16px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-muted); flex-wrap: wrap; gap: 12px; }
.footer-legal-menu { display: flex; gap: 20px; }
.footer-legal-menu a:hover { color: var(--cyan); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

/* ---------------- WhatsApp float ---------------- */
.whatsapp-fab {
	position: fixed; bottom: 28px; right: 28px; width: 58px; height: 58px; border-radius: 50%;
	background: #25D366; display: flex; align-items: center; justify-content: center; z-index: 200;
	box-shadow: 0 8px 24px rgba(0,0,0,.4); color: #fff;
}
.whatsapp-fab .dashicons { font-size: 30px; width: 30px; height: 30px; }

/* ---------------- Inner page hero ---------------- */
.page-hero { position: relative; padding: 150px 0 70px; overflow: hidden; }
.page-hero--sm { padding: 130px 0 50px; }
.page-hero-lead { font-size: 17px; max-width: 640px; margin-top: 14px; }
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,6,8,.55), var(--bg) 90%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(32px, 5vw, 56px); color: #fff; }
.cldx-breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.cldx-breadcrumb a { color: var(--text-muted); }
.cldx-breadcrumb a:hover { color: var(--cyan); }
.cldx-breadcrumb .current { color: var(--cyan); }

.narrow-content { max-width: 820px; margin: 0 auto; }
.entry-content h2, .entry-content h3 { color: #fff; margin-top: 1.4em; }
.entry-content ul { margin: 0 0 1em; padding-left: 20px; list-style: disc; }
.entry-content ul li { margin-bottom: 8px; color: var(--text-muted); }
.entry-content p { color: var(--text-muted); }
.feature-list { margin-top: 20px; }
.feature-list li { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.feature-list .dashicons { color: var(--green); }

/* ---------------- About page ---------------- */
.about-intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.about-intro-grid .lead { font-size: 20px; color: #d5dade; }
.about-intro-media { border-radius: var(--radius); overflow: hidden; height: 420px; }
.about-intro-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .about-intro-grid { grid-template-columns: 1fr; } .about-intro-media { height: 280px; } }

.about-team-strip { padding: 0 0 40px; }
.about-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.about-team-media { border-radius: var(--radius); overflow: hidden; height: 220px; }
.about-team-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 700px) { .about-team-grid { grid-template-columns: 1fr; } }

.capability-card {
	--accent: #00E5FF;
	display: block; background: var(--surface); border: 1px solid var(--border); border-top: 3px solid var(--accent);
	border-radius: var(--radius); padding: 0 0 28px; overflow: hidden;
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
a.capability-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,.35); border-color: var(--accent); }
.capability-card-media { position: relative; height: 140px; overflow: hidden; }
.capability-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; filter: saturate(1.1); }
.capability-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 25%, transparent), var(--surface) 95%); }
a.capability-card:hover .capability-card-media img { transform: scale(1.08); }
.capability-card-body { padding: 20px 28px 0; }
.capability-card:not(:has(.capability-card-media)) { padding: 28px; border-top: 3px solid var(--accent); }
.capability-card:not(:has(.capability-card-media)) .capability-card-body { padding: 0; }
.capability-card .dashicons { font-size: 24px; color: var(--accent); background: color-mix(in srgb, var(--accent) 18%, transparent); width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 0 16px; position: relative; z-index: 1; }
.capability-card-media + .capability-card-body .dashicons { margin-top: -42px; border: 2px solid var(--surface); }
.capability-card h3 { color: #fff; }
.capability-card p { font-size: 14px; margin: 0 0 14px; }

.stats-band { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-band-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stats-band-grid strong { display: block; font-family: var(--font-head); font-size: 36px; color: var(--cyan); }
.stats-band-grid span { font-size: 13px; color: var(--text-muted); }
@media (max-width: 700px) { .stats-band-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; } }

/* ---------------- Service detail ---------------- */
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 56px; align-items: start; }
.service-detail-icon { --accent: #00E5FF; width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: color-mix(in srgb, var(--accent) 15%, transparent); color: var(--accent); margin-bottom: 24px; }
.service-detail-icon .dashicons { font-size: 32px; width: 32px; height: 32px; }
.sidebar-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.sidebar-card h4 { color: #fff; }
.sidebar-links li { padding: 8px 0; border-bottom: 1px solid var(--border); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a { color: var(--text-muted); font-size: 14px; }
.sidebar-links a:hover { color: var(--cyan); }
@media (max-width: 900px) { .service-detail-grid { grid-template-columns: 1fr; } }

/* ---------------- Pricing ---------------- */
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; position: relative; }
.pricing-card--popular { border-color: var(--cyan); box-shadow: 0 0 40px rgba(0,229,255,.12); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--cyan); color: #04121a; font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 999px; }
.pricing-card h3 { color: #fff; font-size: 22px; }
.pricing-desc { font-size: 14px; }
.pricing-price { font-family: var(--font-head); font-size: 24px; color: var(--cyan); margin: 16px 0 24px; }
.pricing-features { margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 8px; padding: 8px 0; font-size: 14px; color: #d5dade; }
.pricing-features .dashicons { color: var(--green); margin-top: 2px; }

/* ---------------- Colour-tinted section backgrounds ---------------- */
.section--tint { position: relative; }
.section--tint::before { content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none; z-index: 0; }
.section--tint > .container { position: relative; z-index: 1; }
.section--tint-indigo::before { background: radial-gradient(circle at 15% 20%, rgba(99,102,241,.10), transparent 55%); }
.section--tint-teal::before { background: radial-gradient(circle at 85% 15%, rgba(20,184,166,.10), transparent 55%); }
.section--tint-pink::before { background: radial-gradient(circle at 20% 85%, rgba(236,72,153,.08), transparent 55%); }
.section--tint-orange::before { background: radial-gradient(circle at 80% 80%, rgba(251,146,60,.08), transparent 55%); }

/* ---------------- Pillar page ---------------- */
.pillar-media-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.pillar-media { border-radius: var(--radius); overflow: hidden; height: 380px; }
.pillar-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .pillar-media-grid { grid-template-columns: 1fr; } .pillar-media { height: 260px; } }
.pillar-pill { display: inline-block; padding: 6px 16px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: color-mix(in srgb, var(--accent, var(--cyan)) 15%, transparent); color: var(--accent, var(--cyan)); margin-bottom: 16px; }

.service-category-block { padding: 48px 0; }
.service-category-block .section-heading { margin-bottom: 28px; }
.service-category-block .section-heading h2 { font-size: 26px; }
.dashicons { font-family: dashicons; }
