:root {
  --bg: #f7f8f6;
  --surface: #ffffff;
  --ink: #121417;
  --muted: #5e6870;
  --line: #dfe4dd;
  --black: #050505;
  --green: #1f7a4d;
  --green-dark: #145b3b;
  --teal: #2f6f73;
  --amber: #b97d24;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
  --radius: 8px;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

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

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

.instagram-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 42%, #8134af 72%, #515bd4 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(221, 42, 123, 0.34);
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.instagram-float:hover {
  filter: saturate(1.08) brightness(1.04);
  box-shadow: 0 22px 48px rgba(129, 52, 175, 0.42);
  transform: translateY(-2px);
}

.instagram-float svg,
.footer-instagram svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 92px;
  left: 22px;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(1040px, calc(100% - 44px));
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid rgba(18, 20, 23, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.2);
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong,
.map-consent strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.cookie-banner p,
.map-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-banner a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.cookie-button:hover {
  transform: translateY(-1px);
}

.cookie-button-light {
  background: #fff;
  color: var(--green-dark);
}

.cookie-button-green {
  background: var(--green);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 116px;
  padding: 12px clamp(20px, 4vw, 72px);
  border-bottom: 1px solid rgba(18, 20, 23, 0.1);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  width: auto;
  height: 90px;
}

.brand img {
  width: auto;
  height: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  color: #20262c;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav .nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  color: var(--green-dark);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-nav .nav-call-section {
  display: none;
}

.site-nav .nav-call::after {
  display: none;
}

.site-nav .nav-call:hover {
  border-color: var(--green-dark);
  background: var(--green);
  color: #fff;
}

.site-nav .nav-call.is-active {
  border-color: var(--green-dark);
  background: var(--green);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 116px);
  overflow: hidden;
  background: #f4f7f2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
  filter: saturate(0.82) contrast(0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.68) 50%, rgba(255, 255, 255, 0.4) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.26), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1260px, calc(100% - 40px));
  min-height: calc(100vh - 116px);
  margin-left: clamp(20px, 6vw, 92px);
  padding: 72px 0 96px;
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1260px;
  margin-bottom: 22px;
  font-size: clamp(28px, 2.9vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 34px;
  color: #303840;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.65;
}

.hero-actions,
.article-actions,
.article-cta-actions,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
}

.button-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 26px rgba(31, 122, 77, 0.25);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 16px 32px rgba(20, 91, 59, 0.32);
  transform: translateY(-1px);
}

.button-whatsapp {
  border-color: #1f7a4d;
  background: rgba(255, 255, 255, 0.78);
  color: var(--green-dark);
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.08);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button-whatsapp:hover {
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.28);
  transform: translateY(-1px);
}

.section {
  padding: clamp(76px, 9vw, 132px) clamp(20px, 4vw, 72px);
}

.page-section {
  scroll-margin-top: 116px;
}

.section-heading {
  width: min(920px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.about-layout h2,
.contact-info h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.about-copy p,
.contact-info p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.services {
  background: var(--surface);
  padding-top: clamp(52px, 6vw, 86px);
}

.services .section-heading {
  margin-bottom: 28px;
}

.services .section-heading h2 {
  width: min(980px, 100%);
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(26px, 3vw, 38px);
}

.services .eyebrow {
  font-size: 24px;
}

.about .eyebrow,
.references .eyebrow,
.blog .eyebrow,
.contact .eyebrow {
  color: var(--green);
  font-size: 22px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.service-card,
.blog-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
  color: inherit;
}

.service-card img {
  width: 100%;
  aspect-ratio: 2.35 / 1;
  object-fit: cover;
}

.service-card div,
.blog-card div {
  padding: 22px;
}

.service-card h3,
.blog-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.24;
}

.service-card p,
.blog-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.about {
  background: linear-gradient(180deg, #f7f8f6 0%, #eef3ef 100%);
  padding-top: clamp(34px, 4.5vw, 62px);
  padding-bottom: clamp(46px, 5.5vw, 78px);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 70px);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: stretch;
}

.about-copy p {
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

.about-copy h2 {
  max-width: 680px;
  font-size: clamp(27px, 2.55vw, 36px);
  line-height: 1.16;
}

.about-copy strong {
  color: var(--ink);
  font-weight: 800;
}

.about-media {
  align-self: stretch;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.references {
  background: #fff;
  padding-top: clamp(52px, 6vw, 86px);
}

.references .section-heading h2 {
  font-size: clamp(36px, 5vw, 62px);
}

.references-trust {
  width: min(860px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.reference-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 2vw, 28px);
  aspect-ratio: 1 / 1;
  border: 1px solid #e2e8e2;
  border-radius: var(--radius);
  background: #fff;
  color: #7a8580;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.05);
}

.reference-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.blog {
  background: #f2f5f2;
  padding-top: clamp(52px, 6vw, 86px);
}

.blog .section-heading h2 {
  width: min(980px, 100%);
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.blog-card span {
  display: block;
  margin-bottom: 9px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.blog-card h3 {
  font-size: 18px;
  line-height: 1.28;
  text-align: left;
}

.blog-card p {
  display: -webkit-box;
  min-height: 80px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-align: left;
}

.read-more {
  display: inline-flex;
  margin-top: 16px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.blog-card:hover .read-more {
  text-decoration: underline;
}

.contact {
  background: #fff;
}

.contact .eyebrow {
  font-size: 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  width: min(1080px, 100%);
  margin: 0 auto;
  align-items: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 420px;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8faf8;
}

.contact-info h2 {
  max-width: 100%;
  margin-bottom: 12px;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.16;
}

.contact-info p {
  max-width: 390px;
  font-size: 14px;
  line-height: 1.55;
}

.contact-info ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.contact-info strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  text-transform: uppercase;
}

.contact-info li div {
  display: grid;
  gap: 2px;
}

.contact-info span {
  color: var(--muted);
}

.contact-info a {
  color: var(--green-dark);
  font-weight: 800;
}

.contact-icon {
  display: inline-flex;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: rgba(31, 122, 77, 0.1);
  color: var(--green-dark);
}

.contact-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.map-wrap {
  height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-consent {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding: clamp(20px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(31, 122, 77, 0.08), rgba(255, 255, 255, 0.9)),
    #f8faf8;
}

.map-consent p {
  max-width: 420px;
  margin-bottom: 18px;
}

.map-wrap.is-loading .map-consent p::after {
  display: block;
  margin-top: 12px;
  color: var(--green-dark);
  font-weight: 800;
  content: "Harita yükleniyor...";
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) repeat(2, minmax(160px, 0.8fr)) minmax(240px, 1.1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  padding: 48px clamp(20px, 4vw, 72px) 26px;
  border-top: 1px solid #222;
  background: #050505;
  color: #fff;
}

.site-footer img {
  width: 112px;
  margin-bottom: 14px;
  filter: invert(1);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.site-footer nav {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.footer-column h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
}

.footer-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  text-align: left;
  text-transform: inherit;
  cursor: default;
}

.footer-accordion-icon {
  display: none;
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.footer-accordion-icon::before,
.footer-accordion-icon::after {
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-accordion-icon::after {
  transform: rotate(90deg);
}

.footer-panel {
  display: grid;
  gap: 10px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.footer-column a:hover {
  color: #fff;
}

.site-footer > .footer-column:not(:first-child) {
  min-height: 100%;
  padding-left: clamp(18px, 2.2vw, 32px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.footer-legal {
  justify-items: start;
}

.copyright {
  grid-column: 1 / -1;
  justify-self: stretch;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  text-align: center;
}

.site-footer .copyright {
  color: #fff;
}

.legal-page {
  background: #fff;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 72px);
  border-bottom: 1px solid var(--line);
}

.legal-header img {
  width: 108px;
}

.legal-header a:last-child {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
}

.legal-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) 0;
}

.legal-main h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(34px, 5vw, 56px);
}

.legal-main p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.legal-content {
  margin-top: 30px;
}

.legal-content h2 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.25;
}

.legal-content p + p,
.legal-content ul + p {
  margin-top: 14px;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 22px;
  padding-left: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.legal-content p,
.legal-content li {
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

.legal-content li::marker {
  color: var(--green);
}

.legal-content strong {
  color: var(--ink);
}

.legal-content a {
  color: var(--green-dark);
  font-weight: 800;
}

.legal-updated {
  margin-top: 30px;
  font-weight: 800;
}

.legal-placeholder {
  margin-top: 34px;
  padding: 24px;
  border: 1px dashed #bfc9c1;
  border-radius: var(--radius);
  background: #f8faf8;
}

.blog-detail-page,
.service-detail-page {
  background: #f7f8f6;
}

.blog-detail-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.blog-article-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 86px) 0 0;
}

.blog-article {
  width: min(960px, 100%);
  margin: 0 auto clamp(56px, 8vw, 92px);
}

.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
}

.blog-article h1 {
  max-width: 930px;
  margin: 0 0 22px;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.article-lead {
  margin: 0;
  color: #374151;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

.article-actions {
  margin-top: 24px;
}

.article-cover {
  width: 100%;
  margin: 34px 0 20px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.article-content h2 {
  margin: 38px 0 12px;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.2;
}

.article-content h3 {
  margin: 28px 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

.article-content p,
.article-content li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

.article-content p {
  margin: 0 0 18px;
}

.article-content ul {
  margin: 12px 0 24px;
  padding-left: 22px;
}

.article-content li + li {
  margin-top: 9px;
}

.article-content a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-related {
  margin-top: 34px;
  padding: 22px;
  border: 1px solid rgba(31, 122, 77, 0.16);
  border-radius: var(--radius);
  background: #f8faf8;
}

.article-related h2 {
  margin-top: 0;
}

.article-related ul {
  margin-bottom: 0;
}

.article-cta {
  margin: 42px 0 30px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(31, 122, 77, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f8faf8 0%, #edf6f0 100%);
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.07);
}

.article-cta strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.editorial-note strong {
  color: var(--ink);
  font-weight: 800;
}

.article-cta p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

.article-cta > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.article-cta-actions {
  margin-top: 18px;
}

.article-faq {
  margin: 44px 0 8px;
}

.article-faq h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.2;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.article-faq details {
  border: 1px solid rgba(31, 122, 77, 0.16);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.05);
}

.article-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 17px 20px;
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}

.article-faq summary::-webkit-details-marker {
  display: none;
}

.article-faq summary::after {
  content: "+";
  display: inline-grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: rgba(31, 122, 77, 0.1);
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 800;
}

.article-faq details[open] summary::after {
  content: "-";
  background: var(--green);
  color: #fff;
}

.article-faq p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

.article-sources {
  margin-top: 30px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.article-sources h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.article-sources ul {
  margin: 0;
  padding-left: 18px;
}

.article-sources li + li {
  margin-top: 10px;
}

.article-sources a {
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.editorial-note {
  margin-top: 18px;
  padding: 20px 22px;
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  background: #fff;
}

.editorial-note p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

.blog-detail-page .site-footer,
.service-detail-page .site-footer {
  margin-top: clamp(42px, 7vw, 80px);
}

@media (max-width: 1020px) {
  .services-grid,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-media img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

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

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

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .copyright {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 84px;
    padding: 10px 18px;
  }

  .brand {
    height: 64px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 84px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 24px 32px rgba(17, 24, 39, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px 2px;
    border-bottom: 1px solid #edf0ed;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-call-phone {
    display: none;
  }

  .site-nav .nav-call-section {
    display: block;
    min-height: 0;
    padding: 16px 2px;
    border: 0;
    border-radius: 0;
    color: inherit;
    justify-content: flex-start;
    background: transparent;
  }

  .site-nav .nav-call-section:hover,
  .site-nav .nav-call-section.is-active {
    border-color: transparent;
    background: transparent;
    color: var(--green-dark);
  }

  .page-section {
    display: none;
    scroll-margin-top: 84px;
  }

  .page-section.is-active {
    display: block;
  }

  .hero,
  .hero-content {
    min-height: calc(100vh - 84px);
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
    padding: 54px 0 74px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58));
  }

  h1 {
    font-size: 30px;
  }

  .section {
    min-height: calc(100vh - 84px);
    padding: 46px 18px 64px;
  }

  .section-heading {
    margin-bottom: 26px;
    text-align: left;
  }

  .about-copy p {
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
  }

  .services .section-heading p:not(.eyebrow) {
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
  }

  .about {
    position: relative;
    overflow: hidden;
    background: #f5f8f5;
  }

  .about::before {
    position: absolute;
    inset: 0;
    background-image: url("assets/images/about-consulting.webp");
    background-position: center;
    background-size: cover;
    content: "";
    filter: saturate(0.86) contrast(0.92);
    opacity: 0.38;
  }

  .about::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.42));
    content: "";
  }

  .about-layout {
    position: relative;
    z-index: 1;
  }

  .about-media {
    display: none;
  }

  .about-copy p:not(.eyebrow) {
    color: #3f4852;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .references-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .service-card div,
  .blog-card div {
    padding: 12px;
  }

  .service-card img {
    aspect-ratio: 1.8 / 1;
  }

  .service-card h3 {
    margin-bottom: 0;
    font-size: 14px;
  }

  .service-card p {
    display: none;
  }

  .blog-card span {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .blog-card h3 {
    font-size: 13px;
    line-height: 1.25;
  }

  .blog-card p {
    min-height: 0;
    font-size: 12px;
    -webkit-line-clamp: 2;
  }

  .reference-logo {
    min-height: 0;
    font-size: 10px;
  }

  .contact.page-section.is-active {
    display: flex;
    align-items: center;
  }

  .contact-info {
    height: auto;
    padding: 22px;
  }

  .contact-info h2 {
    max-width: 100%;
    font-size: 28px;
  }

  .map-wrap {
    height: 300px;
  }

  .map-wrap iframe {
    min-height: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 30px 18px;
  }

  .footer-brand {
    grid-template-columns: 116px minmax(0, 1fr);
    align-items: center;
    column-gap: 18px;
    justify-items: start;
    padding-bottom: 22px;
    text-align: left;
  }

  .footer-brand img {
    width: 116px;
    margin-bottom: 0;
  }

  .footer-brand p {
    color: #fff;
    font-size: 14px;
    line-height: 1.55;
  }

  .footer-accordion {
    gap: 0;
    justify-items: stretch;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .site-footer > .footer-column.footer-accordion {
    padding-left: 0;
    border-left: 0;
  }

  .footer-accordion h3 {
    margin: 0;
  }

  .footer-accordion-toggle {
    min-height: 52px;
    cursor: pointer;
  }

  .footer-accordion-toggle:disabled {
    cursor: pointer;
  }

  .footer-accordion-icon {
    display: block;
  }

  .footer-accordion.is-open .footer-accordion-icon::after {
    opacity: 0;
    transform: rotate(0deg);
  }

  .footer-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 220ms ease, opacity 180ms ease, padding 180ms ease;
  }

  .footer-accordion.is-open .footer-panel {
    max-height: 360px;
    padding-bottom: 16px;
    opacity: 1;
  }

  .instagram-float {
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    width: 56px;
    height: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 0;
    box-shadow: 0 16px 36px rgba(221, 42, 123, 0.38);
  }

  .instagram-float span,
  .footer-instagram {
    display: none;
  }

  .blog-article-main {
    width: calc(100% - 28px);
    padding-top: 32px;
  }

  .blog-article {
    margin-bottom: 42px;
  }

  .blog-article h1 {
    font-size: 30px;
    line-height: 1.14;
  }

  .article-lead,
  .article-content p,
  .article-content li {
    font-size: 15px;
    line-height: 1.72;
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
  }

  .article-actions,
  .article-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .article-actions .button,
  .article-cta-actions .button {
    width: 100%;
  }

  .article-cover {
    margin: 24px 0 8px;
  }

  .article-faq {
    margin-top: 34px;
  }

  .article-faq summary {
    min-height: 54px;
    padding: 15px 16px;
    font-size: 15px;
  }

  .article-faq p {
    padding: 0 16px 18px;
    font-size: 15px;
    line-height: 1.7;
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
  }

  .article-content h2 {
    margin-top: 30px;
    font-size: 24px;
  }

  .article-cta,
  .article-sources,
  .editorial-note {
    padding: 18px;
  }

  .cookie-banner {
    right: 14px;
    bottom: 84px;
    left: 14px;
    grid-template-columns: 1fr;
    width: auto;
    gap: 14px;
    padding: 16px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

  .cookie-button {
    min-height: 44px;
    padding: 0 10px;
  }

  .map-consent {
    padding: 22px;
  }
}
