/* =============================================
   Pointer IT Solution — White & Pink Theme
   ============================================= */

:root {
	--color-bg: #ffffff;
	--color-bg-muted: #f7f7f9;
	--color-bg-warm: #e8e7e2;
	--color-bg-light: #e6e9ee;
	--color-pink: #e32f7d;
	--color-pink-dark: #c9276a;
	--color-pink-light: #fdf2f7;
	--color-navy: #2d2a6e;
	--color-yellow: #f9f11e;
	--color-border: rgba(0, 0, 0, 0.08);
	--color-text: #1a1a2e;
	--color-text-muted: #5a5a72;
	--color-footer: #333333;
	--color-gradient: linear-gradient(135deg, #e32f7d 0%, #ed264e 100%);
	--font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 24px;
	--shadow: 0 16px 48px rgba(227, 47, 125, 0.12);
	--shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.06);
	--header-height: 72px;
	--transition: 0.25s ease;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	background: var(--color-bg);
	color: var(--color-text);
	line-height: 1.6;
	overflow-x: hidden;
}

body.modal-open {
	overflow: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

.container {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 64px);
}

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

/* ---- Buttons ---- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	border: none;
	border-radius: 999px;
	font-family: var(--font);
	font-size: 0.9375rem;
	font-weight: 600;
	cursor: pointer;
	transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-primary {
	background: var(--color-yellow);
	color: #1a1a2e;
	box-shadow: 0 6px 20px rgba(249, 241, 30, 0.35);
}

.btn-primary:hover {
	background: #fff020;
	box-shadow: 0 10px 28px rgba(249, 241, 30, 0.45);
}

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

.btn-ghost:hover {
	border-color: var(--color-pink);
	color: var(--color-pink);
}

.btn-sm {
	padding: 10px 20px;
	font-size: 0.875rem;
}

.btn-lg {
	padding: 16px 36px;
	font-size: 1rem;
}

.btn-block {
	width: 100%;
}

/* ---- Header ---- */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	height: var(--header-height);
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--color-border);
	transition: box-shadow var(--transition);
}

.site-header.scrolled {
	box-shadow: var(--shadow-soft);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-height);
	gap: 24px;
}

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

.brand-logo {
	height: 52px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
}

.site-nav {
	display: none;
	align-items: center;
	gap: 32px;
}

.site-nav a {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--color-text-muted);
	transition: color var(--transition);
}

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

.header-inner > .btn-primary {
	display: none;
	background: var(--color-pink);
	color: #fff;
	box-shadow: 0 6px 20px rgba(227, 47, 125, 0.3);
}

.header-inner > .btn-primary:hover {
	background: var(--color-pink-dark);
}

.nav-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.nav-toggle span {
	display: block;
	height: 2px;
	background: var(--color-text);
	border-radius: 2px;
	transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.site-nav.open {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: var(--header-height);
	left: 0;
	right: 0;
	padding: 24px;
	background: #fff;
	border-bottom: 1px solid var(--color-border);
	gap: 20px;
	box-shadow: var(--shadow-soft);
}

/* ---- Hero ---- */

.hero {
	padding-top: var(--header-height);
	background: #fff;
}

.hero-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
	padding: 48px clamp(20px, 4vw, 64px) 40px;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
}

.hero-lead {
	margin: 0;
	font-size: clamp(1.125rem, 2.5vw, 1.5rem);
	font-weight: 400;
	color: var(--color-text);
	line-height: 1.7;
	letter-spacing: 0.02em;
	max-width: 520px;
}

.hero-lead .text-pink {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.hero-sub {
	margin-top: 16px;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--color-text-muted);
	max-width: 480px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 32px;
}

.hero-frame {
	border: 16px solid var(--color-pink);
	border-right: 0;
	overflow: hidden;
	max-width: 340px;
	margin: 0 auto;
}

.hero-frame img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	object-position: center;
	filter: grayscale(1);
	transition: filter var(--transition);
}

.hero-frame:hover img {
	filter: grayscale(0);
}

.hero-banner img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	object-position: center;
	filter: grayscale(1);
}

.hero-stats {
	background: var(--color-bg-muted);
	border-top: 1px solid var(--color-border);
}

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

.stat {
	padding: 28px 16px;
	text-align: center;
	border-right: 1px solid var(--color-border);
}

.stat:last-child {
	border-right: 0;
}

.stat-value {
	display: block;
	font-size: 1.375rem;
	font-weight: 800;
	margin-bottom: 4px;
}

.stat-label {
	font-size: 0.75rem;
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/* ---- Sections ---- */

.section {
	padding: 100px 0;
}

.section-head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 56px;
}

.section-tag {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--color-pink);
	margin-bottom: 16px;
}

.section-tag-light {
	color: rgba(255, 255, 255, 0.85);
}

.section-title {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.3;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.section-title-light {
	color: #fff;
}

.section-text {
	font-size: 1.0625rem;
	color: var(--color-text-muted);
	line-height: 1.75;
}

.section-text-light {
	color: rgba(255, 255, 255, 0.9);
}

/* ---- About (pink section) ---- */

.about {
	background: var(--color-pink);
	position: relative;
	overflow: hidden;
}

.about::after {
	content: 'Who\A We\A Are?';
	white-space: pre;
	position: absolute;
	top: 40px;
	right: 40px;
	font-size: clamp(4rem, 12vw, 8rem);
	font-weight: 800;
	line-height: 0.85;
	color: rgba(0, 0, 0, 0.06);
	text-transform: uppercase;
	pointer-events: none;
}

.about-copy {
	position: relative;
	z-index: 1;
	max-width: 720px;
}

.about-highlights {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.about-highlights li {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #fff;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	backdrop-filter: blur(4px);
}

/* ---- Values ---- */

.values {
	background: var(--color-bg-light);
}

.values-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	align-items: center;
}

.values-quote {
	margin-top: 24px;
	padding: 20px 24px;
	border-left: 4px solid var(--color-pink);
	background: rgba(227, 47, 125, 0.06);
	font-size: 1rem;
	font-style: italic;
	color: var(--color-text);
	line-height: 1.7;
}

.values-quote .text-pink,
.values-copy .section-text span {
	color: var(--color-pink);
	font-weight: 600;
}

.values-laptop {
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
}

/* ---- Services ---- */

.services {
	background: #fff;
}

.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.service-card {
	background: #fff;
	border: 1px solid var(--color-border);
	border-top: 3px solid var(--color-pink);
	border-radius: var(--radius-md);
	padding: 32px;
	transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-icon {
	font-size: 0.8125rem;
	font-weight: 800;
	color: var(--color-pink);
	margin-bottom: 16px;
	letter-spacing: 0.1em;
}

.service-card h3 {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.service-card p {
	font-size: 0.9375rem;
	color: var(--color-text-muted);
	line-height: 1.65;
}

/* ---- Approach (process + AI) ---- */

.approach {
	padding: 0;
}

.approach-process {
	padding: 100px 0;
	background: var(--color-bg-muted);
}

.approach-ai {
	padding: 100px 0;
	background: #fff;
}

.process-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.process-step {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 28px 28px 32px;
	position: relative;
	transition: transform var(--transition), box-shadow var(--transition);
}

.process-step:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-soft);
}

.process-num {
	display: inline-block;
	font-size: 0.8125rem;
	font-weight: 800;
	color: var(--color-pink);
	letter-spacing: 0.1em;
	margin-bottom: 12px;
}

.process-step h3 {
	font-size: 1.125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 10px;
}

.process-step p {
	font-size: 0.9375rem;
	color: var(--color-text-muted);
	line-height: 1.65;
}

/* ---- AI (within approach) ---- */

.ai-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: start;
}

.ai-points {
	list-style: none;
	margin-top: 28px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.ai-points li {
	padding-left: 20px;
	border-left: 3px solid var(--color-pink);
}

.ai-points strong {
	display: block;
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: 4px;
}

.ai-points span {
	font-size: 0.9375rem;
	color: var(--color-text-muted);
	line-height: 1.65;
}

.ai-highlight {
	background: linear-gradient(135deg, var(--color-pink-light) 0%, #fff 100%);
	border: 1px solid rgba(227, 47, 125, 0.15);
	border-radius: var(--radius-lg);
	padding: 32px 28px;
}

.ai-quote {
	font-size: 1.125rem;
	font-weight: 600;
	font-style: italic;
	color: var(--color-text);
	line-height: 1.7;
	margin-bottom: 16px;
}

.ai-quote::before {
	content: '\201C';
	color: var(--color-pink);
	font-size: 1.5rem;
	line-height: 0;
	margin-right: 4px;
}

.ai-note {
	font-size: 0.9375rem;
	color: var(--color-text-muted);
	line-height: 1.65;
}

/* ---- Tech ---- */

.tech {
	background: var(--color-bg-warm);
}

.tech-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.tech-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 28px 16px;
	min-height: 140px;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.tech-item:hover {
	transform: translateY(-4px);
	border-color: rgba(227, 47, 125, 0.35);
	box-shadow: var(--shadow);
}

.tech-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 16px;
	background: var(--color-bg-muted);
}

.tech-icon img {
	width: 44px;
	height: 44px;
	object-fit: contain;
}

.tech-item span {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--color-text);
	letter-spacing: 0.01em;
}

/* ---- CTA ---- */

.cta {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
	background: var(--color-pink);
}

.cta-bg {
	position: absolute;
	inset: 0;
}

.cta-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.15;
}

.cta-inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 640px;
	margin: 0 auto;
}

.cta-inner .btn {
	margin-top: 28px;
}

/* ---- Footer ---- */

.site-footer {
	background: var(--color-footer);
	color: #fff;
	padding: 0;
	border-top: 4px solid var(--color-pink);
}

.footer-main {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	padding: 56px 24px 40px;
}

.footer-name {
	display: inline-block;
	font-size: 1.375rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
	margin-bottom: 12px;
	transition: color var(--transition);
}

.footer-name span {
	color: var(--color-pink);
}

.footer-name:hover {
	color: var(--color-pink);
}

.footer-name:hover span {
	color: #fff;
}

.footer-brand p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9375rem;
	line-height: 1.7;
	max-width: 320px;
}

.footer-nav ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-nav a {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.9375rem;
	font-weight: 500;
	transition: color var(--transition);
}

.footer-nav a:hover {
	color: var(--color-pink);
}

.footer-contact h3,
.footer-nav h3,
.footer-section-title {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	margin-bottom: 20px;
	color: var(--color-pink);
}

.contact-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.contact-link {
	display: flex;
	align-items: center;
	gap: 16px;
	color: #fff;
	transition: color var(--transition);
}

.contact-link:hover {
	color: var(--color-pink);
}

.contact-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transition: border-color var(--transition), background var(--transition);
}

.contact-link:hover .contact-icon {
	border-color: var(--color-pink);
	background: rgba(227, 47, 125, 0.12);
}

.contact-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.4;
}

.contact-text small {
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.45);
}

.footer-offices {
	padding: 0 24px 56px;
}

.office-card {
	padding: 24px 28px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-left: 3px solid var(--color-pink);
	border-radius: var(--radius-md);
	transition: background var(--transition), border-color var(--transition);
}

.office-card--single {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.office-card-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 24px;
}

.office-card-head .footer-section-title {
	margin-bottom: 0;
}

.office-units {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.office-units span {
	display: inline-block;
	padding: 4px 12px;
	font-size: 0.8125rem;
	font-weight: 700;
	color: #fff;
	background: rgba(227, 47, 125, 0.18);
	border: 1px solid rgba(227, 47, 125, 0.35);
	border-radius: 999px;
}

.office-card:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(227, 47, 125, 0.25);
}

.office-card address {
	font-style: normal;
	font-size: 0.875rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.6);
}


/* ---- Modal ---- */

.modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(4px);
	z-index: 200;
	opacity: 0;
	transition: opacity var(--transition);
}

.modal-backdrop.visible {
	opacity: 1;
}

.modal {
	position: fixed;
	inset: 0;
	z-index: 210;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	pointer-events: none;
	opacity: 0;
	transition: opacity var(--transition);
}

.modal.visible {
	pointer-events: auto;
	opacity: 1;
}

.modal-card {
	position: relative;
	background: #fff;
	border-radius: var(--radius-lg);
	width: 100%;
	max-width: 440px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
	transform: translateY(20px) scale(0.97);
	transition: transform var(--transition);
}

.modal.visible .modal-card {
	transform: translateY(0) scale(1);
}

.modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	border-radius: 50%;
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	transition: background var(--transition);
	z-index: 2;
}

.modal-close:hover {
	background: rgba(255, 255, 255, 0.35);
}

.modal-header {
	padding: 36px 32px 24px;
	background: var(--color-pink);
	color: #fff;
	text-align: center;
}

.modal-header h2 {
	font-size: 1.375rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.modal-header p {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.85);
}

.modal-form {
	padding: 24px 32px 32px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--color-text-muted);
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px 0;
	background: transparent;
	border: 0;
	border-bottom: 1px solid #ddd;
	border-radius: 0;
	color: var(--color-text);
	font-family: var(--font);
	font-size: 0.9375rem;
	transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-bottom-color: var(--color-pink);
}

.form-group textarea {
	resize: vertical;
	min-height: 80px;
}

.form-status {
	margin-top: 16px;
	font-size: 0.875rem;
	text-align: center;
}

.form-status.success {
	color: #16a34a;
}

.form-status.error {
	color: #dc2626;
}

.modal-form .btn-primary {
	background: var(--color-pink);
	color: #fff;
	box-shadow: 0 6px 20px rgba(227, 47, 125, 0.3);
}

.modal-form .btn-primary:hover {
	background: var(--color-pink-dark);
}

/* ---- Responsive ---- */

@media (min-width: 640px) {
	.tech-grid {
		grid-template-columns: repeat(4, 1fr);
	}

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

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

	.ai-layout {
		grid-template-columns: 1.2fr 1fr;
		gap: 48px;
	}

	.hero-banner img {
		height: 300px;
	}
}

@media (min-width: 768px) {
	.site-nav {
		display: flex;
	}

	.header-inner > .btn-primary {
		display: inline-flex;
	}

	.nav-toggle {
		display: none;
	}

	.hero-inner {
		grid-template-columns: 1fr 1fr;
		padding: 80px clamp(20px, 4vw, 64px) 60px;
		min-height: calc(100vh - var(--header-height) - 220px);
	}

	.hero-frame {
		margin: 0 0 0 auto;
		max-width: none;
		width: 100%;
	}

	.hero-frame img {
		height: 360px;
	}

	.hero-banner img {
		height: 360px;
	}

	.values-layout {
		grid-template-columns: 1.1fr 1fr;
		gap: 64px;
	}

	.footer-main {
		grid-template-columns: 1.4fr 0.8fr 1fr;
		align-items: start;
		gap: 48px;
	}

	.office-card--single {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 32px;
	}

	.office-card--single address {
		text-align: right;
		max-width: 420px;
	}
}

@media (min-width: 1200px) {
	.container,
	.hero-inner {
		max-width: none;
		padding-left: 5%;
		padding-right: 5%;
	}

	.services-grid {
		grid-template-columns: repeat(4, 1fr);
	}

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

	.tech-grid {
		grid-template-columns: repeat(6, 1fr);
	}

	.hero-lead {
		font-size: 1.625rem;
		line-height: 1.75;
	}

	.hero-frame {
		border-width: 20px;
	}

	.hero-frame img {
		height: 420px;
	}

	.hero-banner img {
		height: 420px;
	}
}

@media (max-width: 767px) {
	.hero-frame {
		border-right: 16px solid var(--color-pink);
	}

	.about::after {
		font-size: 3.5rem;
		right: 20px;
		top: 20px;
	}
}
