/**
 * Arsatar iç sayfa stilleri — tam genişlik hero, header ile aynı içerik hizası.
 */

:root {
	--arsatar-page-rail: 1240px;
	--arsatar-page-gutter: clamp(16px, 2.5vw, 24px);
}

/* WoodMart kabuğunu kır: hero kenardan kenara */
body.arsatar-static-page .main-page-wrapper,
body.arsatar-static-page .wd-page-content,
body.arsatar-static-page .wd-content-layout,
body.arsatar-static-page .wd-content-area,
body.arsatar-static-page .wd-content-area > .container,
body.arsatar-static-page .site-content > .container,
body.arsatar-static-page #content > .container,
body.arsatar-blog-single .main-page-wrapper,
body.arsatar-blog-single .wd-page-content,
body.arsatar-blog-single .wd-content-layout,
body.arsatar-blog-single .wd-content-area,
body.arsatar-blog-single .wd-content-area > .container,
body.arsatar-blog-single .site-content > .container,
body.single-post .main-page-wrapper,
body.single-post .wd-page-content,
body.single-post .wd-content-layout,
body.single-post .wd-content-area,
body.single-post .wd-content-area > .container,
body.single-post .site-content > .container {
	display: block !important;
	max-width: 100% !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	grid-template-columns: none !important;
	grid-gap: 0 !important;
}

body.arsatar-static-page .wd-content-layout > *,
body.arsatar-blog-single .wd-content-layout > *,
body.single-post .wd-content-layout > *,
.arsatar-static,
.arsatar-blog-single-view {
	display: block !important;
	grid-column: 1 / -1 !important;
	width: 100% !important;
	max-width: 100% !important;
}

body.arsatar-static-page .wd-page-title,
body.arsatar-static-page .page-title.wd-page-title,
body.arsatar-blog-single .wd-page-title,
body.single-post .wd-page-title {
	display: none !important;
}

body.arsatar-static-page .wd-sidebar,
body.arsatar-blog-single .wd-sidebar,
body.single-post .wd-sidebar,
body.arsatar-blog-single .sidebar-container,
body.single-post .sidebar-container {
	display: none !important;
}

body.arsatar-static-page .wd-content-area,
body.arsatar-static-page .site-content,
body.arsatar-static-page .main-page-wrapper {
	background: #f4f7f5;
}

.arsatar-static {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	background: #f4f7f5;
	overflow-x: clip;
}

/* Ortak içerik rayı — header .container ile aynı */
.arsatar-static__rail {
	width: 100%;
	max-width: var(--arsatar-page-rail);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--arsatar-page-gutter);
	padding-right: var(--arsatar-page-gutter);
	box-sizing: border-box;
}

/* ——— Hero: arka plan full-bleed, metin header hizasında ——— */
.arsatar-static__hero {
	position: relative;
	isolation: isolate;
	width: 100%;
	max-width: none;
	margin: 0;
	box-sizing: border-box;
	padding: clamp(52px, 7vw, 92px) 0 clamp(44px, 5.5vw, 68px);
	background:
		radial-gradient(ellipse 70% 80% at 12% 20%, rgba(255, 255, 255, 0.1), transparent 55%),
		linear-gradient(145deg, #0a3d2a 0%, #1b6b4a 48%, #145a3d 100%);
	color: #fff;
	overflow: hidden;
}

.arsatar-static__hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0.14;
	background-image:
		linear-gradient(30deg, transparent 40%, rgba(255, 255, 255, 0.08) 40%, rgba(255, 255, 255, 0.08) 60%, transparent 60%);
	background-size: 28px 48px;
	pointer-events: none;
}

.arsatar-static__hero-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--arsatar-page-rail);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--arsatar-page-gutter);
	padding-right: var(--arsatar-page-gutter);
	box-sizing: border-box;
	text-align: left;
}

.arsatar-static__kicker {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #fff;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.28);
}

.arsatar-static__title {
	margin: 14px 0 10px;
	font-size: clamp(1.32rem, 2.3vw, 1.7rem);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: #fff;
	text-shadow: none !important;
}

.arsatar-static__lead {
	margin: 0;
	max-width: 42rem;
	font-size: clamp(0.9rem, 1.15vw, 0.98rem);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.92);
	font-weight: 400;
}

/* ——— İçerik: header ile aynı sol/sağ hiza ——— */
.arsatar-static__body {
	width: 100%;
	max-width: var(--arsatar-page-rail);
	margin-left: auto;
	margin-right: auto;
	padding: clamp(28px, 4vw, 48px) var(--arsatar-page-gutter) clamp(56px, 8vw, 88px);
	box-sizing: border-box;
}

.arsatar-static__content {
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
}

.arsatar-static__content > *:first-child {
	margin-top: 0;
}

.arsatar-static__content :is(h2, h3) {
	margin: 2em 0 0.65em;
	color: #0f172a;
	font-weight: 700;
	letter-spacing: -0.015em;
	line-height: 1.25;
}

.arsatar-static__content h2 {
	font-size: clamp(1.15rem, 1.7vw, 1.35rem);
	font-weight: 700;
}

.arsatar-static__content h3 {
	font-size: clamp(0.98rem, 1.3vw, 1.12rem);
	font-weight: 600;
	color: var(--arsatar-green, #15803d);
}

.arsatar-static__content :is(p, li) {
	color: #475569;
	line-height: 1.7;
	font-size: 0.95rem;
}

.arsatar-static__content p {
	margin: 0 0 1.15em;
}

.arsatar-static__content ul,
.arsatar-static__content ol {
	padding-left: 1.25em;
	margin: 0 0 1.25em;
}

.arsatar-static__content a {
	color: var(--arsatar-green, #1b6b4a);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.arsatar-static__content img,
.arsatar-static__content .wp-block-image img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	display: block;
}

.arsatar-static__content .wp-block-columns,
.arsatar-static__content .wp-block-gallery {
	margin: 1.5em 0;
}

.arsatar-static__content .wp-block-group,
.arsatar-static__content .wp-block-cover {
	border-radius: 14px;
	overflow: hidden;
}

/* İçerikteki eski “kart” bloklarını sadeleştir */
.arsatar-static__content .wp-block-group.has-background {
	padding: 1.25rem 1.35rem !important;
	border-radius: 14px;
}

.arsatar-static__content figure {
	margin: 1.5em 0;
}

/* ——— İletişim / form panelleri ——— */
.arsatar-static__grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 28px;
	align-items: start;
}

.arsatar-static__panel {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: clamp(22px, 3vw, 28px);
	box-shadow: none !important;
}

.arsatar-static__panel-title {
	margin: 0 0 18px;
	font-size: 1.2rem;
	font-weight: 800;
	color: #0f1f17;
	letter-spacing: -0.02em;
}

/* İletişim Sayfası Özel Tasarımı — 4'lü Dengeli & Flat Kart Grid */
.arsatar-contact-cards {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-bottom: 48px;
}

.arsatar-contact-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 20px 18px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 12px;
	text-decoration: none !important;
	box-shadow: none !important;
	transition: border-color 0.18s ease, background-color 0.18s ease;
	min-height: 140px;
	box-sizing: border-box;
}

.arsatar-contact-card:hover {
	border-color: #15803d;
	background: #f8fafc;
	transform: none !important;
	box-shadow: none !important;
}

.arsatar-contact-card__top {
	display: flex;
	align-items: center;
	gap: 10px;
}

.arsatar-contact-card__icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: #f0fdf4;
	color: #15803d;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	flex-shrink: 0;
	border: 1px solid #dcfce7;
}

.arsatar-contact-card--wa .arsatar-contact-card__icon {
	background: #ecfdf5;
	color: #059669;
	border-color: #a7f3d0;
}

.arsatar-contact-card__label {
	font-size: 11.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #64748b;
}

.arsatar-contact-card__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.arsatar-contact-card__val {
	font-size: 14.5px;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.35;
	word-break: break-word;
}

.arsatar-contact-card__val--email {
	font-size: 13.5px;
}

.arsatar-contact-card__sub {
	font-size: 12px;
	color: #94a3b8;
	line-height: 1.3;
}

.arsatar-contact-card__footer {
	margin-top: auto;
	padding-top: 8px;
	border-top: 1px dashed #f1f5f9;
}

.arsatar-contact-card__action {
	font-size: 12.5px;
	font-weight: 650;
	color: #15803d;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	transition: color 0.15s ease;
}

.arsatar-contact-card:hover .arsatar-contact-card__action {
	color: #166534;
}

/* İletişim Ana Düzen (Form + Sidebar) */
.arsatar-contact-main-grid {
	display: grid;
	grid-template-columns: 1.55fr 1fr;
	gap: 36px;
	margin-bottom: 56px;
	align-items: start;
}

.arsatar-contact-form-panel {
	background: #ffffff;
	border-radius: 16px;
	padding: clamp(28px, 4vw, 44px);
	border: 1px solid #e2e8f0;
	box-shadow: none !important;
}

.arsatar-contact-form-head {
	margin-bottom: 28px;
}

.arsatar-contact-form-title {
	font-size: clamp(1.25rem, 1.9vw, 1.55rem);
	font-weight: 700;
	color: #0f1f17;
	margin: 8px 0 10px;
	line-height: 1.25;
}

.arsatar-contact-form-desc {
	color: #64748b;
	font-size: 14.5px;
	line-height: 1.6;
	margin: 0;
}

.arsatar-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-bottom: 18px;
}

.arsatar-form-group {
	margin-bottom: 18px;
}

.arsatar-form-group label {
	display: block;
	font-size: 13.5px;
	font-weight: 750;
	color: #1e293b;
	margin-bottom: 7px;
}

.arsatar-form-group label .required {
	color: #dc2626;
}

.arsatar-input-wrap {
	position: relative;
	display: flex;
	align-items: center;
}

.arsatar-input-icon {
	position: absolute;
	left: 14px;
	color: #94a3b8;
	font-size: 15px;
	pointer-events: none;
	z-index: 2;
}

.arsatar-input-wrap input,
.arsatar-input-wrap select {
	padding-left: 42px !important;
}

.arsatar-contact-form input,
.arsatar-contact-form select,
.arsatar-contact-form textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1.5px solid #cbd5e1;
	border-radius: 12px;
	font: inherit;
	font-size: 14.5px;
	color: #0f172a;
	background: #ffffff;
	box-sizing: border-box;
	transition: all 0.2s ease;
}

.arsatar-contact-form input:focus,
.arsatar-contact-form select:focus,
.arsatar-contact-form textarea:focus {
	outline: none;
	border-color: #15803d;
	box-shadow: none !important;
}

.arsatar-contact-form textarea {
	min-height: 110px;
	resize: vertical;
}

.arsatar-form-privacy {
	margin: 20px 0 24px;
}

.arsatar-checkbox-label {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13.5px;
	color: #475569;
	cursor: pointer;
}

.arsatar-checkbox-label input {
	width: 18px;
	height: 18px;
	accent-color: #1b6b4a;
	cursor: pointer;
}

.arsatar-checkbox-label a {
	color: #15803d;
	font-weight: 600;
	text-decoration: underline;
}

.arsatar-form-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	min-height: 50px;
	border: 1px solid #15803d;
	border-radius: 12px;
	background: #15803d;
	color: #ffffff !important;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.18s ease, border-color 0.18s ease;
	box-shadow: none !important;
}

.arsatar-form-submit:hover {
	transform: none;
	background: #166534;
	border-color: #166534;
	box-shadow: none !important;
}

/* Sağ Sidebar */
.arsatar-contact-sidebar {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.arsatar-contact-box {
	background: #ffffff;
	border-radius: 16px;
	padding: 28px 24px;
	border: 1px solid #e2e8f0;
	box-shadow: none !important;
	position: relative;
}

.arsatar-contact-box--highlight {
	background: #145a3d !important;
	color: #ffffff !important;
	border: 1px solid #145a3d !important;
	box-shadow: none !important;
}

.arsatar-contact-box--highlight *,
.arsatar-contact-box--highlight h3,
.arsatar-contact-box--highlight p,
.arsatar-contact-box--highlight span,
.arsatar-contact-box--highlight strong,
.arsatar-contact-box--highlight li {
	color: #ffffff !important;
}

.arsatar-contact-box__badge {
	position: absolute;
	top: 18px;
	right: 18px;
	background: #22c55e;
	color: #052e16 !important;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.arsatar-contact-box__title {
	font-size: 1.18rem;
	font-weight: 700;
	margin: 0 0 14px;
	display: flex;
	align-items: center;
	gap: 10px;
	color: #0f172a;
}

.arsatar-contact-box--highlight .arsatar-contact-box__title {
	color: #ffffff !important;
}

.arsatar-contact-box__text {
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 18px;
	color: #475569;
}

.arsatar-contact-box--highlight .arsatar-contact-box__text {
	color: #f1f5f9 !important;
}

.arsatar-hours-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.arsatar-hours-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid #f1f5f9;
	font-size: 14px;
	color: #334155;
}

.arsatar-hours-list li:last-child {
	border-bottom: none;
}

.arsatar-btn--full {
	width: 100%;
	justify-content: center;
	box-sizing: border-box;
}

.arsatar-btn--primary-outline {
	background: transparent;
	border: 1.5px solid #1b6b4a;
	color: #1b6b4a !important;
}

.arsatar-btn--primary-outline:hover {
	background: #e8f5ef;
}

/* Harita Alanı */
.arsatar-contact-map-section {
	background: #ffffff;
	border-radius: 16px;
	padding: clamp(24px, 3.5vw, 36px);
	border: 1px solid #e2e8f0;
	box-shadow: none !important;
}

.arsatar-contact-map-head {
	margin-bottom: 20px;
}

.arsatar-contact-map-title {
	font-size: 1.25rem;
	font-weight: 750;
	color: #0f172a;
	margin: 0 0 6px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.arsatar-contact-map-subtitle {
	color: #64748b;
	font-size: 14px;
	margin: 0;
}

.arsatar-contact-map-frame {
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #e2e8f0;
	box-shadow: none !important;
}

.arsatar-contact-map-frame iframe {
	display: block;
}

.arsatar-alert {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	border-radius: 12px;
	margin-bottom: 20px;
	font-size: 14.5px;
	font-weight: 700;
}

.arsatar-alert--success {
	background: #dcfce7;
	color: #15803d;
	border: 1px solid #86efac;
}

.arsatar-alert--error {
	background: #fee2e2;
	color: #b91c1c;
	border: 1px solid #fca5a5;
}

@media (max-width: 991px) {
	.arsatar-contact-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.arsatar-contact-main-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.arsatar-contact-cards {
		grid-template-columns: 1fr;
	}

	.arsatar-form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

.arsatar-static__form .arsatar-field {
	margin-bottom: 16px;
}

.arsatar-static__form label {
	display: block;
	margin-bottom: 6px;
	font-weight: 700;
	color: #111827;
	font-size: 14px;
}

.arsatar-static__form input,
.arsatar-static__form textarea,
.arsatar-static__form select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d1d5db;
	border-radius: 12px;
	font: inherit;
	box-sizing: border-box;
	background: #fff;
	transition: border-color 0.15s ease;
}

.arsatar-static__form input:focus,
.arsatar-static__form textarea:focus,
.arsatar-static__form select:focus {
	outline: none;
	border-color: #15803d;
	box-shadow: none !important;
}

.arsatar-static__form textarea {
	min-height: 130px;
	resize: vertical;
}

.arsatar-static__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 24px;
	border: 1px solid #15803d;
	border-radius: 12px;
	background: #15803d;
	color: #fff !important;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	transition: background-color 0.15s ease, border-color 0.15s ease;
	box-shadow: none !important;
}

.arsatar-static__submit:hover {
	background: #166534;
	border-color: #166534;
	color: #fff !important;
	box-shadow: none !important;
}

/* Hakkımızda Sayfası Özel Tasarımı */
.arsatar-about-intro {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 48px;
	align-items: center;
	margin-bottom: 64px;
	background: #ffffff;
	padding: clamp(28px, 4vw, 48px);
	border-radius: 16px;
	border: 1px solid #e2e8f0;
	box-shadow: none !important;
}

.arsatar-about-badge {
	display: inline-block;
	background: #f1f5f9;
	color: #475569;
	border: 1px solid #e2e8f0;
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 11.5px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 12px;
}

.arsatar-about-heading {
	font-size: clamp(1.35rem, 2.2vw, 1.75rem);
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 16px;
	line-height: 1.25;
}

.arsatar-about-lead {
	font-size: 1.12rem;
	font-weight: 550;
	color: #334155;
	line-height: 1.6;
	margin-bottom: 16px;
}

.arsatar-about-intro__content p {
	color: #475569;
	line-height: 1.75;
	margin-bottom: 14px;
}

.arsatar-about-intro__stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.arsatar-about-stat-card {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	padding: 22px 16px;
	border-radius: 14px;
	text-align: center;
	transition: border-color 0.2s ease, background-color 0.2s ease;
	box-shadow: none !important;
}

.arsatar-about-stat-card:hover {
	transform: none;
	box-shadow: none !important;
	border-color: #15803d;
	background: #f0fdf4;
}

.arsatar-about-stat-card__num {
	display: block;
	font-size: clamp(1.8rem, 2.8vw, 2.35rem);
	font-weight: 750;
	color: #15803d;
	line-height: 1.1;
	margin-bottom: 6px;
}

.arsatar-about-stat-card__label {
	font-size: 13px;
	font-weight: 600;
	color: #64748b;
}

/* Misyon, Vizyon, Değerler */
.arsatar-about-pillars {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 64px;
}

.arsatar-pillar-card {
	background: #ffffff;
	padding: 30px 22px;
	border-radius: 16px;
	border: 1px solid #e2e8f0;
	box-shadow: none !important;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.arsatar-pillar-card:hover {
	transform: none;
	box-shadow: none !important;
	border-color: #15803d;
	background: #f8fafc;
}

.arsatar-pillar-card__icon {
	width: 50px;
	height: 50px;
	border-radius: 14px;
	background: #f0fdf4;
	color: #15803d;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	margin-bottom: 18px;
	border: 1px solid #dcfce7;
}

.arsatar-pillar-card__title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 10px;
}

.arsatar-pillar-card__desc {
	color: #475569;
	font-size: 14px;
	line-height: 1.65;
	margin: 0;
}

/* Neden Arsatar */
.arsatar-about-why {
	background: #ffffff;
	padding: clamp(32px, 5vw, 56px);
	border-radius: 16px;
	border: 1px solid #e2e8f0;
	box-shadow: none !important;
	margin-bottom: 64px;
}

.arsatar-about-why__head {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 40px;
}

.arsatar-about-sub {
	color: #64748b;
	font-size: 1rem;
	margin-top: 8px;
}

.arsatar-about-why__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}

.arsatar-why-item {
	display: flex;
	gap: 18px;
	align-items: flex-start;
}

.arsatar-why-item__num {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: #15803d;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 700;
	flex-shrink: 0;
}

.arsatar-why-item__title {
	font-size: 1.12rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 6px;
}

.arsatar-why-item__body p {
	color: #475569;
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

/* CTA: Koyu zemin üzerinde tam beyaz/açık renkler */
.arsatar-about-cta {
	background: #0f2b1d !important;
	color: #ffffff !important;
	border-radius: 16px;
	padding: clamp(36px, 5vw, 56px);
	text-align: center;
	border: 1px solid #15803d;
	box-shadow: none !important;
}

.arsatar-about-cta *,
.arsatar-about-cta h2,
.arsatar-about-cta h3,
.arsatar-about-cta p,
.arsatar-about-cta span {
	color: #ffffff !important;
}

.arsatar-about-cta__inner {
	max-width: 720px;
	margin: 0 auto;
}

.arsatar-about-cta__title {
	font-size: clamp(1.35rem, 2.2vw, 1.75rem);
	font-weight: 700;
	color: #ffffff !important;
	margin: 0 0 14px;
}

.arsatar-about-cta__desc {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.92) !important;
	line-height: 1.65;
	margin-bottom: 28px;
}

.arsatar-about-cta__actions {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.arsatar-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none !important;
	transition: all 0.18s ease;
	cursor: pointer;
	box-shadow: none !important;
}

.arsatar-btn--primary {
	background: #ffffff;
	color: #15803d !important;
	border: 1px solid #ffffff;
	box-shadow: none !important;
}

.arsatar-btn--primary:hover {
	background: #f8fafc;
	border-color: #f8fafc;
	transform: none;
	box-shadow: none !important;
}

.arsatar-btn--whatsapp {
	background: #16a34a;
	color: #ffffff !important;
	border: 1px solid #16a34a;
	box-shadow: none !important;
}

.arsatar-btn--whatsapp:hover {
	background: #15803d;
	border-color: #15803d;
	transform: none;
	color: #ffffff !important;
	box-shadow: none !important;
}

@media (max-width: 991px) {
	.arsatar-about-intro {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.arsatar-about-pillars {
		grid-template-columns: 1fr;
	}

	.arsatar-about-why__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.arsatar-static__hero {
		padding: 40px 0 36px;
		width: 100%;
		margin-left: 0;
	}

	.arsatar-static__hero-inner,
	.arsatar-static__body {
		padding-left: var(--arsatar-page-gutter);
		padding-right: var(--arsatar-page-gutter);
	}

	.arsatar-static__body {
		width: 100%;
		max-width: var(--arsatar-page-rail);
		padding-top: 24px;
		padding-bottom: 48px;
	}

	.arsatar-static__grid {
		grid-template-columns: 1fr;
	}
}
